Bootstrap a new project with full scaffold — CLAUDE.md, .memory/, docs/, PRD.md, and optional TASK.md. Run once at project creation. Idempotent.
/plugin install monorepo-init@dkotama-skills
Requires marketplace to be added first:
/plugin marketplace add dkotama/skills
— setup guide
Monorepo Init runs an interview, then writes a complete project scaffold in one session. No manual copy-pasting of boilerplate, no forgetting the memory files.
PRD.md from your answers — overview, platform table, architecture, goalsCLAUDE.md with git workflow, behavioral guidelines, memory organization, and docs structure tailored to your platforms.memory/000-how-to-memory.md and one per platform folderdocs/README.md as the flat docs index with naming conventionsdocs/SPEC_*.md (for superpowers users) or TASK.md (without) for your first taskCLAUDE.md, PRD.md, TASK.mdgit commit command<project-root>/
├── CLAUDE.md
├── PRD.md ← written from interview
├── TASK.md ← only if NOT using superpowers
├── .memory/
│ └── 000-how-to-memory.md
├── docs/
│ ├── README.md
│ └── SPEC_<SCOPE>_<date>_<slug>.md ← only if using superpowers
└── <platform>/
└── .memory/
└── 000-how-to-memory.md
Invoke the skill at project creation. It will ask 6 questions, then write all files. Example prompts:
Invoke the skill directly with:
The skill runs in 3 phases: Plan (2–3 questions, smart defaults inferred from stack), Review (full scaffold plan shown, correct via free text), Generate (files + Hello World + tests, ≥ 80% coverage).
The full Monorepo Init specification — 3-phase flow, stack inference rules, Hello World scaffolds per stack, file templates, and idempotency rules — is split across companion files. Only files needed for the current phase load into context.
Skill source: skills/monorepo-init/
| Version | Date | Notes |
|---|---|---|
| 0.0.2 | 2026-05-11 | Skill owns its own interview — no superpowers delegation. Platform isolation enforced by default in CLAUDE.md and PRD.md templates. |
| 0.0.1 | 2026-05-11 | Initial release — interview flow, 6 file templates, superpowers branch, idempotency rules |