mkbootstrap

Solid

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).

AI & Automation 15 stars 2 forks Updated today MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
40
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# 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...

Details

Author
ngocsangyem
Repository
ngocsangyem/MeowKit
Created
4 months ago
Last Updated
today
Language
TypeScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category