Claude Code for startups: 15 companies, 5 rules, and a roll-out checklist
Anthropic looks back at 15 high-growth startups. Open the case files to see how agentic coding moved into prototyping, R&D, validation, rebuilds, and productization.
Anthropic has published an official guide to Claude Code for startups, documenting how 15 high-growth companies used agentic coding to make a 10-person team deliver at the scale of a much larger organization.
- ClickHouse: feature delivery up 30%; two custom agents for flaky-test debugging and test coverage completion became the #2 and #3 contributors to the codebase.
- Omni: engineering productivity rose by 2 to 3 times.
- Clay: 100% automated bug triage; agents also propose code fixes after initial investigation.
- Artemis Security: more than 6,000 PRs delivered per week.
More features shipped
Engineering productivity
Automated bug triage
Weekly PRs
The guide breaks down how these companies integrated AI coding tools into prototyping, development, on-call, validation, refactoring, and productization — and distills the lessons into five rules.
Key takeaways
- Let the person who owns the problem build the 0→1. Marketers, legal, sales, and doctors can produce working prototypes; engineering, design, security, and compliance review and productize them.
- Automate mechanical tasks with checkable results first. PR review, bug triage, test fixes, coverage completion, incident triage, and batch data analysis all have clear inputs and verifiable outputs.
- Agent permissions should be gated by validation capability.
CLAUDE.mdstores rules, Loops handle repeatable execution, Hooks provide hard gates, and evals plus human escalation catch drift and block regressions. - Keep the cost of rebuilding low. Worktrees isolate old and new versions, Plan Mode reviews the approach first, the same evals gate the merge, and the old path is deleted after migration.
- Productize only after internal validation. Teams run internal agents on real data, permissions, and workflows first; then decide what to expose to customers based on the failure record.
How 15 companies put Claude Code to work
The same tool landed in very different places across these 15 companies: some let lawyers and marketers build products directly, some handed testing, code review, and on-call to agents, some rebuilt their eval systems, and others used Claude Code to design their own AI products.
15 companies, five rules in action
Click a company to see details; click a rule to filter matching teams. All 15 companies are shown by default.
Two test agents are the repo's 2nd and 3rd largest contributors; the team also uses Claude Code to iterate on the SQL console agent and AI SRE.
- Artemis Security6,000+ PRs / week。Offload mechanical work to agents, while using test infrastructure, codebase organization, and team knowledge systems to support end-to-end delivery.
- CainexMedical coding verification loop。Auditors check coding and reasoning, log corrections by error type; Claude Code revises general principles, then runs the golden set and random samples.
- Clay100% automated bug triage。Quarterly reviews move non-technical employees' prototypes into the roadmap; the Bug Agent handles initial screening through code change suggestions, and repeatedly rebuilds the same feature.
- ClickHouse30% more features shipped。Two test agents are the repo's 2nd and 3rd largest contributors; the team also uses Claude Code to iterate on the SQL console agent and AI SRE.
- Cognition6–12 month system lifespan。Assume today's AI systems may be obsolete within half a year to a year, and design architecture ahead of future model capabilities.
- Commure~13 tickets in parallel。Subagents own tickets and PRs; another Skill automatically scans and deletes feature flags and old code that have been fully released.
- CrosbyThousands of legal docs summarized in parallel。Integrate Claude Code into tools lawyers already use, let lawyers prototype products directly, and use subagents to batch-process legal materials.
- EmergentMarkdown completes first-day environment setup。New hires have Claude read a Markdown file to set up the environment; a shared Skills repo stores database, schema, and company context.
- HarveyPlatform architecture redone for new model capabilities。Each wave of reasoning, automation, planning, and orchestration improvements triggers a platform redesign; discard old architecture when needed.
- HeidiDomain experts PR directly + compliance review。Those who know the problem best submit the first PR; automated review then checks against established technical and compliance frameworks, flags critical issues, and routes them to specialized reviewers.
- HiggsfieldModel integration: days → hours。New video and image models need Skills, evals, routing, and tests before production; Claude Code compresses this integration into the same working session.
- Omni2–3× engineering productivity。Show prototypes to the whole team in Slack, let engineers join customer interviews; the product side borrows file-based context and parallel harnesses.
- ParahelpNon-technical roles ship UI directly。While engineers accelerate, non-technical co-founders also start submitting UI changes and other product improvements directly.
- TranslucentMulti-perspective code review + agent marketplace。Internal review agents check the same change in parallel and merge conclusions; engineering, delivery, and sales each use dedicated agents.
- Zingage567 lines of team invariants。When Claude's code looks plausible but strays from the architecture, the team writes down the problem framework, invariants, and proof methods to constrain every session.
Rule One: hand the 0→1 to the people who know the problem best
“Everyone ships” opens the door to working prototypes and first-pass PRs. Marketers, legal, sales, and doctors can turn their domain knowledge into a runnable approach; designers, engineers, security, and compliance handle their own specialties.
Thomas Kelly, co-founder of Heidi, calls the old process a “game of telephone”: the person with the idea tells the product manager, who tells the designer, who passes it to the engineer. Weeks later, the delivered result can drift far from the original problem. With Claude Code, the problem owner creates the PR first, then brings in design and engineering for experience, architecture, and production readiness.
