Monorepo Init

v0.0.2 Workflow

Bootstrap a new project with full scaffold — CLAUDE.md, .memory/, docs/, PRD.md, and optional TASK.md. Run once at project creation. Idempotent.

Install
/plugin install monorepo-init@dkotama-skills

Requires marketplace to be added first: /plugin marketplace add dkotama/skills setup guide

What It Does

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.

Output Structure

<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

When to Use

How to Use

Invoke the skill at project creation. It will ask 6 questions, then write all files. Example prompts:

"Init this monorepo — it's a Go API + Next.js frontend called OrderFlow."
"Bootstrap project structure. I have api/, fe/, and admin/ folders. We use superpowers skills."
"Create CLAUDE.md and memory for this project. Main branch is main, staging is develop."

Invoke the skill directly with:

/dkotama-skills:monorepo-init

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

Design Docs

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.

View skill source on GitHub →

Source & Changelog

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