Build This Now
Build This Now
Real BuildsState of Claude Code 2026: What 2,500 Public Repos RevealBuilding Isn't the Bottleneck AnymoreDistribution Is the New MoatWhy QA Is the Real Bottleneck in AI DevelopmentFirst Principles in the Age of 24-Hour MVPsThe Autonomy Curve: How Much Freedom Can You Give an AI Agent?Idea to SaaSGAN LoopSelf-Evolving HooksTrace to SkillDistribution AgentsAI Security AgentsAutonomous AI SwarmAI Email SequencesAI Cleans ItselfAgent Swarm OrchestrationBuild a Full App with Claude Code: Real ExamplesClaude Code for Non-Developers: Real ExamplesClaude Code for Freelancers: Ship 3x FasterA Security Update from Build This NowThe AI Agent That Deleted a Production Database in 9 SecondsHow to Build Your Own Claude Code Harness (or Buy One)Run Claude Code on a Cheaper Model: DeepSeek and GLM Cost ArbitrageIs Claude Code Just a Thin Wrapper? Inside the Harness DebateHow Much Does It Really Cost to Build a SaaS with Claude Code?How to Cut Your Claude Code Token Bill in HalfDo I Still Need a Boilerplate If I Use Claude Code?Harness vs Boilerplate vs Framework: The Build-System Stack ExplainedHow Long Does Idea to Production Actually Take with Claude Code?Is Vibe Coding Safe? What the Lovable and Moltbook Breaches TeachOwn Your Vercel Analytics: I Built a Drain-to-Postgres PipelineSpec-Driven Development Explained: Why Pros Stopped Vibe CodingState of Vibe-Coded SaaS Security (2026 Data)From Vibe Coding to Production: The Checklist That Stops Data LeaksVibe Coding vs Vibe Engineering vs Agentic Engineering: The 2026 GlossaryWhat Is an Agent Harness? Why the Harness, Not the Model, Is the 2026 Moat
speedy_devvkoen_salo
Blog/Real Builds/Vibe Coding vs Vibe Engineering vs Agentic Engineering: The 2026 Glossary

Vibe Coding vs Vibe Engineering vs Agentic Engineering: The 2026 Glossary

Vibe engineering, vibe coding, and agentic engineering defined plainly, with origins, a comparison table, and when to use each in 2026.

Stop configuring. Start building.

SaaS builder templates with AI orchestration.

Published Jun 25, 20267 min readReal Builds hub

Vibe coding, vibe engineering, and agentic engineering are three ways of building software with AI, and they differ by how much you review and own the result. Vibe coding (Andrej Karpathy, February 2025) means prompting an AI and shipping what it gives you without deep review. Vibe engineering (Simon Willison, October 2025) means using AI to go fast while staying fully accountable for the code. Agentic engineering (Karpathy, April 2026) means acting as the architect who writes the spec and directs AI agents that produce almost all of the implementation under your oversight.


Stop configuring. Start building.

SaaS builder templates with AI orchestration.


Why this matters to you

The label is not the point. The accountability is. Each step up the ladder asks you to own more of the security, correctness, and architecture of what you ship. Pick the wrong one for the job and you can leak data or break payments. Pick the right one and you move fast without shipping something dangerous.

Two people coined all three terms in about 14 months: Andrej Karpathy (who helped start OpenAI and led AI at Tesla) and Simon Willison (creator of the Django web framework and the Datasette data tool). That is unusual, and it tells you the vocabulary is still forming as AI agents get more capable.

The one-screen comparison

QuestionVibe CodingVibe EngineeringAgentic Engineering
Coined byAndrej KarpathySimon WillisonAndrej Karpathy
Date coinedFeb 2, 2025Oct 7, 2025Apr 30, 2026
Core definitionPrompt the AI, accept the output, ship without close reviewUse AI to move fast while reviewing and owning every changeAct as architect: write the spec, direct AI agents, own correctness and security
Who it is forAnyone, including non-codersExperienced engineersExperienced engineers and teams
Human roleDescribe what you wantReviewer and decision-makerArchitect and orchestrator
AI roleWrites most of the codeWrites code you check line by linePlans, builds, and tests ~99% of the implementation
When to use itPrototypes, demos, personal toolsProduction apps with real usersRegulated, payments, auth, enterprise

Vibe coding: the floor

Karpathy coined "vibe coding" in an X post on February 2, 2025 that reportedly passed 4.5 million views. He described giving in to the vibes, accepting what the AI writes, and barely reading the diffs. Collins English Dictionary named it Word of the Year for 2025.

The honest framing: vibe coding raises the floor. It lets people who could never build software before make a working thing. That is real value. Willison later described the style as "fast, loose, and irresponsible," which is fine for a throwaway prototype and risky for anything real.

Plain example: you ask an AI to "build me a tip calculator," it does, you ship it to friends. Nobody gets hurt if it has a bug.

Vibe engineering: the responsible middle

Simon Willison coined "vibe engineering" on his site simonwillison.net on October 7, 2025. He drew an explicit contrast with vibe coding. Vibe engineering is for "seasoned professionals" who use AI to go faster while "staying proudly and confidently accountable for the software they produce."

