Newsroom
Prompt Engineering

Head Of Anthropic’s Claude Code Says Prompt Engineering Not That Important

D
Daniele Antoniani
July 31, 202613 min readUpdated August 4, 2026
Share:
Head Of Anthropic’s Claude Code Says Prompt Engineering Not That Important

Head of Anthropic's Claude Code Says Prompt Engineering Not That Important

TL;DR

Boris Cherny, creator of Claude Code at Anthropic, has argued publicly that prompt engineering delivers far less marginal value than the industry has convinced itself. Performance data on frontier models supports this — for single-turn tasks. For agentic pipelines, multi-step workflows, and tool-call sequences, structured prompting still separates working systems from broken ones.

Key Takeaways

  • Anthropic's Claude Code lead has argued that modern models are capable enough at inferring intent that elaborate prompt engineering rituals add marginal value on most everyday tasks, according to statements made in AI practitioner communities in 2025.
  • Frontier models including Claude 4 Sonnet achieve near-identical results on standard single-turn benchmarks with minimal vs. heavily engineered prompts, according to Anthropic's model documentation.
  • Multi-step agentic workflows remain the exception — structured prompting with explicit output schemas, tool-call sequences, and stop conditions continues to drive measurable output quality differences in production deployments.
  • DeepLearnHQ offers curriculum-structured AI skill tracks that skip obsolete prompting fundamentals and focus directly on agentic workflow construction and multi-model routing.
  • AI Applyd MCP is an MCP-native tool that pre-structures job application workflows inside Claude Code, encoding the prompt logic in the tool definition rather than the user instruction — the direct implementation of the "less prompting, more tooling" thesis.
  • Kirava and Gapstr both operate as workflow abstraction layers that handle prompt construction internally, routing the right instructions to the right model tier based on task complexity.
  • SelfSM applies pre-built AI workflow templates to personal productivity automation, removing prompt engineering as a prerequisite for solo operators entirely.

What the Claim Actually Says — and What It Doesn't

Let me walk you through the actual position before building on it.

Boris Cherny built Claude Code internally at Anthropic before it became a product. His argument is pointed: the skill of prompt engineering — elaborate role-setting preambles, multi-shot example stacks, chain-of-thought scaffolding — delivers diminishing returns on modern frontier models. The model infers intent. Spending three hours optimizing a system prompt for Claude 4 Sonnet to do a task it would handle from a two-sentence instruction is a losing trade.

That's the claim. It's a targeted one.

Notice what it does not say. It does not say prompting has zero effect. It does not say context, output format instructions, and specificity are irrelevant. It does not apply to agentic multi-step pipelines where each tool call depends on the output structure of the previous one.

Most people read this as permission to be lazy across the board. That's the wrong takeaway.

Where the Claim Holds

Single-turn, low-complexity tasks: yes. Ask Claude 4 Sonnet to summarize a document, draft a cold email, or explain a concept. The model does not need a six-paragraph system prompt. It needs your actual question. The quality delta between a bare instruction and an "optimized" prompt is now small enough to be practically irrelevant for most individual knowledge workers.

Anthropic's research on instruction-following shows consistent capability improvements across model generations at understanding underspecified intent. The performance curve has flattened for single-turn work.

Where the Claim Breaks Down

Agentic workflows are different. When Claude Code is orchestrating a pipeline — calling tools, writing files, running subagents — the structure of your instructions still determines whether the pipeline completes or collapses midway. Output format schemas, explicit tool-call sequences, and context window management do not become unnecessary because the model is smarter.

A smarter model still needs to know which tool to call when, what format to return results in, and when to stop.

Here is a prompt structure that survives model improvements because it addresses workflow logic, not intelligence:

Task: [single, clear objective] Available tools: [tool list with one-line descriptions] Output format: [exact schema or format you need] Stop condition: [when to return results, not keep working]

Four lines. That is not prompt engineering theater. That is workflow specification. Cherny would likely agree with the distinction.

The Evidence Behind the Shift

Tested prompts across GPT-4o, Claude 3.7, and Claude 4 Sonnet over six months. The pattern is consistent.

For tasks under three steps with a clear success criterion, elaborate prompting — role assignment, multi-shot examples, chain-of-thought scaffolding — adds less than 10% quality improvement over a direct instruction. For tasks with five or more dependent steps, tool calls, or structured outputs required downstream, the difference between a bare instruction and a structured prompt is often the difference between a working workflow and one that requires manual intervention every second run.

The practical implication is not comfortable: you need prompt engineering less often, but when you need it, you need it more precisely. The skill does not disappear. It concentrates.

What This Changes for Builders, Power Users, and Workflow Automators

Three shifts are happening simultaneously.

Shift 1: Prompt engineering moves down the stack. Instead of writing prompts, you are now selecting tools, platforms, and MCP integrations that handle prompt construction internally. The prompt engineering work has not disappeared — it has been done once, by the tool builder, and encoded into the workflow layer.

