Vibe Code a Project from Scratch โ
From zero to live URL in one session. Bootstrap, design, code, test, deploy โ all through conversation.
Who This Is For โ
- Founders building their first MVP
- Developers starting a new project and wanting maximum velocity
- Anyone who wants a production-ready app without touching boilerplate
Prerequisites: CodyMaster installed, one AI agent configured
What You'll Build โ
- โ Full project scaffold (design system, CI, i18n, SEO)
- โ Production-quality code with test coverage
- โ 8-gate deploy pipeline to staging โ production
- โ Working memory โ AI remembers everything across sessions
The Full Workflow โ
Phase 1: Bootstrap (5 minutes) โ
@[/cm-project-bootstrap] Create a SaaS dashboard for "InvoiceFlow"
โ invoicing for freelancers. Stack: Astro + Tailwind + Supabase.
Target: desktop-first, with mobile responsive.What happens:
- Agent asks identity questions (GitHub org, Cloudflare account)
- Creates project scaffold:
invoiceflow/ โโโ AGENTS.md # AI manifest โโโ .cm/ # Working memory โโโ src/ โ โโโ components/ # Design system tokens โ โโโ layouts/ โ โโโ pages/ โโโ test/ # Test infrastructure โโโ scripts/ # Deploy gates โโโ package.json - Auto-generates platform configs (CLAUDE.md, .cursor/rules/, etc.)
- Initializes design system tokens, i18n files, SEO base
Phase 2: Design (10 minutes) โ
@[/cm-brainstorm-idea] Design the dashboard UX for InvoiceFlow.
Key features: invoice list, create invoice form, revenue chart, client management.Agent runs the Double Diamond process โ produces qualified recommendation.
Then generate visual preview:
@[/cm-ui-preview] Create design concepts for the recommended InvoiceFlow dashboardReview the Stitch/Pencil preview โ approve or iterate.
Phase 3: Plan (5 minutes) โ
@[/cm-planning] Plan the InvoiceFlow dashboard based on approved designAgent creates implementation_plan.md:
- Task decomposition
- Dependency order
- Test strategy per task
- Deploy milestones
โ ๏ธ READ THE PLAN. This is your biggest leverage point. 2 minutes of review saves hours of rework.
Phase 4: Build (30-60 minutes) โ
@[/cm-execution] Execute the approved planThe RARV cycle runs autonomously:
Task 1/8: Setup Supabase schema + types
๐งช TDD: test โ implement โ verify
โ
4 tests passing
Task 2/8: Invoice list component
๐งช TDD: test โ implement โ verify
โ
6 tests passing
Task 3/8: Create invoice form
๐งช TDD: test โ implement โ verify
โ
8 tests passing
...continues through all tasks...Your role during build:
- Review when the agent asks for approval
- Provide feedback: "Make the chart blue, not green"
- Don't read the code โ watch the test results
Phase 5: Verify (5 minutes) โ
@[/cm-quality-gate] Full 6-gate checkAll gates must pass before deploy.
Phase 6: Deploy (2 minutes) โ
@[/cm-safe-deploy] Deploy InvoiceFlow to staging8-gate pipeline โ live staging URL.
@[/cm-safe-deploy] Promote staging to production๐ Your app is live.
After Launch: Iterate โ
# Next day โ add new feature
@[/cm-start] Add PDF export for invoices
# Agent reads CONTINUITY.md โ picks up context instantly
# โ Plans โ TDD โ Build โ Verify โ DeployWorking memory means every session builds on the last.
Skill Chain (Automated) โ
For experienced users, one prompt does everything:
@[/cm-skill-chain] Build and deploy InvoiceFlow โ
invoicing SaaS for freelancers with dashboard, invoice CRUD,
revenue charts, and client managementThis triggers the full chain:
cm-project-bootstrap โ cm-brainstorm-idea โ cm-planning
โ cm-execution (with cm-tdd) โ cm-quality-gate โ cm-safe-deployTips โ
| Tip | Why |
|---|---|
| Be specific about your idea | "Invoicing for freelancers" > "a SaaS app" |
| Choose a simple MVP scope | 3-5 features max for first version |
| Review the plan before approving | 2 min review = 2 hours saved |
| Deploy to staging first | Always verify before production |
| Iterate in conversation | Add features one at a time after MVP is live |