Claude Code Creator's Greatest Tip For Using AI Agents

AI LABS · 10 days ago

At a glance

Length
14 min
Channel
AI LABS
Video from
Jul 2026
Rating
⭐⭐ Great video · 2/2
Best for
Engineers shipping production AI agents and technical leaders building automation workflows.

Overview of Claude Code Best Practices From Its Creator

In this tutorial, Boris Cherny—the creator of Claude Code—shares his personal workflow for using AI agents effectively with current language models. Rather than offering generic tips, he focuses on practical patterns that experienced developers apply repeatedly as new models ship. The core argument is compelling: even with powerful models like Claude Opus, most users fall into old habits and miss opportunities to streamline their setups.

The video treats Claude Code as a production tool, not an experimental sandbox. Cherny walks through what to keep, what to discard, and how to build evaluations that actually catch when an AI agent has gone off track. For anyone frustrated by vague AI coding advice, this is refreshingly specific about real workflows at scale.

Key Strengths and Weaknesses in This Claude Code Workflow

  • Systematic setup trimming: The principle of deleting configuration that Claude would solve anyway reduces context waste and forces clarity about what your system prompt actually needs to do.
  • Evaluation discipline: The video emphasizes evals as strict, automated checks—not rough guidelines—with a concrete example of pixel-level screenshot comparison to validate output quality over weeks.
  • Layered resource architecture: A clear hierarchy (prompt → claude.md → skill → MCP) prevents overengineering and keeps information accessible where the model expects to find it.
  • Focus on routines over dynamic workflows: The distinction between one-off prompts and recurring cloud jobs reframes AI coding as something that scales beyond interactive sessions, though the video does not explore debugging failed routines in depth.
  • Prompt philosophy: Describing intent rather than method is sound advice, but the video assumes some engineering maturity; beginners may struggle to apply this without more scaffolding.
Featured image for the guide to Claude Code Creator's Greatest Tip For Using AI Agents by AI LABS

Who Benefits Most From These Claude Code Strategies

This tutorial is strongest for engineers and technical leaders already shipping software who want to integrate AI agents into production workflows. If you build backend systems, maintain SDKs, or run recurring automation, the routines pattern and eval discipline will feel immediately relevant. Designers and product managers can also glean value from the "show, don't tell" approach to prompting, though most of the video assumes comfort with code and CI/CD concepts.

Hobbyists or people learning to code for the first time will find the advice too advanced without prior context. Conversely, if you're already using Claude at scale, this video likely clarifies patterns you've discovered yourself. The sweet spot is mid-career developers who have shipped at least one non-trivial project and want to avoid common pitfalls when handing complex tasks to AI agents.

Common Questions About Claude Code and AI Agent Workflows

Why should I delete parts of my Claude Code setup when a new model releases?

Newer models are more capable and often require less explicit instruction. Anthropic itself cut approximately 80% of Claude Code's system prompt when upgrading models, meaning your accumulated configuration may now be overhead. Testing what the model can do without extra guidance keeps your setup lightweight and easier to maintain.

What is an eval, and why does it matter for AI coding?

An eval is a fixed, automated check that determines whether an AI agent has completed its task correctly. Without one, agents often stall or produce work that looks done but fails under scrutiny. The stricter the eval, the more useful it is—pixel-perfect screenshot comparison, for example, is far more reliable than a vague "looks good" assessment.

How should I structure my prompts when working with Claude Code?

Describe what you want the agent to accomplish, not the step-by-step method to get there. Engineers are often the worst at this because we naturally think in procedures. Handing an agent a reference image and asking it to replicate it often produces near-copies; describing the design principles and letting the agent choose its approach tends to yield better results.

What is the difference between a routine and a one-off prompt?

A routine is a recurring cloud job that runs automatically on a schedule, even after you close your laptop. One-off prompts are interactive and happen in a single session. Routines turn AI coding into real automation; Anthropic itself runs twenty to thirty routines daily. Dynamic workflows that chain many prompts together are harder to debug and maintain, so the video recommends keeping workflows simple and relying on routines for ongoing work.

When should I use an MCP (Model Context Protocol)?

MCPs should be a last resort when Claude cannot reach the information it needs through a prompt or a skill. Start with your prompt, then claude.md, then a skill—only add an MCP if those three layers genuinely cannot solve the problem. This hierarchy keeps your setup transparent and reduces complexity.

A still from the video Claude Code Creator's Greatest Tip For Using AI Agents by AI LABS
See all news videos →
Buy this sites source code!

Key Terms

