gsd-mvp-phase
GitHub引导用户进行MVP模式阶段规划,通过结构化提问收集用户故事,执行SPIDR拆分检查以评估规模并建议拆分,更新ROADMAP.md标记MVP模式,最后委托给plan-phase命令自动检测并执行后续计划。
触发场景
安装
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.
版本历史
- 581d130 当前 2026-07-19 09:09


