The argument in one line.
Good output from AI coding agents comes from the system built around them, not from smarter models or cleverer prompts — a five-step loop of explore, plan, implement, verify, and commit that every serious harness converges on.
Read if. Skip if.
- You're already running Claude Code, Codex, or Cursor daily and want a repeatable system instead of ad-hoc prompting.
- You manage AI agents on a team and need conventions for CLAUDE.md/AGENTS.md files, commit messages, and PR review.
- You're a non-technical 'vibe coder' building an app with these tools and want to know where you still need to make the calls.
- You've never touched an AI coding agent — this assumes you already know what Claude Code, Codex, or sub agents are.
- You want a step-by-step tutorial for a specific framework or language — this is workflow and process, not syntax.
The full version, fast.
Good output from AI coding agents comes from the system around them, not from smarter models or better prompts. Every serious harness converges on the same five-step loop: explore with sub agents to protect the context window, draft a reviewable plan, implement across parallel sub agents or git worktrees, verify with tests and adversarial review, then commit in small, well-documented chunks. Keep CLAUDE.md/AGENTS.md files lean, log recurring mistakes so agents stop repeating them, and spend roughly 80% of your time planning versus 20% supervising execution — the bigger the feature, the more decisions need to be nailed down upfront. Use skills for repeatable pipelines, dial reasoning effort up for anything that matters, and mix harnesses by task: cheap fast models for small UI tweaks, expensive frontier models for complex plans.
Chat with this breakdown — free.
Sign in and you get 23 free chat messages on us — ask for the hook, quote a framework, find the exact transcript moment, generate a markdown action plan. Bring your own key when you want unlimited.
Create a free account →Where the time goes.

01 · Cold open: the trust gap
Getting good output from Claude Code or Codex isn't about smarter models or better prompts — it's the system built around them. Cites adoption data: nearly 90% of developers use AI tools, but only 29% trust the output, and about 1 in 5 Codex users aren't developers at all.

02 · The five-step core loop
Every serious harness converges on the same loop: explore with sub agents to keep the context window clean, draft a plan for human review, implement across parallel sub agents, verify with tests, browsers, or other models, then commit in small, well-documented chunks. Claude Code's 'dynamic workflows' already automate most of this.

03 · Instruction files: CLAUDE.md & AGENTS.md
Keep these files lean and hand-written, not AI-generated — a bloated instruction file fills the context window on every single prompt. Log recurring mistakes in a memory file linked from CLAUDE.md so agents stop repeating them.

04 · Plan mode: catch mistakes while they're cheap
Plan mode explores the codebase then hands back a plan to review, often surfacing questions (export format? worker or inline? queueing?) the requester never considered. Spend roughly 80% of the time planning and 20% supervising execution; bigger features with more decisions fail far more often if under-planned.

05 · Skills: package workflows, pay for them only when used
Skills teach an agent new tools or APIs and load via progressive disclosure, only pulled into context when a matching keyword or tag appears. Contrasts with MCP servers, which inject tool definitions into every session and burn far more tokens.

06 · Sub agents and parallel fleets
Each sub agent gets its own context window and reports a summary back to the orchestrator. Git worktrees let multiple orchestrators work on fully separate copies of the codebase at once, so five or ten tasks can run concurrently without cross-contaminating context.

07 · Effort dials: spend reasoning where it pays
Reasoning effort levels, from low to extra-high, trade speed for accuracy. Dropping effort to save tokens usually backfires — re-prompting to fix mistakes costs more than just running high effort in the first place. Reserve low or medium effort for trivial, fast commands only.

08 · Verification loops, TDD & guardrails
Deterministic guardrails, write the test, implement, run the test, self-heal, matter regardless of effort level, since every model produces buggy code sometimes. Adversarial reviewer agents help because models are agreeable by default and will admit mistakes once directly challenged.

