Industry recommendations for fully leveraged, AI-native engineering and builder teams — roles, team & process, artifacts, tooling, and quality.
A research summary compiled July 2026. Every load-bearing claim below was fact-checked against primary sources and survived a three-reviewer adversarial verification pass; figures that are vendor self-reported or third-party estimates are labeled as such. Sources are footnoted throughout, with a full list at the end. Where the evidence is thin or contested, this page says so rather than rounding up.
Between 2024 and 2026 a distinct playbook emerged for software teams that treat AI agents as the primary producers of code, with humans as specifiers, reviewers, and orchestrators. The clearest evidence comes from the organizations furthest along. Anthropic's Claude Code team reports that around 90% of Claude Code is written by Claude Code itself.12 Google, Microsoft, and Robinhood have all put numbers on it in public: more than a quarter of new code at Google is AI-generated,13 roughly 20–30% of the code in Microsoft's repositories,14 and about half of Robinhood's new code.15 GitHub open-sourced a toolkit to make spec-driven development the default agent workflow.5 And a wave of companies — Shopify, Duolingo, Amazon, Klarna — published explicit AI-first mandates or hard efficiency numbers.
The direction of travel is now an analyst consensus, not just a lab practice: Gartner projects that 60% of organizations will adopt smaller "tiny" software-engineering teams by 2029, up from 15% in 2026 — framing it explicitly as a restructuring around AI, not a headcount cut.67
The playbook, in one paragraph: write specs, not code — plan-driven and spec-driven development replace ad-hoc prompting; maintain agent context files as first-class artifacts — CLAUDE.md / AGENTS.md checked into git and reviewed like code; give agents machine-checkable verification loops — tests, builds, screenshots, browser automation, on the rule "if you can't verify it, don't ship it";1 review adversarially with fresh contexts — an agent that just wrote the code is biased toward it; blur role boundaries deliberately — PMs, designers, and data scientists ship working software; and structure the org around forward deployment — engineers embedded where the problem is, building with the product rather than advising about it.
A critical correction runs through the independent research. AI amplifies existing organizational strengths and dysfunctions rather than fixing them;27 a controlled trial found experienced developers were measurably slower with AI even while believing they were faster;25 and code-quality metrics show duplication rising and refactoring falling in the AI era.28 The organizations reporting durable gains are the ones that built the harness — specs, tests, review, sandboxes — around the model. Quality in an AI-native SDLC is an engineered property of the process, not a property of the model.
Two terms anchor this report.
Fully leveraged teams are small teams whose output is multiplied by AI agents doing the bulk of implementation. The canonical example is Anthropic's own Claude Code team: its creator, Boris Cherny, says around 90% of Claude Code is written with Claude Code, and that he personally ships 20–30 pull requests a day by running about five Claude instances in parallel.12 The economic signature of full leverage is extreme revenue-per-employee. Gumroad ran, as of January 2021, with zero full-time employees — including its CEO — a total of 25 part-time contractors, and $11M in annualized revenue growing 85% year-over-year.22 Midjourney reportedly reached roughly $200M in revenue in 2023 with on the order of 40 people, entirely self-funded.23 (Cursor-maker Anysphere is widely reported to be the fastest software company ever to $100M ARR with a small team; that specific claim is repeated across the tech press but was not independently confirmed in this research, so treat it as reported, not verified.)
Forward-deployed engineering (FDE) is an organizational model — originated by Palantir — in which engineers embed directly with customers to build production systems on the company's platform, rather than selling software and leaving integration to the buyer. Palantir's own definition: a Forward Deployed Software Engineer (internally, a "Delta") "embeds directly with our customers to configure Palantir's existing software platforms," and where "a traditional software engineer, or Dev, focuses on creating a single capability that can be used for many customers, FDSEs focus on enabling many capabilities for a single customer" — explicitly "unlike consultants," because they assemble out-of-the-box platform components rather than rebuilding from scratch.8 In 2024–2026 the frontier AI labs adopted the model. OpenAI stood up a dedicated FDE organization whose engineers "own discovery, technical scoping, system design, build, and production rollout" and are measured by "eval-driven feedback that changes product and model roadmaps."9 Anthropic runs a named FDE org — the Claude Agentic Solutions team, "Anthropic's forward-deployed engine — embedding directly with Fortune 500 enterprises to architect, build, and deploy production AI agents," organized into industry verticals whose FDE managers review statements of work before signature and own delivery-risk escalation.10 The FDE model matters to the AI-native SDLC because it treats deployment into a real environment — not model capability — as the bottleneck, which is exactly what the engineering evidence shows (see § Quality).
Anthropic's enterprise guidance and internal practice document the same shift from four directions:32
curl checks yet fail to notice that features didn't actually work end-to-end; giving agents real end-to-end testing tools "dramatically improved performance."4One necessary caveat, carried straight from the verification pass: claims about autonomous role replacement are partly aspirational. Autonomous incident response, for instance, remains weak — IBM's ITBench (2025) found state-of-the-art models resolved only about 14% of realistic site-reliability scenarios — so "agents that resolve on-call incidents" should be read as assist, not replace.
Recommendations — roles
The converged process standard across vendors is spec/plan-driven development. Two independent formulations landed on the same shape:
SPEC.md that "ends with an end-to-end verification step," then execute the spec in a fresh session. (Anthropic bounds this: skip plan mode for one-sentence diffs.)1How small, and made of what? Gartner's July 2026 research puts numbers on the "tiny team" pattern: a typical reorganized team is 4–5 members, with 2–3 becoming more common as AI capabilities and engineer skills mature, and it expects 60% of organizations to run this way by 2029 (up from 15% today).67 The composition is telling — not a pod of interchangeable coders, but a small cross-functional cell: a product manager, a UX/agent-experience designer, and at least one AI-native software engineer. Notably, 75% of software-engineering leaders still expect headcount to hold steady or grow; Gartner frames the change as re-composition, not reduction ("AI is reshaping software engineering — not by replacing developers, but by creating a surge in demand for intelligent applications and new engineering roles").7 This is the same shape the leverage data implies from the other direction: Gumroad's 25-contractor structure and Midjourney's ~40-person org are the extreme tail of a distribution the median team is now moving along.
The unit of work changes accordingly: not tickets assigned to engineers, but specs dispatched to agents, with humans at the two ends — writing the spec and verifying the result. Anthropic's harness research shows why the middle cannot be skipped: as of late 2025, even a frontier model (Claude Opus 4.5 on the Agent SDK, looping across multiple context windows) "will fall short of building a production-quality web app if it's only given a high-level prompt." What closes the gap is process engineering — an initializer agent that sets up the environment (an init.sh, a progress file, an initial commit, and a comprehensive feature list with 200+ items all initially failing), followed by coding agents making incremental, verified progress session after session.4
Anthropic's published adoption sequence:3
Process change at scale has come with explicit executive mandates:
Recommendations — team & process
The artifact hierarchy inverts: the spec and the agent-context file become load-bearing; the code becomes (partially) generated output.
passes field — "It is unacceptable to remove or edit tests because this could lead to missing or buggy functionality." The test list is the quality ratchet.4Recommendations — artifacts
The documented, production-grade mechanics (from Anthropic's published tooling guidance, which doubles as a description of how its own teams work):1
claude -p) wired into CI pipelines and pre-commit hooks — the agent as a build step, not just an IDE feature.--allowedTools permission scoping for unattended runs.Enterprise-scale corroboration that agents-in-the-pipeline pay off: Amazon reported that its Amazon Q agent cut the average Java 17 upgrade from about 50 developer-days to a few hours, saved the equivalent of 4,500 developer-years, upgraded more than half of its production Java systems in under six months with 79% of the auto-generated code reviews shipped unchanged, and produced an estimated $260M in annualized efficiency gains.20 The oldest controlled data point in the genre — a 2023 randomized trial of GitHub Copilot — found the AI-assisted group completed a programming task 55.8% faster than the control group.24 (Both are useful and both are qualified: Amazon's numbers are self-reported and vendor-promotional; the Copilot study is a single greenfield task, and later independent research complicates the "faster" story — see § Quality.)
Recommendations — tooling
The consistent answer from teams shipping mostly-AI-written code is machine-checkable verification loops plus adversarial review — not more manual inspection:
passes, they never delete tests.4One self-reported internal outcome: Anthropic's security-engineering team resolves incident-debugging problems roughly 2–3× faster with Claude Code (10–15 minutes of manual stack-trace scanning down to about 5).2
This is where conviction needs calibration. The strongest non-vendor measurements cut against the hype:
In March 2025 Anthropic CEO Dario Amodei predicted that within three-to-six months "AI is writing 90 percent of the code," and within twelve months "AI is writing essentially all of the code."16 By mid-2026 the first horizon had passed; the self-reported code-share figures from Google (>25%), Microsoft (20–30%), and Robinhood (~50%) are real and rising but well short of "essentially all," and they measure AI involvement (including autocomplete acceptance), not autonomous authorship. The honest reading: AI writes a large and growing share of code, humans still specify and verify, and the "90%" figures that hold up — like Claude Code's — are for tightly-scoped, agent-friendly codebases built deliberately for that purpose, not for arbitrary enterprise software.
Quality in an AI-native SDLC is an engineered property of the harness, not a property of the model. The same frontier model produces production-grade or slop-grade output depending on whether it runs inside spec contracts, immutable tests, fresh-context review, sandboxes, and end-to-end checks. The organizations reporting durable gains built the harness; the measured regressions (METR, DORA, GitClear) concentrate where AI was adopted as raw generation without verification infrastructure.
Recommendations — quality
| Company / source | Datapoint (as stated by source) | Type |
|---|---|---|
| Gartner | 60% of orgs on smaller "tiny teams" by 2029 (up from 15%); teams of 4–5 (some 2–3) (Jul 2026)6 | Analyst projection |
| Anthropic (Cherny) | ~90% of Claude Code written by Claude Code; 20–30 PRs/day via ~5 parallel instances12 | Self-reported |
| Anthropic | FDE org ("Claude Agentic Solutions") embedding in Fortune 500s10 | Job postings |
| Google (Pichai) | >25% of new code AI-generated, reviewed by engineers (Oct 2024)13 | CEO statement |
| Microsoft (Nadella) | ~20–30% of code in repos AI-written; more in Python, less in C++ (Apr 2025)14 | CEO statement |
| Robinhood (Tenev) | ~50% of new code AI-generated; "close to 100%" engineer adoption (Jul 2025)15 | CEO statement |
| GitHub | Spec Kit open-sourced; specs as executable source of truth (Sept 2025)5 | First-party |
| Shopify (Lütke) | Reflexive AI use a baseline expectation; prove AI can't do it before headcount (Apr 2025)17 | CEO memo |
| Duolingo (von Ahn) | "AI-first"; later partial walk-back (Apr–May 2025)18 | CEO memo |
| Amazon (Jassy) | Amazon Q: ~4,500 developer-years and ~$260M saved on Java upgrades (Aug 2024)20 | CEO / AWS blog |
| Klarna | AI assistant = work of 700 agents; 2025 quality walk-back21 | Company statements |
| Gumroad (Lavingia) | 0 full-time employees, 25 contractors, $11M annualized revenue (Jan 2021)22 | Founder essay |
| Midjourney | ~$200M revenue in 2023, ~40 people (est., self-funded)23 | Third-party estimate |
| GitHub Copilot RCT | Treatment group 55.8% faster on one greenfield task (2023)24 | Vendor-affiliated RCT |
| METR | Experienced devs 19% slower with AI, believed faster (Jul 2025)25 | Independent RCT |
| DORA 2024 / 2025 | AI amplifies org strengths/dysfunctions; throughput/stability dips2627 | Independent survey |
| GitClear | Duplication up, refactoring down in AI-assisted code28 | Independent analysis |
| Stanford (Denisov-Blanch) | Gains +20–25% (simple) to ~flat/negative (complex/legacy)29 | Academic study |
Full URLs are in the numbered footnote list below (rendered automatically). Grouped here for reading order:
Anthropic & GitHub (primary practice): Claude Code best practices1 · How Anthropic teams use Claude Code2 · Scaling agentic coding across your organization3 · Effective harnesses for long-running agents4 · GitHub Spec Kit5
Team structure & role shifts: Gartner — 60% on smaller teams by 20296 · CIO Dive — engineering teams will shrink as AI shifts responsibilities7
Forward-deployed engineering: Palantir — Dev vs Delta8 · OpenAI — Forward Deployed Engineer9 · Anthropic — Manager of Forward Deployed Engineering10 · The Rise of the AI Engineer11
Code-share & predictions: Cherny — How Claude Code is built12 · Pichai — Alphabet Q3 202413 · Nadella — LlamaCon14 · Tenev — 20VC via Fortune15 · Amodei — CFR CEO Speaker Series16
Mandates & enterprise outcomes: Lütke / Shopify memo17 · Duolingo AI-first18 · von Ahn clarification19 · Amazon Q — $260M milestone20 · Klarna AI assistant21 · Gumroad — no full-time employees22 · Midjourney (Sacra)23
Independent research on quality & velocity: GitHub Copilot RCT (arXiv 2302.06590)24 · METR — AI and experienced OSS devs25 · DORA 202426 · DORA 202527 · GitClear — AI code quality28 · Stanford / Denisov-Blanch29 · Stack Overflow 2025 survey30 · Replit incident — Masad31
Compiled July 2026 · sdlc.xeb.ai · Corrections welcome.
Claude Code Best Practices (Anthropic). https://code.claude.com/docs/en/best-practices ↩↩↩↩↩↩↩↩↩↩
How Anthropic teams use Claude Code (Anthropic, July 2025). https://claude.com/blog/how-anthropic-teams-use-claude-code ↩↩↩↩↩
Scaling Agentic Coding Across Your Organization (Anthropic Applied AI, Sept 2025, PDF). https://resources.anthropic.com/hubfs/Scaling%20agentic%20coding%20across%20your%20organization.pdf ↩↩↩↩↩↩↩
Effective harnesses for long-running agents (Anthropic Engineering, Nov 2025). https://www.anthropic.com/engineering/effective-harnesses-for-long-running-agents ↩↩↩↩↩↩↩
Spec-driven development with AI: get started with a new open source toolkit (GitHub Blog, Sept 2025). https://github.blog/ai-and-ml/generative-ai/spec-driven-development-with-ai-get-started-with-a-new-open-source-toolkit/ — repo: https://github.com/github/spec-kit ↩↩↩↩↩
Gartner Predicts 60% of Organizations Will Adopt Smaller Software Engineering Teams by 2029 (Gartner press release, July 7, 2026). https://www.gartner.com/en/newsroom/press-releases/2026-07-07-gartner-predicts-60-percent-of-organizations-will-adopt-smaller-software-engineering-teams-by-2029 ↩↩↩↩↩↩
Paige Gross, "Engineering teams will shrink as AI shifts responsibilities" (CIO Dive, July 10, 2026) — reporting Gartner research, with analyst Aliyah Camacho. https://www.ciodive.com/news/engineering-teams-shrink-from-ai-responsibilities/824995/ ↩↩↩↩↩↩
A Day in the Life of a Palantir Forward Deployed Software Engineer / Dev versus Delta (Palantir Blog, Nov 2020). https://blog.palantir.com/a-day-in-the-life-of-a-palantir-forward-deployed-software-engineer-45ef2de257b1 ↩↩
Forward Deployed Engineer (OpenAI Careers, 2025). https://openai.com/careers/forward-deployed-engineer-(fde)-sf-san-francisco/ ↩↩
Manager of Forward Deployed Engineering, Applied AI (Anthropic job posting, 2026). https://jobs.generalcatalyst.com/companies/anthropic/jobs/76278322-manager-of-forward-deployed-engineering ↩↩↩↩↩
The Rise of the AI Engineer (Latent Space, 2023). https://www.latent.space/p/ai-engineer ↩↩
How Claude Code is built (The Pragmatic Engineer, interview with Boris Cherny). https://newsletter.pragmaticengineer.com/p/how-claude-code-is-built — see also Cherny on X (Dec 2025): https://x.com/bcherny/status/2004897269674639461 ↩↩↩↩
Sundar Pichai, Alphabet Q3 2024 earnings remarks (Google, Oct 29, 2024). https://blog.google/inside-google/message-ceo/alphabet-earnings-q3-2024/ ↩↩↩
Microsoft CEO says up to 30% of the company's code was written by AI (TechCrunch, LlamaCon, Apr 29, 2025). https://techcrunch.com/2025/04/29/microsoft-ceo-says-up-to-30-of-the-companys-code-was-written-by-ai/ ↩↩↩
Robinhood CEO says the majority of the company's new code is written by AI (Fortune via Yahoo Finance, 20VC podcast, July 2025). https://finance.yahoo.com/news/robinhood-ceo-says-majority-companys-094801794.html ↩↩↩↩
CEO Speaker Series with Dario Amodei (Council on Foreign Relations, March 10, 2025). https://www.cfr.org/event/ceo-speaker-series-dario-amodei-anthropic ↩↩
Tobi Lütke, "Reflexive AI usage is now a baseline expectation at Shopify" (posted on X, April 7, 2025). https://x.com/tobi/status/1909251946235437514 ↩↩↩
Duolingo all-hands "AI-first" email (Duolingo on LinkedIn, April 28, 2025). https://www.linkedin.com/posts/duolingo_below-is-an-all-hands-email-from-our-activity-7322560534824865792-l9vh ↩↩↩
Luis von Ahn clarification (LinkedIn, May 22, 2025). https://www.linkedin.com/posts/luis-von-ahn-duolingo_one-of-the-most-important-things-leaders-activity-7331386411670982658-jpfX ↩↩
Amazon Q Developer just reached a $260 million dollar milestone (AWS DevOps Blog, Aug 2024) / Andy Jassy on X, Aug 22, 2024. https://aws.amazon.com/blogs/devops/amazon-q-developer-just-reached-a-260-million-dollar-milestone/ ↩↩↩
Klarna AI assistant handles two-thirds of customer service chats in its first month (Klarna press release, Feb 27, 2024). https://www.klarna.com/international/press/klarna-ai-assistant-handles-two-thirds-of-customer-service-chats-in-its-first-month/ ↩↩↩
Sahil Lavingia, "No Meetings, No Deadlines, No Full-Time Employees" (Jan 2021). https://sahillavingia.com/work ↩↩↩
Midjourney company profile — revenue and headcount estimates (Sacra). https://sacra.com/c/midjourney/ ↩↩↩
The Impact of AI on Developer Productivity: Evidence from GitHub Copilot (Peng, Kalliamvakou, Cihon, Demirer; arXiv:2302.06590, Feb 2023). https://arxiv.org/abs/2302.06590 ↩↩↩
Measuring the Impact of Early-2025 AI on Experienced Open-Source Developer Productivity (METR, July 10, 2025). https://metr.org/blog/2025-07-10-early-2025-ai-experienced-os-dev-study/ ↩↩↩↩
2024 DORA / Accelerate State of DevOps Report (Google Cloud). https://dora.dev/research/2024/dora-report/ ↩↩↩
2025 DORA State of AI-assisted Software Development Report (Google Cloud). https://dora.dev/dora-report-2025/ ↩↩↩↩
AI Copilot Code Quality: 2025 research (GitClear). https://www.gitclear.com/ai_assistant_code_quality_2025_research ↩↩↩↩
Yegor Denisov-Blanch et al., "Will AI Replace Software Engineers?" — Stanford Software Engineering Productivity Research (AI Conference, Sept 2025). https://aiconference.com/wp-content/uploads/2025/09/Yegor-Denisov-Blanch-Will-AI-Replace-Software-Engineers_-.pptx.pdf ↩↩↩
Stack Overflow Developer Survey 2025 — AI section. https://survey.stackoverflow.co/2025/ai ↩↩
Amjad Masad on the Replit database-deletion incident (X, July 20, 2025). https://x.com/amasad/status/1946986468586721478 ↩↩