Contents
In brief
A Dev.to essay on the 2026 SDLC: vibe coding (verification by gut feel) vs agentic engineering (AI inside tests, rules, and feedback loops). Key formula from Google’s whitepaper: Agent = Model + Scaffold — most teams invest in the model and ignore the scaffold.
What happened
Andrej Karpathy coined vibe coding in 2025; by early 2026 he spoke of agentic engineering: the question is not whether AI writes code, but how you govern what comes back. JetBrains data: 85% of developers use AI tools regularly; ~41% of new code is AI-generated.
Vibe coding treats verification as optional — “seems to work” fits prototypes, not production. Agentic engineering adds formal specs, rule files (AGENTS.md), CI, automated tests, and LM judges.
Context engineering ≠ prompt engineering: not “how to phrase the question” but “what a new engineer must know about the project” — stack, architecture, hard rules, workflow. Static context (rule files) is expensive in tokens; dynamic context (tool results, RAG) loads on demand.
Factory model: the developer’s primary output is not lines of code but the system that produces code. Two modes — conductor (hands-on in the IDE) and orchestrator (assign goals to agents, review results).
Why it matters
METR (2025) found experienced developers took 19% longer on complex tasks with early AI tools — while feeling 20% faster. The lesson is not “AI is useless” but “without structure, verification tax grows.” Teams with clear specs and review report +25–39% on implementation-heavy work; without review, bug rates rise up to 41%.
For leaders: rule files and eval suites are code — version control, PR review, named owners. A demo proves one success; an eval suite proves repeatability.
In practice
- Rule file per project — ten lines: stack, architecture, hard rules, tests; extend after every agent mistake.
- Tests before generation — tests specify intent better than prompts and give agents a feedback loop.
- Review everything that ships — especially clever imports and edge cases.
- Split prototype vs production — vibe for exploration, agentic for production.
- Invest in scaffold — swapping models without
AGENTS.mdpredictably breaks output.
| Mode | When it fits |
|---|---|
| Vibe coding | Hackathons, personal scripts, quick POCs |
| Agentic | Teams, regulated domains, long-lived codebases |
| Orchestrator | Well-scoped tasks: bugs, migrations, test generation |
Takeaway
Vibe coding is not a methodology — it is optional verification. Agentic engineering moves value into the scaffold: context, tests, guardrails. The 2026 developer often designs the assembly line, not every widget by hand — but specification discipline gets harder, not easier.