Scaffold a blank plan with required sections in .maestro/plans/. Use /plan-template <name> to create a new plan file.
Scanned 2/12/2026
Install via CLI
openskills install ReinaMacCredy/maestro---
name: plan-template
description: Scaffold a blank plan with required sections in .maestro/plans/. Use /plan-template <name> to create a new plan file.
user-invocable: true
disable-model-invocation: true
---
# Plan Template
> Scaffold a blank plan file with all required sections.
## Usage
```
/plan-template <name>
```
## Process
1. Take the `$ARGUMENTS` as the plan name
2. Convert to a filename slug (lowercase, hyphens, no spaces)
3. Create the plan file at `.maestro/plans/{slug}.md`
## Template
Write the following template to `.maestro/plans/{slug}.md`:
```markdown
# {Plan Name}
## Objective
<!-- One sentence: what are we trying to achieve? -->
## Scope
**In scope:**
<!-- What we ARE doing -->
-
**Out of scope:**
<!-- What we are explicitly NOT doing -->
-
## Tasks
<!-- Each task needs: description, acceptance criteria, agent assignment (kraken/spark), dependencies -->
- [ ] Task 1: [Description]
- **Agent**: kraken | spark
- **Acceptance criteria**: [What "done" looks like]
- **Dependencies**: none
- **Files**: [Expected files to create/modify]
## Verification
<!-- Concrete commands to verify completion -->
- [ ] `command here` — [What it verifies]
## Notes
<!-- Technical decisions, constraints, research findings -->
-
```
4. Report: "Plan template created at `.maestro/plans/{slug}.md` — fill in the sections and run `/work` to execute."
No comments yet. Be the first to comment!