Summary

A ~50-page Google/Kaggle whitepaper (companion to the 5-Day AI Agents course)
arguing that AI doesn't just speed up coding — it restructures the entire
software development lifecycle. Implementation collapses to minutes/hours, which
makes specification and verification the new bottlenecks: the developer's
job shifts from writing code to judging it. The paper's central distinction
is between vibe coding (casual prompts, disposable code, paste-the-error-back
debugging — fast and fun, high-risk for production) and agentic engineering
(formal specs, automated evals, CI/CD gates — higher upfront cost, 3–10× cheaper
per feature long-term). The differentiator isn't whether you use AI, but how
outputs get verified
. Its headline framing: Agent = Model + Harness (≈ "Scaffold"),
where the model is only ~10% of a working system and the surrounding harness
(instructions, tools, MCP servers, sandboxes, orchestration, guardrails,
observability) is ~90% — so most agent failures are configuration problems, not
model limitations.

Key points

Fact check

Not formally fact-checked. The headline framing (Agent = Model + Harness/Scaffold,
~10/90 split), adoption stats (85% / 51% / ~41%), and the vibe-coding ↔ agentic-
engineering distinction are consistent across the Kaggle whitepaper, Addy Osmani's
blog, and multiple independent summaries. Specific benchmark figures (Terminal
Bench 2.0 top-30→top-5, LangChain +13.7) are as reported by the paper and worth
confirming against primary sources before quoting.

Claim Verdict Notes Source
Agent ≈ 10% model + 90% harness ⏳ Plausible Central framing of the paper; corroborated by co-author's blog. Kaggle / Addy Osmani
~41% of new code is AI-generated (2026) ⏳ Plausible Widely cited industry figure for 2026; exact methodology unstated. Kaggle whitepaper

Related resources

Type Name URL Notes
🎓 5-Day AI Agents: Intensive Vibe Coding Course (Kaggle × Google) https://www.kaggle.com/learn-guide/5-day-agents-vibecoding The course this whitepaper accompanies
blog Addy Osmani — The New Software Lifecycle https://addyosmani.com/blog/new-sdlc-vibe-coding/ Co-author's write-up of the same material
standard Model Context Protocol (MCP) https://modelcontextprotocol.io/ Open standard for agent tools
📰 The New Software Development Lifecycle (workingsoftware.dev) https://www.workingsoftware.dev/the-new-software-development-lifecycle-sdlc-from-vibe-coding-to-agentic-engineering/ Independent summary

Full content

(click to expand)

The whitepaper argues that AI fundamentally restructures the SDLC by compressing
implementation while making specification and verification the critical
bottlenecks — moving the developer's work from writing code to judging and
verifying it. It contrasts vibe coding (casual prompts, disposable code,
minimal upfront rigour; cheap to start, expensive long-term via token burn,
maintenance and security risk) with agentic engineering (formal specs,
automated evals, CI/CD gates; higher initial investment, 3–10× cheaper per
feature after a crossover point). The differentiator is how outputs get
verified
, not whether AI is used.

Its core mental model is Agent = Model + Harness (the Kaggle framing also
phrases this as "Model + Scaffold"): the LLM is only ~10% of a working agent; the
surrounding harness — instructions, rule files, tools, MCP servers, sandboxes,
orchestration logic, guardrails and observability — is ~90%. Most agent failures
are configuration problems, so you debug the harness first. The paper backs this
with evidence that harness changes alone moved a team from outside the top 30 to
top 5 on Terminal Bench 2.0, and that prompt/tool adjustments added 13.7 points
in a LangChain experiment.

It then walks the restructured lifecycle — requirements become collaborative
spec-and-prototype conversations; architecture stays human; implementation flips
from writing to reviewing (25–39% productivity gains); testing/QA becomes the
mechanism for teaching correctness to agents; and previously untouchable legacy
maintenance becomes tractable — and introduces practitioner concepts including
Harness Engineering, the Factory Model, Agent Skills with Progressive Disclosure,
Context Engineering, the 80% Problem, Conductor-vs-Orchestrator modes, and the
Orchestration Tax. Standards and tooling named include Google's Agents CLI, MCP,
A2A, and Agent Engine. The closing recommendation: specification quality is the
new bottleneck — prioritise structured context, rigorous evals, and verification
infrastructure over raw generation speed.