npx skills add ...
npx skills add buildgreatproducts/builder-os --skill build-mvp
Use inside a product repository when the user wants the full MVP built from their BuilderOS spec documents. Triggers on phrases like "build my MVP", "build the app", "execute the roadmap", "start the build", "work through the whole roadmap", "build everything", or any request to implement the entire plan rather than a single task or phase. Requires `docs/prd.md` and `docs/product-roadmap.md` (plus `docs/product-vision.md` and `docs/design.md` for context). Works through every roadmap task in order — implementing, testing, and verifying each before moving on, marking checkboxes and updating the status line — and runs until all tasks are complete and the magic moment works end to end, then initializes git with an initial commit and offers to connect a remote repo.
npx skills add buildgreatproducts/builder-os --skill build-mvp
Build the complete app by executing every task in docs/product-roadmap.md, in order, until all tasks are checked off.
Read docs/product-roadmap.md first — it is the source of truth for what to build and in what order. docs/prd.md is the technical spec behind it; docs/design.md holds the visual design tokens; docs/product-vision.md holds the product strategy. Do not load these documents wholesale — each phase lists the specific Reference sections to read, plus whatever a task's Notes line points to. If docs/product-roadmap.md or docs/prd.md is missing, stop and tell the user to run the Product Planner skill first (part of BuilderOS: https://github.com/BuildGreatProducts/builder-os).
Repeat until every task in the roadmap is complete:
- [ ]). Tasks are ordered intentionally — never skip ahead.CLAUDE.md/AGENTS.md guidelines: simplest implementation that satisfies the task, no speculative features, surgical changes only.- [ ] to - [x] and update the header status line (**Status:** X/Y tasks complete, **Current Phase:** ...).docs/design.md tokens — never invent colors, type, or spacing. If docs/design.md doesn't exist, follow the roadmap's foundation-phase guidance: prompt the user to run the Design System skill before styling work begins.**Status:** Y/Y tasks complete: every task checked, every phase verified, the magic moment working end to end.When every task is checked off and the magic moment has been verified end to end:
git init, add a sensible .gitignore for the stack (dependencies, build output, .env files — never commit secrets), and commit everything with an initial commit message naming the product and noting the MVP build is complete. If the project is already a git repository, commit the build on the current branch instead.origin, push, and confirm the push succeeded. If no, leave it local and tell them the commit is ready to push whenever they are.