09 · Headless CI and the autonomy ladder
Harnesses support a headless mode for CI/CD, so a script can trigger an automated review on every new pull request. Full pipelines can run end-to-end in the cloud: an agent opens a PR, another reviews it, tests run in a sandbox, a preview URL gets verified, then it merges.

10 · Cross-harness patterns
No single model wins everywhere. The presenter uses fast, cheap models for quick UI tweaks and expensive frontier models for complex plans, sometimes chaining models so one adversarially reviews another's output.

11 · The scoreboard
Closes with adoption data: AI writes about 22% of shipped code at a mid-size company, 20-30% at Microsoft and Google, and roughly 95% at most startups. Developers using AI file about 60% more pull requests per week, though the presenter is skeptical PR and commit counts are a meaningful productivity signal.
Lines worth screenshotting.
- Almost 90% of developers now use AI coding tools, but only 29% trust the output those tools produce.
- One in five people using Codex aren't developers at all — they're non-coders building entire apps by vibe coding.
- The five-step loop every serious AI coding harness converges on is: explore, plan, implement, verify, commit.
- Sub agents exist mainly to protect the context window — the more sub agents doing the exploring, the less unnecessary information pollutes the main session.
- About 80% of the time on an AI-assisted feature should go into planning upfront, and only 20% into supervising execution.
- A feature with only two or three real decisions is safe to run with a single prompt; a feature with 20 decisions needs heavy planning or it will likely get built wrong.
- MCP servers inject their tool definitions into every session's context window, which is why skills — invoked only when needed — burn far fewer tokens.
- Reasoning effort levels trade speed for accuracy: dropping to a lower effort level to save tokens usually costs more in re-prompting and wasted time than it saves.
- Models are agreeable by default — challenged with 'you did this wrong,' they'll often admit the mistake, which is why adversarial review agents catch more bugs than a single confident pass.
- Git commit history doubles as an AI memory system: a well-documented commit lets an agent git-bisect its way back to exactly where a bug was introduced.
- At most startups, AI now writes about 95% of shipped code, versus roughly 20-30% at large, legacy-heavy companies like Microsoft and Google.
- Developers using AI file about 60% more pull requests per week, though PR count is a shaky productivity metric since commit granularity varies wildly by developer.
- One presenter reports spending over $200 on a single prompt using a frontier model's API tokens — reasoning effort and model choice have real cost consequences.
Five habits decide whether an AI agent ships good code or garbage.
The output quality of Claude Code, Codex, or any other agent comes down to the loop and guardrails wrapped around it, explore, plan, implement, verify, commit, not which model or prompt you use.
- Treat AI coding as a five-step loop, explore, plan, implement, verify, commit, rather than a single one-shot prompt, and expect the harness to have already automated most of it.
- Delegate the exploration step to sub agents specifically to keep your main context window free of code-base clutter.
- Route the implementation step through parallel sub agents when a feature splits into independent front-end, back-end, or API pieces, so unrelated context doesn't need to load.
- Keep your CLAUDE.md or AGENTS.md file hand-written and short; every line in it gets reloaded into every single prompt's context window.
- Log the mistakes an agent has made before in a memory file and link it from CLAUDE.md, so the same error doesn't repeat session after session.
- Let plan mode interview you before code gets written; the questions it asks about export format, worker vs. inline, or queueing surface decisions you didn't know you had to make.
- Budget roughly 80% of your time on planning and 20% on supervising execution, since a wrong plan that runs unsupervised for hours wastes far more tokens than the planning phase costs.
- Scale planning effort to the number of real decisions in the feature; two or three decisions is safe to run with one prompt, twenty decisions needs a reviewed plan or the odds of getting it right drop sharply.
- Reach for a skill, not an always-on MCP server, when you want a repeatable pipeline; skills only load into context when invoked, while MCP tool definitions load on every session regardless of use.
- Version-control skills so a whole team gets the same standard approach to a recurring task instead of everyone reinventing it per session.
- Give each sub agent its own context window so it can explore or implement a bounded piece of work and hand back only a summary, not its full working context.
- Use git worktrees to run multiple independent orchestrators on the same codebase simultaneously, each kicking off its own sub agents without cross-contaminating context.
- Default to the highest reasoning effort level available unless you're running a trivial, fast command; tokens saved on a lower setting are usually spent again on re-prompting to fix mistakes.
- Build a deterministic verify loop, write the test, implement, run the test, let the agent self-heal, regardless of effort level, since every model still ships buggy code sometimes.
- Have a second agent or model play adversarial reviewer; models are agreeable by default and will readily admit a mistake once directly challenged on it.
- Wire a headless-mode review into CI so every new pull request gets one more automated pass before a human looks at it.
- Match the model to the task's cost and speed tradeoff, a fast cheap model for a small UI tweak, a frontier model for a complex plan, instead of defaulting to one harness for everything.
- Don't over-index on PR-count or commit-count stats as a productivity signal; they vary wildly by how granular a given developer's commits are.
Terms worth knowing.
- CLAUDE.md / AGENTS.md
- Project-root instruction files that AI coding agents read automatically before working in a codebase, covering conventions like commit message format, test requirements, and architectural decisions.
- Sub agent
- A separate AI agent instance spun up by an orchestrator to do a bounded piece of work, like exploring a codebase or writing tests, in its own context window, then reporting a summary back.
- Git worktree
- A complete, separate checkout of a codebase's files in another folder, letting an agent work on a fix or feature without touching the main session's active branch.
- Plan mode
- A mode in coding harnesses like Claude Code where the agent explores the codebase first and proposes a written plan for the human to review before any code gets written.
- Effort dial / reasoning effort
- A per-model setting, such as low, medium, high, or extra-high, that controls how many tokens a model spends 'thinking' before acting; higher settings cost more but make fewer mistakes.
- Headless mode
- Running a coding agent from the command line with a single prompt and no interactive session, typically wired into CI/CD so pull requests get an automated agent review.
- Architectural Decision Record (ADR)
- A short document that records why a particular technical decision was made, such as choosing Postgres over another database, referenced by agents before they touch related code.
- MCP (Model Context Protocol)
- A protocol that lets an AI agent call external tools or services directly; its tool definitions load into the context window automatically, which is more token-expensive than a skill.
Things they pointed at.
Lines you could clip.
“If tokens were free, I would say use extra high for everything you do. Literally everything you do.”
“They think that what they're doing is 100% correct. You go back and say, hey, you're doing this wrong. They're like, oh yeah, by the way, yeah, I messed up.”
“The worst is when you spend two or three hours waiting for these things to finish and you load up the UI and it's just broken.”
“I've used over like $200 with one prompt before with Fable five API tokens.”
Word for word.
Don't just watch it. Burn it in.
See every word as it's spoken — crank it to 2× and still catch all of it. The same dual-channel trick behind Amazon's Kindle + Audible.
The bait, then the rug-pull.
Nearly everyone writing code with AI is doing it without a system. This is the five-step loop, from context management to commit discipline, that separates agents that ship real work from agents nobody trusts.
Named ideas worth stealing.
The Five-Step Core Loop
- Explore
- Plan
- Implement
- Verify
- Commit
The repeatable loop every serious AI coding harness converges on: sub agents explore the codebase to gather context without polluting the window, a plan gets drafted and reviewed by a human, implementation runs across parallel sub agents, verification (tests, browser clicks, other models reviewing) catches mistakes before commit, and small well-documented commits close the loop.
The 80/20 Planning Split
Roughly 80% of the time on an AI-assisted feature should go into upfront planning, and only 20% into supervising execution, because a plan that's wrong burns hours of unsupervised agent time and tokens before anyone notices.
How they asked for the click.
“If you guys like this talk, let me know. Leave a comment below and I can make more videos like this in the future.”
Soft, low-pressure engagement ask in the final seconds — no on-screen pitch for the paid/free offers linked in the description.





































































