Bootstrap
End-to-end project scaffolding orchestrator. Takes a requirement from zero to running, tested, reviewed code by delegating through research, planning, and implementation in sequence.
What This Skill Does
Bootstrap handles the entire “greenfield” workflow: git init, tech stack research, architecture design, planning, implementation, tests, review, docs, and onboarding. It doesn’t write code directly—it orchestrates /ck:plan and /ck:cook with the right flags for your chosen mode.
Modes
| Flag | Mode | User Gates | Planning Skill | Cook Skill |
|---|---|---|---|---|
--full | Full interactive | Every phase | --hard | (interactive) |
--auto | Automatic (default) | Design only | --auto | --auto |
--fast | Quick | None | --fast | --auto |
--parallel | Multi-agent | Design only | --parallel | --parallel |
Usage
/ck:bootstrap <requirements> [flags]
Examples:
/ck:bootstrap "Build a SaaS dashboard with auth and billing"/ck:bootstrap "REST API for inventory management" --fast/ck:bootstrap "Real-time collaboration tool like Figma" --full/ck:bootstrap "E-commerce platform with Stripe + CMS" --parallel
Workflow Overview
Git Init → Research → Tech Stack Selection → Design Review
→ Planning → Implementation → Tests → Code Review
→ Docs → Onboarding Guide → Final Summary
User gates (pause for approval) depend on mode:
--full: every phase--auto/--parallel: design phase only--fast: none (fully autonomous)
How It Works
Bootstrap is an orchestrator, not an implementer:
- Git Init — initialize repo if not already a git project
- Research — investigate tech stack options for your requirements
- Tech Stack — recommend and confirm stack (Node/Bun, framework, DB, auth, etc.)
- Design — architecture overview, data model, API shape
- Plan — delegates to
/ck:planwith mode-appropriate flags - Implement — delegates to
/ck:cookwith mode-appropriate flags - Test — verifies test suite passes (100% required)
- Review — code-reviewer agent validates quality
- Docs — generates README, API docs, setup guide
- Onboard — produces
CONTRIBUTING.mdand dev quickstart
Example Prompts
/ck:bootstrap "Multi-tenant SaaS with team workspaces" --auto/ck:bootstrap "CLI tool for managing dotfiles" --fast/ck:bootstrap "GraphQL API with subscriptions" --parallel/ck:bootstrap "Mobile app backend with push notifications" --full
Related Skills
- Planning — plan skill invoked during workflow
- Cook — cook skill invoked during workflow
- Agent Teams — use with
--parallelfor multi-agent execution