add-tests
Generate tests for a completed phase based on UAT criteria and implementation
Review and promote backlog items to active milestone
> /plugin marketplace add open-gsd/gsd-core > /plugin install gsd-core@gsd-core
How it fires
How this command gets triggered: by you, by Claude, or both.
/review-backlogContext preview
What this command does when you run it.
Review and promote backlog items to active milestone
name: gsd:review-backlog description: Review and promote backlog items to active milestone allowed-tools: - Read - Write - Bash - Grep - AskUserQuestion requires: [phase, review]
<objective> Review all 999.x backlog items and optionally promote them into the active milestone sequence or remove stale entries. </objective>
<process>
1. **List backlog items:**
_BACKLOG=( .planning/phases/999* )
if [ -e "${_BACKLOG[0]}" ]; then ls -d "${_BACKLOG[@]}"; else echo "No backlog items found"; fi2. **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.
3. **Present the list to the user** via AskUserQuestion:
4. **For items to PROMOTE:**
NEW_NUM=$(gsd-tools query phase.add "${DESCRIPTION}" --raw)5. **For items to REMOVE:**
6. **Commit changes:**
gsd-tools query commit "docs: review backlog — promoted N, removed M" --files .planning/ROADMAP.md
7. **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}</process>
Git. Ship. Done. A light-weight meta-prompting, context engineering, and spec-driven development system for Claude Code, OpenCode, Antigravity CLI, Kimi CLI, Kilo, Codex, Copilot, Cursor, Windsurf, and more.
Repo: open-gsd/gsd-core
Generate tests for a completed phase based on UAT criteria and implementation
Generate an AI-SPEC.md design contract for phases that involve building AI systems.
Autonomous audit-to-fix pipeline — find issues, classify, fix, test, commit
Audit milestone completion against original intent before archiving
Cross-phase audit of all outstanding UAT and verification items
Run all remaining phases autonomously — discuss→plan→execute per phase