Build a deployable v1
Plan, build, verify, review, QA and deploy in one continuous cycle
Symptom
“Build me a v1 of this app.” You get 20 half-stubbed files, no clear deploy story, and the inevitable “almost done” loop. By the time you sit down to actually ship, your local branch and what's running in production have drifted onto two different roads — if production exists at all.
Why prompts don't fix it
v1 means deployable, not just compiled. Without one workflow that runs all the way through deploy, the agent stops at “tests pass” or “code looks clean” and you do the deploy by hand a week later. The intent (“ship a v1”) and the agent's stopping condition (“code written”) never line up.
“build me a v1 of <app idea>”
Workflow
Six stages run in sequence: planning interview → executing (subagent writes code) → verifying (quick tests) → reviewing (adversarial code review) → qa-ing (Playwright user-journey tests) → deploy (Vercel CLI to production). The execute/verify/review/qa inner loop converges on a clean build before deploy runs; deploy is interruptible so you can supply env vars or run <c>vercel login</c> mid-flow.
/stagent:start --flow=cloud://demo <task_description>