Sources#
- Anthropic's Boris Cherny: Why Coding Is Solved, and What Comes Next
- Auto mode for Claude Code
- Best Practices for Claude Code
- 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)
- Introducing Claude Opus 4.7
- 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.
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 - 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
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
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
- Claude Code Auto Mode — permission classifier
- Claude Opus 4.7 — current model
- Mythos Model — preview model used internally
- Agent Loop Pattern — loop primitive
- 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; Claude Design's "handoff to Claude Code" sends designs back here for production
- 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
- 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)
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
Cited by 52
- Agent Identity and Authentication
The foundation control for agentic Zero Trust: cryptographically-rooted per-agent identity (→X.509→hardware attestation…
- Agent Loop Pattern
`/loop` (cron-scheduled) and Ralph Wiggum (backlog-draining) loops as next-generation agent primitive; AFK execution, p…
- Agent-Native Infrastructure
The world is still built for humans and must be rewritten for agents; "what do I copy-paste to my agent?"; sensors/actu…
- Agentic Honesty & Diligence
As models get more capable, failing to surface decision-relevant information shifts from a capability failure to an ali…
- Agentic Misalignment (AM)
Lynch et al. 2025 eval and threat model: LLM email-agent discovers it may be deleted, can take harmful actions; OOD rel…
- Agentic Technical Debt
Debt that *compounds* (not just accumulates) because each agentic-coding session re-derives architectural decisions wit…
- AI Accelerating AI Development
The empirical core of *When AI builds itself*: measured evidence AI already speeds AI R&D at Anthropic — >80% of merged…
- AI Native Product Cadence
Cat Wu's 6mo→1mo→1day cadence at Anthropic: research-preview branding, mission-as-tiebreaker, evergreen launch room, li…
- AI-Native Product Org Bottlenecks
AI-native product-org bottleneck is accountable taste at speed: dogfooding trains taste, evals encode it, and accountab…
- AI-Native Startup Lifecycle
Anthropic's May 2026 reframing of Idea/MVP/Launch/Scale assuming AI infrastructure: each stage's headcount/capital/skil…
- Opinions on Using AI Tools & the Future of the Software Engineering Role
Debate map of four stances on using AI tools (bullish-insider / pragmatist-practitioner / skeptic-governance / architec…
- Andrej Karpathy
Co-founder OpenAI, ex-Tesla AI, Eureka Labs; coined "vibe coding," Software 1/2/3.0, "ghosts not animals," "agentic eng…
- Anthropic
AI safety company / vendor of Claude; mission-as-tiebreaker culture; ~30–40 PMs across teams; Mike Krieger leads Labs r…
- Anthropic Labs
Anthropic's internal incubator — a 'bet factory' of ~a dozen tiny teams exploring the model frontier with lean-startup…
- Boris Cherny
Creator of Claude Code at Anthropic; phone-driven workflow with hundreds of agents; primary advocate of `/loop` primiti…
- Build for the Next Model
Prototype the thing that almost works, not the thing that already works: bet that the next concrete model release (not…
- Building Is Cheap, Arguing Is Expensive
"In technical debate, code wins": generate three PRs vs whiteboard; prototype over design doc; reduce design docs
- Cat Wu
Head of Product for Claude Code and Cowork at Anthropic; primary articulator of AI-native product cadence and engineer-…
- Claude Character as Product
Personality as load-bearing product surface; Amanda's role at Anthropic; lunchtime vibe-checks as eval discipline; the…
- Claude Code Best Practices
Anthropic's guide to effective Claude Code usage: context management, verification-driven development, explore→plan→cod…
- Claude Design
Anthropic Labs product (research preview, ~April 2026) for collaborating with Claude on polished visual artifacts — des…
- Claude Fable 5
Anthropic's first generally-available Mythos-class model (June 2026) — state-of-the-art on nearly all benchmarks; the s…
- 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
Anthropic's prescription for Scale-stage defensibility: time-locked behavioral fingerprint + domain-encoded edge cases…
- Compounding Loop Optimization
Dan Carey's discipline of instrumenting and automating every recurring step of the build loop — because when internal t…
- Compute Allocator
The human's evolving role: deciding what's worth spending compute on; ~1% of generated tokens ship, 99% is scaffolding…
- Cowork
Anthropic's non-code knowledge-work agent product; sibling to Claude Code; output is decks/inbox/dossiers; same MCP/com…
- Disposable Micro-Apps
Throwaway custom UIs built per-task to edit a plan ("micro-software on top of micro-software"); copy-back-to-markdown;…
- Where Does Agent Harness Work Remain Durable as Models Improve?
Durable harness work lives at external-reality boundaries: repo-local source of truth, mechanical verification, context…
- Engineer PM Convergence
Generalists across disciplines; product taste as bottleneck skill; Anthropic Claude Code team as case study; "just do t…
- Evals as Product Spec
Cat Wu's framing of evals as the emerging core PM skill: ten great evals beats a hundred mediocre; encode what done loo…
- Fiona Fung
Leads engineering + product for Claude Code and Cowork at Anthropic (ex-Meta/Microsoft); "what served you prior may no…
- Founder as Agent Orchestrator
Founder role shift: less individual contributor, more orchestrator of specialized AI assistants; non-technical founders…
- The Future of Agent Interfaces
Interface future is layered: native interaction models for human collaboration, MCP/APIs for structured action, app pro…
- 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…
- HTML as the New Markdown
Thariq Shihipar's thesis: as models improve, thousand-line markdown plans overwhelm the *human*; HTML artifacts (visual…
- Learning to Co-Work with AI: A Software Engineer's Field Guide
Field guide for software engineers in the AI era: 6 skill clusters (taste, harness, alignment-first planning, agent-fri…
- Living Design System
`design_system.html` extracted from repos as a portable, human- and machine-readable source of truth; component playgro…
- Managers as ICs
Every Claude Code manager starts as an IC; flat org; agentic coding collapsed the onboarding cost that pushed managers…
- MCP and Computer Use
Anthropic's two complementary connector mechanisms: MCP for structured programmatic access (Salesforce/Drive/Gmail/Slac…
- Memory and Context Poisoning
Corruption of persistent agent memory that influences behavior long after the initial injection; includes RAG poisoning…
- Entities — People, Orgs, Tools & Projects
Map of Content for all 32 entity pages. See Home for concept domains.
- Open Questions Backlog
_96 pages with open questions, as of 2026-06-14._
- Orchestration vs Employee Framing: Reconciling the Founder's Playbook with HBR's Accountability Evidence
Reconciles the Founder's Playbook orchestration framings with HBR Kropp et al.'s accountability evidence; "orchestratio…
- Problem-Solution Fit Discipline
Idea-stage thesis: three defenses against premature building (time, resources, belief friction) all eroded; AI as devil…
- Recursive Self-Improvement
An AI system autonomously designing and developing its own successor; Anthropic Institute's *When AI builds itself* arg…
- Thariq Shihipar
Engineer on the Claude Code team at Anthropic; "HTML is the new markdown" and "compute allocator" framings; three HTML-…
- Thinking Machines Lab
AI research lab behind interaction models (May 2026); harness-dissolves-into-model thesis; upstreamed streaming-session…
- Verification as the New Bottleneck
Fiona Fung: coding is no longer the bottleneck — verification, review, maintenance are; shift-left; TDD loses its tax;…
- When Does Verification Quality Determine Whether AI Automation Works?
Verification-quality ladder from Lean/formal proof search through software CI and vulnerability reproduction; autonomy…
- Vibe Coding vs. Agentic Engineering
Vibe coding raises the floor (anyone builds); agentic engineering preserves the quality bar while going faster; ">10x a…
- Zero-Friction Scope Creep
MVP failure mode when agentic coding removes the cost-based forcing function against scope creep; antidote is written s…
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…
- Engineer PM Convergence
Generalists across disciplines; product taste as bottleneck skill; Anthropic Claude Code team as case study; "just do t…
- Boris Cherny
Creator of Claude Code at Anthropic; phone-driven workflow with hundreds of agents; primary advocate of `/loop` primiti…
- Cowork
Anthropic's non-code knowledge-work agent product; sibling to Claude Code; output is decks/inbox/dossiers; same MCP/com…
