From gsd
Reviews .planning/phases/999.x backlog items, promotes selected ones to active milestones by renumbering directories and updating ROADMAP.md, removes others, then commits changes.
npx claudepluginhub jnuyens/gsd-plugin --plugin gsdThis skill is limited to using the following tools:
<objective>
Adds unsequenced ideas to ROADMAP.md backlog using 999.x numbering, creates phase directory, commits via git. For parking ideas outside active phases.
Validates backlog section completion in BACKLOG.md, generates milestone summaries and release notes from CHANGELOG.md, optionally squashes commits and creates git tags with auto-versioning.
Reviews and maintains project ROADMAP.md by cross-referencing codebase, PRDs, marking items done, reprioritizing, and committing updates.
Share bugs, ideas, or general feedback.
List backlog items:
ls -d .planning/phases/999* 2>/dev/null || echo "No backlog items found"
Read ROADMAP.md and extract all 999.x phase entries:
cat .planning/ROADMAP.md
Show each backlog item with its description, any accumulated context (CONTEXT.md, RESEARCH.md), and creation date.
Present the list to the user via AskUserQuestion:
For items to PROMOTE:
999.x-slug to {new_num}-slug:
NEW_NUM=$(gsd-sdk query phase.add "${DESCRIPTION}" --raw)
## Backlog section to the active phase list(BACKLOG) marker**Depends on:** fieldFor items to REMOVE:
## Backlog sectionCommit changes:
gsd-sdk query commit "docs: review backlog โ promoted N, removed M" .planning/ROADMAP.md
Report summary:
## ๐ Backlog Review Complete
Promoted: {list of promoted items with new phase numbers}
Kept: {list of items remaining in backlog}
Removed: {list of deleted items}