open-gsd/gsd-core

gsd-phase

Multi-phase management — add, insert, remove, or edit phases in ROADMAP.md (roadmap phase CRUD)

First seen Jun 23, 2026

Installation

$ npx skills add open-gsd/gsd-core --skill gsd-phase

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from open-gsd/gsd-core · top by installs.

npx skills add open-gsd/gsd-core

Browse all from open-gsd/gsd-core

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 9.3K
License LICENSE
Default branch next
Open issues 129
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Write, Bash, Glob, Grep
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,155 B
  • docs SUMMARY.md 111 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 259 installs

SKILL.md

<objective> Manage phases in ROADMAP.md with a single consolidated command.

Mode routing:

  • default (no flag): Add a new integer phase to the end of the current milestone → add-phase workflow
  • --insert: Insert urgent work as a decimal phase (e.g., 72.1) between existing phases → insert-phase workflow
  • --remove: Remove a future phase and renumber subsequent phases → remove-phase workflow
  • --edit: Edit any field of an existing phase in place → edit-phase workflow

</objective>

<routing>

Flag Action Workflow
(none) Add new integer phase at end of milestone add-phase
--insert Insert decimal phase (e.g., 72.1) after specified phase insert-phase
--remove Remove future phase, renumber subsequent remove-phase
--edit Edit fields of existing phase in place edit-phase

</routing>

<executioncontext> @~/.claude/gsd-core/workflows/add-phase.md @~/.claude/gsd-core/workflows/insert-phase.md @~/.claude/gsd-core/workflows/remove-phase.md @~/.claude/gsd-core/workflows/edit-phase.md </executioncontext>

<context> Arguments: $ARGUMENTS

Parse the first token of $ARGUMENTS:

  • If it is --insert: strip the flag, pass remainder (format: <after-phase-number> <description>) to insert-phase workflow
  • If it is --remove: strip the flag, pass remainder (phase number) to remove-phase workflow
  • If it is --edit: strip the flag, pass remainder (phase-number [--force]) to edit-phase workflow
  • Otherwise: pass all of $ARGUMENTS (phase description) to add-phase workflow

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

<process>

  1. Parse the leading flag (if any) from $ARGUMENTS.
  2. Load and execute the appropriate workflow end-to-end based on the routing table above.
  3. Preserve all validation gates from the target workflow.

</process>