Skip to main content
ClaudeWave
Skill0 repo starsupdated yesterday

mindforge-add-phase

The mindforge-add-phase skill appends a new sequential phase to the active milestone within a MindForge roadmap structure. Use it when extending a project milestone's scope by adding another phase, as the workflow automatically calculates the next phase number, generates a slug-based directory, updates the roadmap file, and tracks changes in STATE.md.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/sairam0424/MindForge /tmp/mindforge-add-phase && cp -r /tmp/mindforge-add-phase/.agent/skills/mindforge-add-phase ~/.claude/skills/mindforge-add-phase
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

<objective>
Add a new integer phase to the end of the current milestone in the roadmap.

Routes to the add-phase workflow which handles:
- Phase number calculation (next sequential integer)
- Directory creation with slug generation
- Roadmap structure updates
- STATE.md roadmap evolution tracking
</objective>

<execution_context>
@.agent/workflows/mindforge-add-phase.md
</execution_context>

<context>
Arguments: $ARGUMENTS (phase description)

Roadmap and state are resolved in-workflow via `init phase-op` and targeted tool calls.
</context>

<process>
**Follow the add-phase workflow** from `@.agent/workflows/mindforge-add-phase.md`.

The workflow handles all logic including:
1. Argument parsing and validation
2. Roadmap existence checking
3. Current milestone identification
4. Next phase number calculation (ignoring decimals)
5. Slug generation from description
6. Phase directory creation
7. Roadmap entry insertion
8. STATE.md updates
</process>