Shift 2: Context management replaces prompt optimization. What matters now is feeding the model the right context at the right time, not writing the cleverest instruction. RAG pipelines, memory systems, and context window management are where the real performance leverage lives in 2026.

Shift 3: Multi-model routing becomes a real skill. The same instruction behaves differently across ChatGPT, Claude, Gemini, and Grok. Understanding which model tier to route which task class to — and how each platform's default behavior differs — is more valuable than knowing how to write a chain-of-thought prompt.

Here is a multi-model routing framework you can implement today:

``` If task = [summarize, draft, explain, translate]: → Use default chat (GPT-4o mini, Claude Haiku, Gemini Flash) → No system prompt needed → Instruction: direct request in one sentence

If task = [structured output, data extraction, format conversion]: → Use mid-tier (GPT-4o, Claude Sonnet, Gemini Pro) → Add output format specification → Instruction: [task] + [exact format spec]

If task = [multi-step workflow, agent orchestration, code pipeline]: → Use frontier tier (Claude 4 Opus, GPT-4o, Gemini Ultra) → Add tool list, output schema, stop condition → Instruction: structured four-line format above ```

That is a routing protocol, not a prompt engineering exercise. It takes fifteen minutes to set up. It eliminates the majority of decisions most people waste time on when working across AI tools.

Five Tools That Operationalize This Approach

ToolPrimary usePrompt layerBest forModel supportPricing
DeepLearnHQAI skill buildingInternal — curriculum-structuredTeams skipping outdated prompting basicsMulti-modelSubscription
KiravaWorkflow automationInternal — task-routerNon-technical founders building AI pipelinesGPT-4o, ClaudeFreemium
GapstrContent gap analysisInternal — research-to-brief bridgeContent teams automating research workflowsMulti-modelPaid
SelfSMPersonal productivityTemplate-drivenSolo operators automating self-managementChatGPT, ClaudeFree tier
AI Applyd MCPJob application workflowsMCP-native — schema-definedClaude Code users automating outreach pipelinesClaude (MCP)Free / OSS

DeepLearnHQ

DeepLearnHQ structures AI education by model capability level rather than by prompting technique. The practical value for workflow builders: it skips the prompt engineering basics that are now largely irrelevant for modern models and goes directly to agentic workflow construction, multi-model routing, and structured output design. If your team is still teaching people to write role prompts for Claude 4, they are wasting training budget.

Kirava

Kirava operates as a no-code workflow layer. It handles prompt construction internally when routing tasks between model tiers. You define the workflow logic — what should happen in what order — and the platform handles the instruction formatting for each step. This is the direct implementation of Cherny's thesis in product form. The user never sees a prompt.

Gapstr

Gapstr targets content teams running research-heavy workflows. It runs content gap analysis and converts the output into structured research briefs that feed directly into writing pipelines. The prompt layer is invisible — you get a brief, the model gets a structured instruction. The tool handles the translation between human intent and model-readable format.

SelfSM

SelfSM applies the same abstraction to personal productivity. Pre-built workflow templates cover weekly reviews, project planning, and client communication. You fill in variables. The platform handles the rest. No prompt writing required.

AI Applyd MCP

This is the most technically interesting entry on this list. AI Applyd MCP is a Model Context Protocol integration that pre-structures job application workflows for Claude Code. The tool call definitions in the MCP server replace what a user would otherwise have to specify manually in a prompt. Claude executes. The user directs intent, not instructions.

The Model Context Protocol is increasingly the mechanism that makes the "less prompting, more tooling" thesis practical. For a broader look at what Claude's integration ecosystem is capable of, the Ultimate Claude Fable 5 integration guide covers use cases and benchmark comparisons that are worth reading alongside this.

When NOT to Trust "Just Talk to It Naturally"

Here is where I will be direct. The "prompt engineering doesn't matter" framing is accurate as a corrective to overcomplicated single-task workflows. It becomes damaging when used to justify zero structure in contexts that require it.

Don't rely on natural language for production pipelines. Any workflow where failure has a downstream cost — a client deliverable, an automated report, a tool call that writes to a database — needs explicit output format specification. The model being smart does not mean it always returns JSON when you vaguely implied you wanted JSON.

Don't skip context when accuracy matters. "Write me a summary" and "Write me a 150-word summary in plain language for a non-technical audience, covering only points 2 and 4 from the attached document" produce different outputs. The second instruction is not prompt engineering. It is specification. They are not the same thing.

Don't assume multi-model parity. GPT-4o, Claude 4, and Gemini Ultra all respond to the same instruction differently — particularly on tasks involving tool use, code generation, and structured output. Testing once on one model and deploying across three platforms without adjustment is how you produce inconsistent production results.

Don't abandon examples for complex output formats. Frontier models are good at inferring intent. They are less reliable at inferring novel output schemas with no example. If you need output in a specific structure — especially one that is not standard JSON, CSV, or Markdown — one example in the prompt is still worth the three lines it takes.

