Skip to main content
ClaudeWave
Skill0 repo starsupdated yesterday

mindforge-remove-phase

The mindforge-remove-phase skill deletes an unstarted future phase from a project roadmap and automatically renumbers all subsequent phases to maintain sequential ordering. Use this when you've decided to eliminate planned work and want a clean removal without leaving cancelled markers in the project context, with changes recorded as a git commit for historical tracking.

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

SKILL.md

<objective>
Remove an unstarted future phase from the roadmap and renumber all subsequent phases to maintain a clean, linear sequence.

Purpose: Clean removal of work you've decided not to do, without polluting context with cancelled/deferred markers.
Output: Phase deleted, all subsequent phases renumbered, git commit as historical record.
</objective>

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

<context>
Phase: $ARGUMENTS

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

<process>
Execute the remove-phase workflow from @.agent/workflows/mindforge-remove-phase.md end-to-end.
Preserve all validation gates (future phase check, work check), renumbering logic, and commit.
</process>