| name | gmacko-init-plan |
| description | Use when (1) PROJECT_MANIFEST.json exists and you need to generate INITIAL_PLAN.md, (2) user wants a detailed implementation roadmap, (3) translating manifest into actionable milestones. Generates comprehensive project plan from the manifest. |
| license | MIT |
| compatibility | opencode |
| metadata | {"phase":"initialization","tier":"workhorse","permission":"allow"} |
Gmacko Plan Generator
Generate INITIAL_PLAN.md from an existing PROJECT_MANIFEST.json.
Prerequisites
PROJECT_MANIFEST.json must exist in the repository root
- Run
gmacko-init-interview first if manifest doesn't exist
Workflow
digraph plan {
rankdir=TB;
node [shape=box];
start [label="Start" shape=ellipse];
check [label="1. Check for PROJECT_MANIFEST.json"];
exists [label="Manifest exists?" shape=diamond];
read [label="2. Read and validate manifest"];
generate [label="3. Generate plan sections"];
write [label="4. Write INITIAL_PLAN.md"];
handoff [label="5. Create handoff document"];
done [label="Plan Complete" shape=ellipse];
error [label="Error: Run interview first" shape=ellipse];
start -> check -> exists;
exists -> read [label="yes"];
exists -> error [label="no"];
read -> generate -> write -> handoff -> done;
}