This is the key idea most competitor posts skip entirely. Vibe engineering is not a rebrand of vibe coding. It exists because by late 2025 the AI was fast enough to tempt even good engineers into skipping review. Willison gave the skip a name to resist, not a name to celebrate. You read every change. You own the result. The AI is a fast typist, not the person on the hook.

In May 2026, Willison added an honest caveat: as coding agents get more reliable, even experienced engineers stop reading every single line, which blurs the line between vibe engineering and agentic engineering. The two are converging. That makes this less a fixed glossary and more a snapshot of a moving target.

Agentic engineering: the ceiling

On April 30, 2026 at the Sequoia AI Ascent event, Karpathy introduced "agentic engineering" and called vibe coding "passé." His framing: vibe coding raises the floor, agentic engineering raises the ceiling.

The model is human as architect-orchestrator. You write the spec. AI agents plan, build, and test. Quality gates enforce standards. The AI may produce around 99% of the implementation, but you own the outcome. Karpathy was blunt about the line you cannot cross: "You are not allowed to introduce vulnerabilities because of vibe coding. You are still responsible for your software, just as before."

This pairs with patterns you may already use, like writing a clear CLAUDE.md instructions file, running Claude Code subagents in parallel, and wiring up MCP servers so the agents can reach your tools.

Why the stakes are real

The terminology debate matters because AI-written code fails in specific, measurable ways.

  • AI co-authored code shows 2.74x higher security vulnerability rates than human-written code (CodeRabbit, reported December 2025).
  • CVEs (publicly tracked security flaws) attributed to AI-generated code rose from 6 to 35 in two months, January to March 2026 (reported).
  • Only 8.25% of AI outputs were both functionally correct and secure in one study (Veracode, reported).

Those numbers are the reason "who is accountable" is not a word game. The more code the AI writes, the more deliberate your review and your guardrails need to be.

How to pick your approach

A simple self-test by use case:

  1. Prototype, hackathon, or personal tool: vibe coding is fine. Ship it.
  2. Production app with real users: vibe engineering is the minimum. Review every change, own it.
  3. Regulated, enterprise, payments, or authentication: agentic engineering. Use specs, agents, and automated security checks.

This is where a build system helps. Build This Now is the $29 Code Kit, a harness for Claude Code that ships a production skeleton (auth, Stripe payments, PostgreSQL with row-level security on every table). It wires agents to plan, build, and test against a spec you set, with quality gates and /security and /pentest commands that target exactly the CVE and OWASP failures vibe coding tends to create. That is agentic engineering in practice, not theory.

FAQ

What is vibe engineering?

Vibe engineering, coined by Simon Willison on October 7, 2025, means using AI tools to speed up development while staying fully accountable for the code you produce. It is the disciplined counterpart to vibe coding's accept-everything approach: you still review and own every change.

What is the difference between vibe coding and agentic engineering?

Vibe coding (Karpathy, February 2025) means prompting AI and shipping code without deep review. Agentic engineering (Karpathy, April 2026) means acting as architect-orchestrator: writing specs, coordinating AI agents, and owning correctness and security, with AI producing roughly 99% of the implementation under structured human oversight.

Is vibe coding safe for production apps?

No. AI co-authored code shows 2.74x higher security vulnerability rates than human-written code (CodeRabbit, reported December 2025), and Karpathy himself said "you are not allowed to introduce vulnerabilities because of vibe coding." Production apps need at minimum vibe engineering discipline, and anything handling payments or user data warrants full agentic engineering practices.

Who coined vibe coding and when?

Andrej Karpathy coined "vibe coding" on February 2, 2025 in an X post that reportedly reached 4.5 million views. Collins English Dictionary named it Word of the Year for 2025 in November of that year.

More in Real Builds

  • AI Cleans Itself
    Three overnight Claude Code workflows that clean AI's own mess: slop-cleaner removes dead code, /heal repairs broken branches, /drift catches pattern drift.
  • Agent Swarm Orchestration
    Four infrastructure layers that stop agent swarms from double-claiming tasks, drifting on field names, and collapsing under merge chaos.
  • GAN Loop
    One agent generates, one tears it apart, they loop until the score stops improving. GAN Loop implementation with agent definitions and rubric templates.
  • The Autonomy Curve: How Much Freedom Can You Give an AI Agent?
    How much autonomy you can give an AI agent is decided by one thing: how long a model holds a task without drifting. A good harness plus a reliable model is what unlocks real agent work.
  • The AI Agent That Deleted a Production Database in 9 Seconds
    An AI deleted PocketOS's production database and all backups in 9 seconds. Here is why it happened and the guardrails that prevent it.
  • AI Email Sequences
    One Claude Code command builds 17 lifecycle emails across 6 sequences, wires Inngest behavioral triggers, and ships a branching email funnel ready to deploy.

Stop configuring. Start building.

SaaS builder templates with AI orchestration.

On this page

Why this matters to you
The one-screen comparison
Vibe coding: the floor
Vibe engineering: the responsible middle
Agentic engineering: the ceiling
Why the stakes are real
How to pick your approach
FAQ
What is vibe engineering?
What is the difference between vibe coding and agentic engineering?
Is vibe coding safe for production apps?
Who coined vibe coding and when?

Stop configuring. Start building.

SaaS builder templates with AI orchestration.