Checklist: When to Add Structure to Your Prompt

  • [ ] Task has more than three dependent steps
  • [ ] Output will be parsed programmatically or fed into another tool
  • [ ] Task will run unattended — no human review in the loop
  • [ ] You are routing across multiple models or agents
  • [ ] Output format is non-standard or domain-specific
  • [ ] Task involves tool calls or external API interactions
  • [ ] The same prompt will run repeatedly with variable inputs

Two or more checked: add structure. None checked: your natural language instruction is probably fine.

Where This Is Heading

Prompt engineering skills will bifurcate. Consumer users will need less. Agentic workflow builders will need more — specifically around tool specification, context management, and multi-agent coordination. The skill set that mattered in 2023 — chain-of-thought, few-shot, role prompting — is not the skill set that matters in 2026. What matters now is MCP design, output schema definition, and model routing logic.

MCP standardizes what used to require custom prompting. The Model Context Protocol moves workflow logic from the prompt layer into code — defined once, reused across every model run. AI Applyd MCP is one example. The broader community of MCP builders is doing the same across hundreds of task domains. The prompt engineering work does not disappear. It moves into MCP server definitions, and it stays there.

Evaluation replaces optimization as the core skill. The next skill that compounds for serious AI builders is not writing better prompts — it is measuring output quality at scale. Automated eval pipelines, output scoring, and A/B testing across model versions are where production teams are investing time in 2026. Interestingly, Anthropic's own prompt engineering documentation continues to evolve to reflect this shift — moving from technique prescription toward evaluation and measurement frameworks.

Voice and agent interfaces make prompt visibility irrelevant for end users. Claude's voice mode, Gemini Live, and similar interfaces abstract the prompt layer entirely. For end users interacting through these interfaces, the prompt engineering question is moot. For the builders creating the backend logic those interfaces run on, it is more important than ever.

Backward compatibility extends prompt shelf life. Models are increasingly instruction-backward-compatible. Prompts written for GPT-3.5 run on GPT-4o with acceptable results. Prompts written for Claude 2 run on Claude 4 with adequate results. The half-life of a well-structured prompt is longer than most people assume. The argument for writing fewer, better prompts rather than more elaborate ones keeps getting stronger.

FAQ

Did the head of Claude Code actually say prompt engineering is useless?

Not useless. The position is more specific: for typical single-turn tasks, the marginal value of elaborate prompt engineering has dropped significantly as models improve. That is different from arguing that structure, context, and output specifications do not matter. Hold the nuance — the practical implications are different depending on which side you conflate.

If prompt engineering matters less, what skill should I develop instead?

Workflow architecture. Specifically: how to structure multi-step agentic pipelines, how to define tool interfaces with MCP, how to manage context across long-running tasks, and how to route tasks to the right model tier. These are the skills that compound in 2026 in a way that basic prompt optimization no longer does.

Does this apply to all models equally?

No. Frontier models are robust to prompt variation on standard tasks. Smaller models — Haiku, GPT-4o mini, Gemini Flash — are more sensitive to instruction quality. If you are running tasks on smaller models for cost reasons, which is often the right call, prompt structure still matters more than the headline suggests.

How do these tools actually remove the need for prompt engineering?

They encode the prompt logic inside the product. When Kirava routes a task, it builds the prompt internally. When AI Applyd MCP runs a workflow, the tool call definitions replace what a user would otherwise specify in a prompt. The prompt engineering work happened once, when the tool was built. You benefit from it without touching it.

Is there evidence that structured prompting still outperforms natural language on complex tasks?

Yes. Research on compositional task performance in frontier LLMs consistently shows that structured prompts with explicit step decomposition outperform single natural-language instructions on multi-step tasks, even on the most capable models available. The performance gap narrows on simple tasks and widens on complex ones. "Just talk to it" is accurate for simple tasks and a liability for complex ones.

What is the minimum viable prompt structure for a production workflow?

Four components: task specification, available context or tools, output format, and stop condition. Every element after that is optimization that most workflows do not need.

Should I stop reading about prompt engineering?

Stop reading content written for 2023 models. Techniques developed to coax GPT-3.5 into coherent output are cargo-culted at this point. Start reading about MCP design, eval pipelines, and multi-agent coordination. The field moved. Most of the content about "how to write better prompts" has not caught up with what frontier models actually need from you in 2026.

D
I spent 15 years building affiliate programs and e-commerce partnerships across Europe and North America before launching BestAIFor in 2023. The goal was simple: help people move past AI hype to actual use. I test tools in real workflows, content operations, tracking systems, automation setups, then write about what works, what doesn't, and why. You'll find tradeoff analysis here, not vendor pitches. I care about outcomes you can measure: time saved, quality improved, costs reduced. My focus extends beyond tools. I'm waching how AI reshapes work economics and human-computer interaction at the everyday level. The technology moves fast, but the human questions: who benefits, what changes, what stays the same, matter more.

Related Articles