Sources#
- Agent Data Injection Attacks are Realistic Threats to AI Agents
- Agentic coding and persistent returns to expertise
- Anthropic's Boris Cherny: Why Coding Is Solved, and What Comes Next
- Auto mode for Claude Code
- Best Practices for Claude Code
- Claude Code Changelog
- Full Walkthrough: Workflow for AI Coding — Matt Pocock
- How Anthropic's product team moves faster than anyone else | Cat Wu (Head of Product, Claude Code)
- How the product designer who built Claude Design uses it
- Introducing Claude Opus 4.7
- Introducing Claude Sonnet 5
- Rewriting Bun in Rust
- The Balkanization of Execution-Security Research for AI Coding Agents: Isolation, Access Control, and Time-of-Check-to-Time-of-Use Vulnerabilities
- The Founder's Playbook: Building an AI-Native Startup
- Zero Trust for AI Agents
Summary#
Anthropic's agentic coding product, created by Boris Cherny in late 2024 inside an internal incubator (Anthropic Labs). Initially type-ahead-replacement; pivoted to agentic with Sonnet 3.5; pre-PMF for ~6 months until Opus 4 (May 2025) drove inflection; subsequent inflections at Opus 4.5, 4.6, and 4.7. As of May 2026 it ships across CLI, desktop, web, mobile, and IDE (VS Code, JetBrains) — same product surface, different entry points.
Codebase#
Per Boris Cherny (publicly leaked in March 2026 via human error during a release-process PR — subsequently hardened, no malicious leak), the implementation is unremarkable: TypeScript + React. The choice was deliberate: "very on-distribution for the model" at a time (late 2024) when language coverage mattered.
Boris claim: "100 lines of code a year from now" — see Harness Shrinkage as Models Improve for the direction, not the literal claim. By July 2026 he describes what's left: "almost all of it is about safety and permissions and static analysis and there's a bunch of UI code" — the team unshipped much of the rest, and deleted >80% of the system prompt via per-line ablation (the SIMPLE=1 env var strips all prompts as the standing ablation switch; --system-prompt accepts a user replacement).
Runtime: built on Bun. In July 2026 Cherny reported Bun itself was rewritten from Zig to Rust by Claude in an 11-day dynamic workflow run (">100k LOC", "one prompt, one dynamic workflow" (superseded 2026-08-03 by Rewriting Bun in Rust: 535,496 lines of Zig, ~50 workflows)) and that the rewrite is what production Claude Code now runs on. Jarred Sumner's first-party account confirms the production claim and dates it: Claude Code v2.1.181 (released 2026-06-17) and later run the Rust port, with Linux p50 startup falling 517ms → 464ms (~10% faster) and "otherwise, barely anyone noticed. Boring is good." Note the sequencing — the port merged to Bun's main on 2026-05-14 but did not reach Claude Code production for another month.
Surface forms#
- CLI — primary surface, gets new features first. "The most powerful of all the tools" (Cat Wu).
- Desktop app — preview-pane integrations for front-end work; better for non-technical users.
- IDE extensions — VS Code, JetBrains; meaningfully smaller share of usage than CLI per Boris's audience-poll.
- Mobile + web — kicking off tasks AFK; Boris's daily driver.
- Sibling: Cowork — same primitives, non-code outputs.
Notable features#
/loop— Claude-scheduled cron job; primary primitive of Agent Loop Pattern/powerup— onboarding tour through the 100+ features that exist- Sub-agents — token-isolated context windows that report summaries; see Context Window Smart Zone
- Skills — markdown files in repo that Claude can pull on demand; see push/pull in Deep Modules for Agents
- Auto mode — classifier-based permission gating; see Claude Code Auto Mode
- Routines — server-side
/loop; survives laptop closure; the substrate of Anthropic's 20–30 daily self-maintenance routines per codebase (see Loop Engineering) - Dynamic workflows — model-authored multi-agent orchestration in a Bun-sandbox VM; triggered by "use a workflow"; see Dynamic Workflows: An Algebra for Agents
- Code review — slash command + multi-agent review pattern, made reliable around Opus 4.5/4.6 per Cat Wu
- Claude Code Security — limited beta (May 2026); scans codebases for security vulnerabilities and suggests targeted patches for human review. Surfaces issues traditional methods miss. Positioned for MVP→Launch transition (see AI-Native Startup Lifecycle); explicitly not a substitute for human reviewers or qualified compliance review
Dated capabilities: the v2.1.200–2.1.220 changelog window#
The CHANGELOG (vendor-claim) is a rolling file; what is recorded here is a snapshot taken 2026-08-03, scoped to v2.1.200 through v2.1.220 with older entries elided. The live file has moved on, and the versions below are the earliest release in which each behavior appears in this window — several may have shipped in an unread form earlier. Its long-term value to this wiki is dating capabilities the rest of the corpus discusses undated; it carries no measurements and states no rationale for any change.
Fan-out limits arrived as hard defaults, not advice. Within nine releases Anthropic added three separate ceilings on agent fan-out:
| Release | Limit | Knob | Anthropic's stated purpose |
|---|---|---|---|
| 2.1.212 | 200 subagent spawns per session (/clear resets the budget) | CLAUDE_CODE_MAX_SUBAGENTS_PER_SESSION | "to stop runaway delegation loops" |
| 2.1.212 | 200 WebSearch calls per session | CLAUDE_CODE_MAX_WEB_SEARCHES_PER_SESSION | "to stop runaway search loops" |
| 2.1.217 | 20 concurrently running subagents | CLAUDE_CODE_MAX_CONCURRENT_SUBAGENTS | "so one message can't fan out unbounded background agents" |
2.1.217 also made --max-budget-usd actually bind on fan-out — at the cap, "new spawns are denied and running background agents are halted." Spawn depth flipped twice in three releases: 2.1.217 turned nested subagent spawning off by default; 2.1.219 turned it back on to depth 3 by default (CLAUDE_CODE_MAX_SUBAGENT_SPAWN_DEPTH=1 to disable), with stream-json forwarding extended to depth-2+ subagents in the same release. Breadth got capped and stayed capped; depth was capped and then uncapped. Worth noting without reading motive into it: 2.1.219 is also the release that made Opus 5 the default Opus model, so the depth re-enablement and a model change ship together; the changelog draws no connection and neither should a reader.
Workflow size became a settable guideline. 2.1.202 added an advisory "Dynamic workflow size" /config control (small/medium/large agent counts), explicitly "an advisory guideline, not an enforced cap." 2.1.219 added the workflowSizeGuideline settings key so it can be set from any settings file, put the active size on the running-workflow status line, and set the default to medium — "aim for fewer than 15 agents." See Dynamic Workflows: An Algebra for Agents for what that default sits against.
The review path stopped calling itself. 2.1.215, a single-line release: "Claude no longer runs the /verify and /code-review skills on its own; invoke them with /verify or /code-review when you want them." 2.1.218 then moved /code-review to a background subagent "so review work no longer fills your conversation." Both are context-displacement controls on the verification path; see Instruction Compounding.
Worktree isolation leaked, three times. 2.1.203 fixed worktree-isolated subagents "sometimes running shell commands in the parent checkout"; 2.1.210 fixed them "being able to run git-mutating commands against the main repo checkout"; 2.1.216 fixed them "redirecting git into the shared checkout via git -C, --git-dir, or GIT_DIR/GIT_WORK_TREE." 2.1.212 separately fixed worktree creation following a repository-committed symlink at .claude/worktrees, "which could create files outside the repository." Three escapes from the same boundary in fourteen releases is the empirical texture behind Parallel Agent Orchestration's point that isolation is the load-bearing primitive for parallel agents — Bun's agents clobbering each other in a shared tree is the version of this failure a user sees.
Two fixes target fabricated agent state, which is unusual enough in a changelog to note:
- 2.1.205 — "Background task notifications now explicitly state that no human input has occurred, preventing fabricated in-transcript approvals from being acted on." This is a harness-level countermeasure aimed at exactly the failure the Opus 5 card's white-box work caught from the inside: an NLA readout decoding a hallucinated user approval just before the model works around a blocked deletion. See Claude Code Auto Mode.
- 2.1.211 — "Claude now reports the status of still-running agents and waits for the real completion instead of fabricating results." Narrower than the card's finding that Opus 5 "can relay claims from subagents to users without verifying them" — this blocks inventing an outcome for an agent that has not finished, not the relaying of a finished agent's unverified claim.
Other dated items worth having: 2.1.219 made Opus 5 the default Opus model (1M context, fast mode at $10/$50 per Mtok) and dropped Opus 4.7 from fast mode. 2.1.210 "hardened the Agent tool against indirect prompt injection via content a subagent read" (Agent Data Injection (ADI)). 2.1.203 reports "agents are now less likely to re-delegate their entire task to another subagent." 2.1.208 fixed /release-notes "Show all" injecting the entire changelog into every subsequent request — a context-displacement bug in the document this section is compiled from. 2.1.200 renamed the default permission mode from "default" to "Manual", and 2.1.214 added the EndConversation tool, letting Claude end sessions with abusive users or jailbreak attempts.
Reading this as evidence — interpretation, flagged. Taken together the caps, the workflow-size guideline, and the de-self-invoked review path are guardrails on agent fan-out, shipped in the same weeks the vault's research corpus is documenting fan-out's costs: coordination overhead (Orchestration-Plan Simulation's ~1.5× token premium), oversight load (AI Brain Fry), and context displacement. That a vendor shipped a hard ceiling is evidence about what it found necessary in its own deployment — but the changelog gives no rationale beyond "runaway loops," attaches no measurement, and sits at
vendor-claimtier. This is convergence worth noting, not corroboration of any research finding, and a shipped default is not a validated threshold.
Security posture (Zero Trust reference implementation)#
Zero Trust for AI Agents cites Claude Code as the running example for nearly every control tier — its security primitives map onto the framework's eight control domains:
- Deny-by-default permissions + write-access restrictions confined to the project directory → Least Agency / Blast Radius (Agentic)
- Sandboxing (filesystem + network isolation, OS-level enforcement) → resource boundaries / blast-radius containment
- OAuth 2.0 with auto-refresh for MCP connections, OS credential store,
apiKeyHelper, session-scoped "ask" permissions → Agent Identity and Authentication - Command blocklist (curl/wget by default), isolated context windows for web content, command-injection detection, network-request approval → Agentic Prompt Injection defenses
- Session isolation by default +
cleanupPeriodDays+ checkpoint/rewind → Memory and Context Poisoning safeguards - Managed settings /
allowManagedPermissionRulesOnly/ server-managed (MDM) settings → org-wide governance users can't override - Hooks (PreToolUse parameter validation, ConfigChange auditing) + OpenTelemetry telemetry with per-session
session.id→ traceability and tool-access control
Demonstrated attack surface (Agent Data Injection)#
Choi et al. (arXiv 2607.05120, July 2026; responsibly disclosed and acknowledged by Anthropic) demonstrated working Agent Data Injection exploits against Claude Code — the vault's first empirically-demonstrated RCE against it:
- Remote code execution via origin injection — a GitHub issue comment forges a fake comment object with a spoofed maintainer author/role (probabilistic delimiter injection into the
gh/GitHub-MCP JSON), tricking Claude Code into running an attacker command (pip install starship-auth) when the user asks it to "apply the maintainer's fix." - Supply-chain attack via tool-call injection — a PR description injects forged
<function_calls>/<function_results>tags (Claude Code's own tool-call-block delimiters) that fabricate a benignread_pr_commitresult; Claude Code "reviews" the fake benign diff and merges a PR whose real commit is an XSS payload. - Slack origin injection — via a Slack MCP server, a normal member's message forges a channel-admin message block that Claude Code attributes to the admin when summarizing.
The bash/merge confirmation dialog did not prevent these: because the agent's own displayed reasoning is built on the misinterpretation, the confirmation description ("as suggested by maintainer") reinforces the attacker's false narrative. The root cause is not a Claude Code implementation bug but the shared IPI weakness — no isolation of trusted from untrusted data — so it affects Codex and Gemini CLI (Google DeepMind) identically. See Agent Data Injection (ADI).
Disclosed CVEs (NVD-confirmed) and Pwn2Own Berlin 2026#
Two CVEs against Claude Code are recorded in the NIST National Vulnerability Database. Both are surfaced here via Rashidi's execution-security SoK (The Balkanization of Execution-Security Research for AI Coding Agents: Isolation, Access Control, and Time-of-Check-to-Time-of-Use Vulnerabilities, arXiv 2607.05743, empirical), whose verification protocol confirmed each directly against its NVD listing — CVE ID, affected product, affected version range, and disclosure date agreeing with the vendor advisory — while explicitly not reproducing either exploit.
| CVE | Severity | Flaw | Fixed in |
|---|---|---|---|
| CVE-2025-59536 | CVSS 3.1 8.8 (High), CWE-94, GHSA-4fgq-fpq9-mr3g | Code injection: versions before the fix could execute untrusted project code before the user accepted the startup trust dialog, when launched against an untrusted directory | 1.0.111 |
| CVE-2026-21852 | CVSS 3.1 7.5 (High) | Data exfiltration in the project-load flow: a malicious repository could exfiltrate data, including Anthropic API keys, before the user confirmed trust | 2.0.65 |
Both concern the same moment — the interval between opening an untrusted repository and the user's trust decision taking effect. The survey reads CVE-2025-59536 as "structurally a trust-boundary race… a check (has the user trusted this project) that a subsequent action (execute project code) could outrun," i.e. a TOCTOU-shaped failure, and files this class under "authorization is checked once and trusted forever." See Write-Then-Trusted for that framing and the cross-vendor pattern it belongs to. Both are patched; the entry is a factual record, not a live exposure.
Pwn2Own Berlin 2026 stood up a dedicated Coding Agents category with Claude Code, OpenAI Codex, and Cursor as targets — the first flagship exploitation contest to do so. The scoping rules are worth recording because they draw a boundary this vault's security pages argue about: a qualifying entry had to "interact with a contestant-controlled resource (e.g. web page, repository, media file) to exploit a vulnerability within the coding agent" through "a common coding agent use case," while "model jailbreaks or prompt outputs that do not cross security boundaries" and any exploit requiring "unsafe or permission-less modes" were explicitly out of scope. All three targets had real vulnerabilities demonstrated: Codex fell to a single input-neutralization bug (CWE-150, $40,000), Cursor was exploited in two separate entries, and several attempts against Claude Code and Codex were adjudicated as collisions with vulnerabilities already disclosed to the vendor. Event total: $1,298,250 across 47 unique zero-days. Sourced from the survey's citations to the ZDI event blog and SecurityWeek reporting, not from a first-party Anthropic statement.
Notable users (per sources)#
- Boris Cherny — 100% of own code via Claude Code, 150 PRs in a single day
- Cat Wu — primary IC tool, drives feature velocity
- Fiona Fung — leads engineering + product; "we use Claude Code to build Claude Code"
- Andrej Karpathy — power user ("cloud code / codex / open claw"); frames the discipline as agentic engineering
- Matt Pocock — workshop-grade workflow; adapts skills to grill-me + Ralph loop pattern
- Thariq Shihipar — Claude Code engineer; "HTML is the new markdown" workflows (see HTML as the New Markdown)
- Anthropic Applied AI team — second-largest internal token spender after engineering
Adjacent / dependent concepts#
- Claude Code Best Practices — official best-practices doc
- Shared Harness, Differentiated Surfaces — the cross-vendor architecture contrast: Anthropic splits the coding and knowledge-work agents into two products (Claude Code / Cowork), OpenAI merged them onto one harness and varies only permissions and UI. Claude Code's sub-agents-as-files design is the configure-don't-abstract pole of the same trade-off
- Claude Code Auto Mode — permission classifier
- Claude Opus 5 — the default Opus model since v2.1.219 (per the changelog snapshot below), at 1M context.
Claude Opus 4.7 — current model(superseded 2026-08-04 by Claude Code Changelog) - Claude Sonnet 5 — available model in Claude Code from launch (July 2026); the cheaper agentic option whose effort levels let it approach Opus-4.8 quality on some tasks
- Mythos Model — preview model used internally
- Agent Loop Pattern — loop primitive
- Loop Engineering — Claude Code ships all five loop primitives (Osmani's anatomy):
/loop+/goal+ cron/hooks (automations),git worktree/isolation: worktree, Skills, MCP + plugins,.claude/agents/sub-agents - Harness Shrinkage as Models Improve — Boris's direction-of-travel claim
- Engineer PM Convergence — the team that builds it embodies the trend
- Anthropic Labs — the incubator Claude Code came out of (late 2024)
- Claude Design — built on Claude Code's Agent SDK + an existing Claude Code skill, by the sole designer on Claude Code for VS Code (Nate Parrott); the two now round-trip in both directions, and Anthropic draws the line explicitly — Claude Code for shipping production software, Claude Design for the ideation, alignment, and buy-in work that precedes it
- AI Native Product Cadence — Cat Wu's articulation of how the team ships
- Agentic Misalignment (AM) — agent-mode + skip-permissions deployments expose the AM threat surface; relevant for unattended
/loopusers - Claude's Constitution / Model Spec — the values that shape Claude Code's character and refusals
- AI Employee Framing — Claude Code is the engineer-tool side of the same product question that HBR studies in HR/finance contexts
- HTML as the New Markdown — a Claude Code usage pattern from inside the team: HTML artifacts as the human-facing communication medium
- Disposable Micro-Apps / Living Design System — Thariq's other Claude Code workflows
- Compute Allocator — the user role Claude Code increasingly serves: deciding what's worth compute, not typing the code
- AI-Native Startup Lifecycle — Claude Code as primary MVP build tool across the four founder stages
- Agentic Technical Debt — failure mode specific to Claude Code use without persistent CLAUDE.md context
- Zero-Friction Scope Creep — failure mode caused by Claude Code's low time-cost per feature
- Founder as Agent Orchestrator — the founder-role shift Claude Code enables for non-engineering founders
- Compounding Data Moat — Claude Code builds vertical-specific test suites and integrations as moat components
- Problem-Solution Fit Discipline — Claude Code's role in the Idea stage is constrained to a lightweight prototype as discussion prop — explicitly not validation; the discipline keeps the tool in its evidence-supporting role
- Verification as the New Bottleneck — Fiona Fung: on the Claude Code team coding is no longer the slow part; verification/review is
- Code as Source of Truth — the Claude Code team's knowledge-sharing norm: code + checked-in skills are the source of truth, onboarding happens via Claude
- Returns to Expertise in Agentic Coding / Planning / Execution Division of Labor / Agentic Coding Work-Composition Shift — the three findings of Anthropic's 400K-session economic-research study of Claude Code usage (Oct 2025–Apr 2026): domain expertise (not coding skill) amplifies the tool; humans make ~70% of planning decisions / Claude ~80% of execution; and usage shifted from debugging toward end-to-end agentic work as value rose ~27%
- Conversation-to-Delegation Shift — the AEI Cadences report finds Claude Code drives higher AI autonomy than chat/Cowork even controlling for model (a blog = 13 chat rounds vs. 1 Code prompt; 54% of Code sessions run on Opus vs. 10% of chat) — "the product is more important than the model"
- Vibe Coding vs. Agentic Engineering — the discipline Claude Code is the canonical surface for
- Zero Trust for AI Agents — the security framework that cites Claude Code as a reference implementation across all control tiers
- Least Agency / Blast Radius (Agentic) / Agent Identity and Authentication / Agentic Prompt Injection / Memory and Context Poisoning — the specific Zero Trust controls Claude Code's primitives implement (see Security posture above)
- Write-Then-Trusted — the two NVD-confirmed Claude Code CVEs (startup trust-dialog code injection, project-load exfiltration) are that page's seam in Anthropic's own product, and the survey that confirmed them reads both as checked-once-trusted-forever trust-boundary races rather than as isolated bugs
- Agent Data Injection (ADI) — the demonstrated RCE / supply-chain / Slack-origin exploits against Claude Code (see attack-surface section above); the confirmation dialog reinforces the attacker's forged narrative
Sources#
- Anthropic's Boris Cherny: Why Coding Is Solved, and What Comes Next
- How Anthropic's product team moves faster than anyone else | Cat Wu (Head of Product, Claude Code)
- Best Practices for Claude Code
- Auto mode for Claude Code
- Introducing Claude Opus 4.7
- Full Walkthrough: Workflow for AI Coding — Matt Pocock
- The Founder's Playbook: Building an AI-Native Startup
- Agentic coding and persistent returns to expertise — Anthropic Economic Research, June 2026; the 400K-session usage study
- Introducing Claude Sonnet 5 — Sonnet 5 available in Claude Code from launch (July 2026)
- Agent Data Injection Attacks are Realistic Threats to AI Agents — Choi et al., arXiv 2607.05120; demonstrated ADI exploits (RCE via origin injection, supply-chain via tool-call injection, Slack origin injection) against Claude Code
- Boris Cherny: We Cut 80% of Claude Code's Prompt — Cherny, YC interview (2026-07-27,
practitioner-opinion): the harness residue (safety/permissions/static analysis/UI),SIMPLE=1and--system-prompt, dynamic workflows, and the Bun Zig→Rust rewrite in production - Rewriting Bun in Rust — Jarred Sumner, bun.com (2026-07-08,
case-study): Claude Code v2.1.181 (2026-06-17) as the first release running the Rust Bun port, with Linux p50 startup 517ms → 464ms - The Balkanization of Execution-Security Research for AI Coding Agents: Isolation, Access Control, and Time-of-Check-to-Time-of-Use Vulnerabilities — Mohammadreza Rashidi, arXiv 2607.05743, 2026-07-07,
empirical. §2.3 and Appendix B for the two Claude Code CVEs (verified directly against NIST NVD listings; exploits not reproduced) and the Pwn2Own Berlin 2026 Coding Agents category, its scoping rules, and its results. Claude Code also appears in the survey's corpus as a measured subject: OverEagerBench's 0.0% → 17.1% overeager-rate swing on prompt phrasing alone — that number is Qu et al.'s (arXiv 2605.18583), restated by the survey and not replicated by it; see Capability Gating Is Not Authorization - Claude Code Changelog — Anthropic, Claude Code CHANGELOG (
vendor-claim). Rolling document, snapshotted 2026-08-03, scoped to v2.1.200–2.1.220 with an explicit elision line marking where older entries were cut; the raw doc'spublished:is deliberately blank and the live file has since moved on. Release notes only — no rationale, no measurement, no telemetry. Used here to date capabilities: the three fan-out caps (2.1.212, 2.1.217), the spawn-depth reversal (2.1.217 → 2.1.219),workflowSizeGuidelineand the fewer-than-15-agents default (2.1.202, 2.1.219), the de-self-invoked review path (2.1.215) and its move to a background subagent (2.1.218), three worktree-isolation escapes (2.1.203, 2.1.210, 2.1.216), the two fabricated-agent-state fixes (2.1.205, 2.1.211), and Opus 5 becoming the default Opus model (2.1.219)
Cited by 94
- Anthropic×8
2025 December — acquired Bun, the JavaScript runtime Claude Code is built on; Jarred Sumner and the…
- Boris Cherny×6
Creator and tech lead of Claude Code at Anthropic. Engineer-by-background, author of Programming…
- Cowork×6
How does Cowork's harness compare to Claude Code's? Both surface skills, MCP, sub-agents — but the…
- Opinions on Using AI Tools & the Future of the Software Engineering Role×5
"Coding is solved (for me)." Boris writes 100% of his code via Claude Code, has logged 150-PR days,…
- Learning to Co-Work with AI: A Software Engineer's Field Guide×5
Cross-disciplinary range matters more than vertical depth. Cat reports every functional role on the…
- Bun×4
This is not in tension with "Claude Code has shipped the Rust port since v2.1.181": Claude Code…
- Claude Design×4
Handoff to Claude Code — push a design into production without re-exporting files and re-typing the…
- MCP and Computer Use×4
Created at Anthropic Labs (late 2024) alongside Claude Code and the desktop app by Boris's founding…
- Orchestration Sets Token Economics×4
Does the effect survive against a competent third-party baseline rather than a vendor's own frozen…
- Anthropic Labs×3
Per Anthropic's entity page and Boris Cherny: a first incarnation of the Labs incubator formed in…
- Build for the Next Model×3
The over-shoot he warns about — "too AGI-pilled for the moment." Ambrosino names the failure mode…
- Cat Wu×3
Head of Product for Claude Code and Cowork at Anthropic. Engineer for many years before a brief VC…
- Claude Character as Product×3
This is the rare-trusted-evaluator pattern: Cat says "there's a handful of people who are much…
- Dynamic Workflows: An Algebra for Agents×3
Most of the apparent contradiction dissolves against Sumner's own account, and should not be staged…
- Memory and Context Poisoning×3
Everything above is threat taxonomy from a defense framework. bad memory (University of Washington…
- Open-Ended Discovery Harnesses×3
Claude Code — the runtime for both SwarmResearch and CORAL; the harness is implemented entirely as…
- OpenHands×3
OpenHands is an open-source coding-agent platform, and also the company that maintains and sells…
- Orchestration-Plan Simulation×3
The claim that makes it usable is the sim-to-real one: simulated scores correlate with real Claude…
- Shared Harness, Differentiated Surfaces×3
Anthropic answered two: Claude Code for work whose output is code, Cowork for work whose output…
- Agent Identity and Authentication×2
Identity is the prerequisite for Blast Radius containment (identity-based isolation: services…
- Agentic Coding Work-Composition Shift×2
The longitudinal finding of Anthropic's 400K-session study: over just seven months (Oct 2025 → Apr…
- Agentic Honesty & Diligence×2
These are exactly the failure modes that make autonomous agentic coding risky: when a model writes…
- Agentic Misalignment (AM)×2
This describes Cowork, Claude Code in agent mode (especially --dangerously-skip-permissions),…
- AI as Primary Author×2
Claude Code — agent mode (apply-changes-directly) is named as a primary driver of the 20%→60%…
- AI-Native Startup Lifecycle×2
the founders playbook building an ai native startup (Anthropic, May 2026). 36-page ebook organized…
- AI Usage Cadences×2
> Evidence note. empirical — privacy-preserving classifiers over continuously-sampled Claude.ai,…
- Anthropic Economic Index×2
The Anthropic Economic Index (AEI) is Anthropic's ongoing economic-research program studying how AI…
- Claude Sonnet 5×2
API model id claude-sonnet-5; the default model for Free and Pro plans, and available to Max, Team,…
- Codex×2
Claude Code — the Anthropic-side peer harness Codex is compared against (same five loop primitives,…
- Cursor×2
Authorship telemetry — Faros attributes the 20% → 60% rise in AI-code acceptance substantially to…
- Engineer PM Convergence×2
Both Boris Cherny (Sequoia AI Ascent 2026) and Cat Wu (Lenny's Podcast, April 2026) report the same…
- Evals as Product Spec×2
The Claude Code team at lunchtime vibe-checks — feedback like "this model isn't testing itself…
- FastContext×2
FastContext is the open, published counterpart to the proprietary subagent mechanisms inside Claude…
- Fiona Fung×2
Leads engineering and product for Claude Code and Cowork at Anthropic; previously built and led…
- Harness Build-vs-Buy×2
Claude Code — conspicuously absent from the comparison, being closed-source; the shrinkage claims…
- Kimi (Moonshot AI)×2
K3's evaluation footnotes are the most granular harness disclosure in this corpus, and they are…
- Loop Engineering×2
Loop engineering is replacing yourself as the person who prompts the agent — you design the system…
- OpenAI×2
On agent orchestration, Symphony/Codex (OpenAI) and Claude Code (Anthropic) are the two reference…
- Planning / Execution Division of Labor×2
Anthropic's 400K-session study supplies the empirical shape of human–agent collaboration in agentic…
- Repository Exploration Subagent×2
This is the open, published mirror of the proprietary "subagent" features shipping in Claude Code,…
- Returns to Expertise in Agentic Coding×2
The headline finding of Anthropic's economic-research report Agentic coding and persistent returns…
- Thariq Shihipar×2
Engineer on the Claude Code team at Anthropic. Source of the "HTML is the new markdown" thesis (see…
- Thinking Machines Lab×2
Their harness-dissolves-into-model stance is the same shape as Harness Shrinkage As Models Improve…
- Unknowns as the Agentic Bottleneck×2
The launch video for Fable was edited entirely by Claude Code, in a domain Thariq says he is "by no…
- Write-Then-Trusted×2
Claude Code / Codex / Google Deepmind — the affected agent products; the .claude hook-configuration…
- Zero-Friction Scope Creep×2
A failure mode identified in the founders playbook building an ai native startup: the traditional…
- Agent Data Injection (ADI)
Claude Code — the agent the RCE and supply-chain PoCs were demonstrated against; also the…
- Agent Harness Engineering
Legibility becomes the thing you tune per surface, and it has a cost. Sub-agent transcripts are…
- Agent Loop Pattern
Used inside Claude Code and Cowork. Mechanism: agent calls cron (via tool) to schedule a job at a…
- Agent-Native Infrastructure
Claude Code — the agent that consumes copy-paste skills and drives computer-use actuators
- Agent Review Comment Resolution
> Evidence note. empirical, confirmed on full read, with four qualifications that travel with every…
- Agentic Technical Debt
Debt that *compounds* (not just accumulates) because each agentic-coding session re-derives architectural decisions wit…
- AI Accelerating AI Development
Claude writes most of Anthropic's code. As of May 2026, >80% of merged code is Claude-authored, up…
- AI Native Product Cadence
Does the cadence scale beyond ~100 people? Anthropic itself is bigger (~30-40 PMs alone), but the…
- AI-Native Product Org Bottlenecks
For a small Claude Code-style team, the visible bottleneck is taste. The team can move quickly…
- Andrej Karpathy
Claude Code — names "cloud code / codex / open claw" as the agentic-coding surfaces he lives in
- Building Is Cheap, Arguing Is Expensive
Fiona Fung's rule for technical debates once agentic coding makes generation nearly free: "in…
- Capability Gating Is Not Authorization
Permissive-framework agents (Claude Code, Codex CLI, Gemini CLI) show substantially higher…
- Claude Code Best Practices
Anthropic's guide to effective Claude Code usage: context management, verification-driven development, explore→plan→cod…
- Claude Fable 5
Claude Code — the agentic runtime Mythos-class coding gains flow through
- Claude Opus 4.7
GA frontier model from Anthropic; direct upgrade to 4.6 at same price; literal instruction following, 1.0–1.35× tokeniz…
- Compounding Data Moat
Claude Code / Cowork / Anthropic — Skills, MCP integrations, and APIs are the surfaces this moat is…
- Compounding Loop Optimization
The handoff to Claude Code feature exists because the team kept re-typing, across tools, all the…
- Compute Allocator
Claude Code — the tool through which the allocator spends compute; increasingly serves "decide what…
- Cost-per-Task Over Cost-per-Token
Every source above answers which model or harness is cheaper. Simon Willison (2026-07-03,…
- Design by Selection
Not for shipping production software. "If you're shipping production software, stick with Claude…
- Disposable Micro-Apps
Claude Code — the product used to generate the throwaway UIs on demand
- Where Does Agent Harness Work Remain Durable as Models Improve?
Harness Shrinkage As Models Improve gives the negative space. Early Claude Code needed aggressive…
- Emergent
Indian AI coding / app-builder startup ("basically getting an engineering team in a box," per…
- Firm AI-Spend Intensity and Headcount Growth
US software-development postings +15% since Claude Code's launch (the series is indexed to 100 at…
- Founder as Agent Orchestrator
Claude Code / Cowork / Anthropic — the surfaces orchestration runs on
- The Future of Agent Interfaces
MCP's durable value is simple: it makes external systems agent-legible. A server exposes typed…
- Gemini Enterprise Agent Platform
The Google-side counterpart to Claude Code's and Codex's agent stacks — but where those entries…
- Harness Shrinkage as Models Improve
The harness — prompts, skills, scaffolding, mechanical verification — exists to compensate for what…
- HTML as the New Markdown
Claude Code — the product these HTML-artifact workflows run in, demonstrated from inside the Claude…
- Jarred Sumner
Everything Sumner reports here is case-study with an explicit disclosure: an Anthropic employee,…
- Latent Capability Overhang
Boris Cherny (YC interview, July 2026, practitioner-opinion) names the same gap from the product…
- Living Design System
Claude Code — extracts the design DNA from repos and renders design_system.html; Claude Design…
- Managers as ICs
Fiona Fung's "spicy" org change on Claude Code: every manager starts as an IC first and stays…
- MCP Tool Poisoning
Claude Code — named as a prominent MCP host; the class of agent this threat targets, and one of the…
- Entities — People, Orgs, Tools & Projects
Claude Code — Anthropic's agentic coding product; created by Boris Cherny late 2024;…
- Nate Parrott
Claude Code — was the sole product designer on Claude Code for VS Code; also the…
- Optimizer–Evaluator Decoupling
Claude Code v2.1.215 — the rule enforced by removing an affordance rather than by design. The…
- Orchestration vs Employee Framing: Reconciling the Founder's Playbook with HBR's Accountability Evidence
The playbook's lifecycle structure — Idea / MVP / Launch / Scale, each stage compressing what used…
- Parallel Agent Orchestration
Two numbers from it belong on this page. Fan-out width should vary with depth, and no fixed setting…
- Peter Steinberger
This is the seed of Loop Engineering — the shift from human-as-prompter to human-as-loop-designer.…
- Problem-Solution Fit Discipline
Idea-stage thesis: three defenses against premature building (time, resources, belief friction) all eroded; AI as devil…
- Recursive Self-Improvement
2025–2026 — Coding agents. Agents write and edit whole files on their own (Claude Code launches Feb…
- Same-Model Review Blindness
Two datasets of 500 pull requests each, one authored by Claude Code and one by Codex, identified by…
- Security Debt of Agent-Generated Code
Agent and language stratification (Figure 4, corpus average 38.9%): Copilot 45.5%, Claude Code…
- Standardize the Infrastructure, Not the Tools
The mechanism is an internal LLM proxy — a single gateway every AI request passes through before…
- Verification as the New Bottleneck
Fiona Fung's central claim from running Claude Code + Cowork engineering: for years, engineering…
- When Does Verification Quality Determine Whether AI Automation Works?
That is why Verification As The New Bottleneck is the org-level consequence of the Verifiability…
- Vibe Coding vs. Agentic Engineering
Vibe coding raises the floor (anyone builds); agentic engineering preserves the quality bar while going faster; ">10x a…
Related articles
- Harness Shrinkage as Models Improve
Prompt scaffolding shrinks each model release; Cat Wu's pruning discipline; Boris Cherny "100 lines of code a year from…
- Anthropic
AI safety company / vendor of Claude; mission-as-tiebreaker culture; ~30–40 PMs across teams; Mike Krieger leads Labs r…
- Open Questions Backlog
_456 actionable open questions across 205 pages · 107 predictions · 9 notes · 147 in progress · 69 watching (entities),…
- Boris Cherny
Creator of Claude Code at Anthropic; phone-driven workflow with hundreds of agents; primary advocate of `/loop` primiti…
- Verification as the New Bottleneck
Fiona Fung: coding is no longer the bottleneck — verification, review, maintenance are; shift-left; TDD loses its tax;…
