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 14 stars 2 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 81/100

Stars 20%
39
Recency 20%
75
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
5 months ago
Last Updated
1 months ago
Language
TypeScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

bootstrap

Scaffolds the core-memory-kit directory structure (context/, scripts/, cron/jobs/) into the current project. Idempotent — never overwrites existing files. Run once per project after installing the plugin. Use when the user says "bootstrap the memory system", "set up memory here", or "scaffold the memory kit".

7 Updated today
LH8PPL
AI & Automation Solid

mkautobuild

Use when running an autonomous multi-hour build of a green-field product — orchestrates planner → contract → generator ⇄ evaluator loop with adaptive scaffolding density per model tier. Triggers on /mk:autobuild, "build me a kanban app", "build a retro game maker", "autonomous build", or any green-field product spec. NOT for scoped single-task work (see mk:cook); NOT for initial project scaffolding only (see mk:bootstrap).

14 Updated 1 months ago
ngocsangyem
AI & Automation Listed

bootstrap-project

Crystallize a project-design conversation into a complete project scaffold. Reads the current session for project name, principles, milestones, stack, and audience; writes the docs/ quintet (PROJECT, ARCHITECTURE, ROADMAP, PROGRESS, DEPLOY), CLAUDE.md, Makefile, CI workflow, pre-commit config, VERSION, LICENSE, CHANGELOG, and supporting files. Supports stack profiles for Python, Node, Go, Rust, polyglot, and Nix flakes; deploy models for docker-compose, single binaries, artifacts (OS images / appliances), and libraries. Use this when the user says "bootstrap this project", "scaffold the repo", "now write all of this down", or invokes /bootstrap-project. The skill is a finalizer — it assumes the design conversation has happened in this session and extracts spec from context. It will ask only the minimum follow-ups (license, optional add-ons, profile-specific questions, anything missing). Do NOT use this for: existing projects (the skill refuses to clobber files); greenfield brainstorming (have the design conve

0 Updated 3 weeks ago
joseluisamado