Skip to main content
The Stack Report · Issue #13

6 Claude Code phrases that actually change how you build

Subagents in parallel, spec-first prompting, the "interview me" trick, and knowing when not to automate.

Source: Austin Marchese

The Stack Report

Most "use AI to code faster" advice is noise. This issue is the opposite: six concrete phrases you can paste into Claude Code today, plus where each one actually earns its keep. One tool, six moves — here's the breakdown.

The setup

Claude Code

Anthropic's terminal-based coding agent. It runs in your shell, reads your repo, edits files, runs commands, and chains multi-step work without you babysitting every line. If you've been pasting snippets into a chat window and copying them back, this replaces that whole dance. The six phrases below are all ways to get more out of it — none require a plugin, just better instructions.

Phase 1 & 2 — Plan before you let it loose

Phase 1: Spin up subagents to work in parallel

Ask Claude Code to split the job across subagents and run them at the same time. Instead of one long serial chain, you get several agents tackling independent pieces — research, scaffolding, tests — concurrently. The win is real on anything with separable parts; it's wasted effort on a small linear task, so don't force it.

Phase 2: Write a detailed implementation spec first

Before any code, have Claude produce a full implementation spec — file structure, data flow, edge cases, the lot. You review the plan, not 400 lines of guesswork. This is the single highest-leverage habit here: a tight spec up front kills the "it built the wrong thing confidently" problem that wastes the most time.

Phase 3 & 4 — Make it pull the requirements out of you

Phase 3: Tell it to interview you

The phrase: "Interview me before you start." Claude asks pointed questions about scope, constraints, and what you actually want before writing anything. It surfaces the decisions you hadn't made yet — the ones that usually cause a rewrite halfway through. Cheap insurance against building the wrong feature.

Phase 4: Build in a verification step

Don't trust the output blind. Instruct Claude to verify its own work — run the tests, check the build, confirm the behavior against the spec, and report what it actually validated. The point is forcing it to prove the thing works rather than declaring victory. Treat any "done!" without evidence as unfinished.

Phase 5 & 6 — Compound the wins

Phase 5: Turn past conversations into reusable skills

Take a workflow you've already nailed in a previous session and have Claude package it as a reusable "skill" — a saved, named procedure you can call again. It's how you stop re-explaining the same setup every project. Build a small library of these and your second project in a stack is dramatically faster than your first.

Phase 6: Decide automate vs. augment with a taste test + 80/20

Not everything should be handed off. Run a quick "taste test" — does the task need your judgment, or is it mechanical? Then an 80/20 pass: automate the 80% that's rote, keep your hands on the 20% that needs taste. The skill being taught here is restraint: knowing where the agent helps and where it quietly makes things worse.

Quick hits

  • The whole framework runs on one tool — Claude Code — so there's nothing extra to buy or install.
  • Spec-first (Phase 2) is the one to adopt even if you ignore the rest; it prevents the most expensive failure mode.
  • "Interview me" works in regular Claude chats too, not just the coding agent — useful for scoping any project.
  • Subagents shine on parallelizable work; on a tiny linear fix they add overhead, not speed.
  • A verification step is your defense against confidently-wrong output — make "show me it passes" the default.
  • Saved skills are where the compounding happens; the payoff lands on project two and beyond, not project one.
  • The automate-vs-augment call is judgment, not a setting — the taste test keeps you from offloading the parts that need you.

That's the stack: plan, interrogate, verify, reuse, and know when to keep your hands on the wheel. If any of these would save you a real afternoon, reply and tell me which — I'll dig deeper on the one that lands most.

— Chad

P.S. — This roundup was curated from the Type This Into Claude, It'll Make You Build 10x Faster. episode on the Austin Marchese channel. Their full rundown is worth the watch: youtube.com/watch?v=TP73qyFWDcY.

Want this in your inbox every two weeks?

The Stack Report is biweekly. No fluff. Real tools small businesses actually use.