What problem does it solve?
AI coding agents often invent APIs, assume imports, skip planning, and emit placeholder code, producing broken output on high-stakes or multi-file tasks. This Skill enforces a disciplined engineering loop that grounds every line of code in verified structure before anything is written.
Core Features & Use Cases
- Five-Phase Loop: Runs Discuss, Map, Decompose, Execute, and Verify phases in order, with a codebase map tagging every dependency as KNOWN, INFERRED, or UNKNOWN before coding begins.
- Ponytail YAGNI Check: A six-rung ladder runs before every story to delete unnecessary code, preferring stdlib, platform features, or already-installed dependencies over new implementations.
- Atomic Story Execution: Tasks are decomposed into single-response stories with acceptance criteria, self-review checklists, and handoff notes, one story per turn.
- Use Case: When adding an authentication feature across multiple existing files, the Skill first maps the real code structure, resolves all unknowns, splits the work into verifiable stories, and verifies the result against the original goal.
Quick Start
Ask the agent to plan carefully and implement this feature using the zero-hallucination loop, starting with the Discuss phase questions.