gsd-mvp-phase
GitHub引导用户将现有阶段转换为MVP模式。通过结构化提问收集用户故事,执行SPIDR拆分检查以评估规模,更新ROADMAP.md并委托规划命令。适用于已存在且未完成的阶段,不支持创建新阶段。
Trigger Scenarios
Install
npx skills add AjayIrkal23/agentic-mercy-10x --skill gsd-mvp-phase -g -y
SKILL.md
Frontmatter
{
"name": "gsd-mvp-phase",
"description": "Plan a phase as a vertical MVP slice — user story, SPIDR splitting, then plan-phase",
"allowed-tools": [
"Read",
"Write",
"Bash",
"Glob",
"Grep",
"Agent",
"AskUserQuestion"
],
"argument-hint": "<phase-number>"
}
- Prompts for an "As a / I want to / So that" user story (three structured questions)
- Runs SPIDR splitting check — if the story is too large, walks through Spike/Paths/Interfaces/Data/Rules and offers to split into multiple phases
- Writes
**Mode:** mvpand the reformatted**Goal:**to the phase's ROADMAP.md section - Delegates to
/gsd plan-phase <N>which auto-detects MVP mode via the roadmap field
Phase 1 of the vertical-mvp-slice PRD shipped the planner-side machinery; this command is the user entry point for it.
<execution_context> @$HOME/.claude/get-shit-done/workflows/mvp-phase.md @$HOME/.claude/get-shit-done/references/spidr-splitting.md @$HOME/.claude/get-shit-done/references/user-story-template.md </execution_context>
<runtime_note>
Copilot (VS Code): Use vscode_askquestions wherever this workflow calls AskUserQuestion. Equivalent API.
</runtime_note>
The phase must already exist in ROADMAP.md (created via /gsd new-project, /gsd add-phase, or /gsd insert-phase). This command does not create new phases — it converts an existing phase to MVP mode.
Version History
- 581d130 Current 2026-07-19 09:09


