Skip to content
TopicTracker
From HackerNewsView original
TranslationTranslation

Vibe Coding to Agentic Engineering: A Three-Phase Workflow with Claude Code

The blog introduces a three-phase workflow for software development using Claude Code: Vibe Coding (rapid prototyping with natural language), Agentic Engineering (structured, test-driven agentic loops), and Human Review (code review and refinement). It emphasizes moving from chaotic AI-generated code to disciplined, production-ready engineering practices.

Background

- **"Vibe coding"** is a term coined by Andrej Karpathy for a relaxed, prompt-driven approach where developers let an AI model (like Claude or ChatGPT) generate most of the code, intervening only to describe intent or fix issues conversationally. - **Claude Code** is Anthropic's terminal-based tool that lets developers run Claude directly inside their command line, giving the AI read/write access to a project's files so it can write, edit, and debug code autonomously. - **Agentic engineering** flips the classic developer workflow: instead of writing code manually and maybe using an AI assistant, the developer designs prompts and plans while the AI agent actively writes files, runs tests, and iterates on its own output. - The article proposes a three-phase pipeline: (1) rapid prototyping via vibe coding, (2) structured development with agentic loops, and (3) production hardening and review — turning the AI from a chat partner into an autonomous engineering teammate. - This shift matters because it fundamentally changes how software is built: the human's role moves from writing every line to directing an AI that can perform complex, multi-step coding tasks on its own.