What problem does it solve? Turning a rough idea into working, reviewed code normally requires juggling interviews, research, spec writing, planning, and test-driven implementation by hand. BuildMe replaces that prompt-based orchestration with a deterministic Python pipeline that sequences every phase, checkpoints state to disk, and resumes after crashes. ## Core Features & Use Cases - Full pipeline orchestration: Runs Interview → Research → Codebase Analysis → Spec Generation → Design Audit → Plan Review → Prototype → TDD Build → Documentation → Respec → Publish as a subprocess with resumable checkpoints. - Enforced TDD with code gates: RED/GREEN gates, weak-test detection, test-integrity hashing, scored rubric reviews, and integration circuit breakers are code assertions, not prompt suggestions. - Git lifecycle automation: Each build runs in its own git worktree on its own branch, commits per block, pushes the branch, and opens a draft PR. - Use Case: Ask to build a password-reset feature from scratch; the pipeline interviews you, researches patterns, writes specs and a prototype, implements each block test-first, updates the docs, and hands back a draft PR. ## Quick Start Ask the assistant to build your feature with buildme, for example: build me a self-service password reset flow with email tokens.