← ClaudeAtlas

mkbootstraplisted

Use when creating a new project from scratch — orchestrates the full journey from idea to running code. Research → design → plan → scaffold → implement → docs. Explicit invocation only — never auto-activates. CLI = project infrastructure (.claude/), bootstrap = application code + full pipeline. NOT for autonomous multi-hour builds of specified products (see mk:autobuild); NOT for single-task feature work on existing projects (see mk:cook).
ngocsangyem/MeowKit · ★ 15 · AI & Automation · score 86
Install: claude install-skill ngocsangyem/MeowKit
# Bootstrap End-to-end project orchestrator: research → design → **plan → scaffold** → implement → docs. **CLI boundary:** the installer = project infrastructure. `mk:bootstrap` = application code + full pipeline. Zero overlap. Never touch `.claude/`. ## When to Use **Explicit only** — never auto-activate. ``` mk:bootstrap [requirements] mk:bootstrap [requirements] --full mk:bootstrap [requirements] --fast mk:bootstrap [requirements] --parallel ``` Do NOT invoke when: project already has source code, or you only need kit setup (use CLI). ## Modes | Mode | Flag | Gates | Research | Design | Plan flag | Cook flag | |------|------|-------|----------|--------|-----------|-----------| | **Auto** | (default) | Design only | Parallel researchers | UI/UX if frontend | `--auto` | `--auto` | | **Full** | `--full` | Every step | Parallel researchers | UI/UX if frontend | `--hard` | (interactive) | | **Fast** | `--fast` | None | 6 parallel batch | Skip | `--fast` | `--auto` | | **Parallel** | `--parallel` | Design only | Parallel researchers | UI/UX if frontend | `--parallel` | `--parallel` | ## Routing Parse first flag from arguments: - `--full` → load `references/workflow-full.md` - `--fast` → load `references/workflow-fast.md` - `--parallel` → load `references/workflow-parallel.md` - default → load `references/workflow-auto.md` Each workflow file defines the exact steps for that mode. After plan + scaffold, all modes load `references/shared-phases.md` for implementation → d