Claude Code
A tool and workflow framework for building and testing AI agents using Anthropic's Claude models.
Eval (evaluation)
An automated test that checks whether an AI agent has completed its task to a specified standard, and fails if the standard is not met.
claude.md
A configuration file that stores custom instructions and setup for Claude Code, which is read on every turn.
Routine
A recurring cloud job that runs automatically on a schedule, independent of your local session or laptop being online.
Prompt
The natural-language instruction you give to the AI agent describing what you want it to do.
Skill
A reusable function or module that provides Claude Code with a specific capability, ranked below prompt and claude.md in the resource hierarchy.

Sources: Claude Code · Eval (evaluation) · claude.md · Routine · Prompt · Skill — definitions cross-referenced with Wikipedia

Justin’s Take

This video is genuinely useful because it transplants real production discipline into AI coding. Too many tutorials treat Claude Code as a toy; Cherny treats it as infrastructure, which is what it becomes the moment you want output that lasts beyond a demo. The emphasis on evals and routines, not prompting tricks, is refreshing and grounded.

What stands out most is the ruthlessness about deletion—the idea that a new model release is a chance to throw away assumptions and rebuild from scratch. If you are already doing this, the video will confirm your instincts; if not, it will save you weeks of debugging bloated setups. Highly worth watching if you are serious about shipping AI agents.

Great video · 2 out of 2

Justin
Justin

I started Helicopterstour.com because I genuinely believe there’s no better way to see the world than from the sky. I used to work on the Pride of America cruise ship in Hawaii, helping guests book shore excursions all over the islands. Two Vacation Hero Awards 2,000+ Guests/Week Pride of America · NCL Hawaii Shore Excursions 1000+ Tours Reviewed

Video by AI LABS on YouTube. If you enjoyed it, please subscribe to their channel and show your support for the great video.

Description

Claude Code tips from the creator of Claude Code. Boris Cherny's own workflow as a Claude Code tutorial: how to use Claude Code on today's models, what to delete from your setup, and which Claude Code skills still earn their place. Claude Code for beginners and pros.

Seedance 2.5 is now live on Buzzy! Sign up today to claim 50 free credits and try it early at a special discounted price at : https://shr.pn/buzzy-now

Community with All Resources: http://ailabspro.io

The Roundup, our daily newsletter covering the AI stories that matter. Join now: https://www.theroundup.so/


Boris Cherny, the creator of Claude Code, said in an interview that even with models as capable as Fable 5, most people still use them the way they used Sonnet 3.5. So these aren't top Claude Code tips you apply once and forget. They're the pass you run every time a new model ships, from Anthropic Claude or anyone else, and this is how to use Claude in a real Claude Code workflow.

Delete your setup when a new model ships
- Anthropic cut about 80% of Claude Code's own system prompt when Opus 5 shipped. Your claude.md gets read on every single turn.
- The usage and context commands show what your setup costs you. Safe mode turns it all off so you can see how the model does without it.
- The rule: would Claude have worked this out on its own? If yes, delete it. The doctor command trims by exactly that rule.

Evals, the thing Boris says people get most wrong
- An eval is a fixed check that decides when work is done, and it has to be strict enough to fail.
- Boris had Claude rebuild the Claude desktop app in Swift and compare screenshots pixel by pixel. It's been running over two weeks. Without a check like that, an agent stalls out in an hour.

Prompting
- Say what you want, not how to do it. Boris says experienced engineers are the worst at this.
- Hand an agent an inspiration image and you get a near copy. Describe it instead and it works out the approach itself.

Where things go
- Prompt, then claude.md, then a skill, then MCP only when Claude genuinely can't reach the information.

Beyond one prompt
- We don't recommend dynamic workflows. The Bun rewrite cost roughly $165,000 at API pricing and still shipped nineteen breakages.
- Routines are what you'll actually use: recurring cloud jobs that keep running after you close the laptop. Anthropic runs twenty to thirty a day.

This is AI coding the way a software company runs it, so if you're into vibe coding but want coding with AI that holds up, these Claude Code beginner tips are where to start. Everything shown is Claude Code, not Claude Cowork, and the routines are where it turns into real AI automation. All our skills and setups live in AI Labs Pro.

Hashtags:
#ai #claude #claudeCode #claudeAi #claudeCowork #aiAutomation #vibeCoding #claudeCodeTips

How videos are chosen here

Every video on Helicopterstour.com is hand-picked and reviewed by Justin — nothing is added automatically. Each one gets an original written guide and an honest rating: ⭐ 1 out of 2 means a good video worth your time, and ⭐⭐ 2 out of 2 means a great one we would recommend to anyone. The videos belong to their creators — every page links back to the original channel so you can subscribe and support them.

Contact us

Get new videos in your inbox

A short email when we publish something new. No spam — unsubscribe anytime.