Agent Skills
› davepoon/buildwithclaude
› gsd:add-phase
gsd:add-phase
GitHub用于在路标当前里程碑末尾添加新阶段。通过工作流自动计算阶段编号、生成目录别名、创建阶段目录并更新路标结构和状态文件,实现项目进度的有序扩展。
Trigger Scenarios
需要向现有路标添加新阶段时
执行阶段操作以推进项目里程碑时
Install
npx skills add davepoon/buildwithclaude --skill gsd:add-phase -g -y
SKILL.md
Frontmatter
{
"name": "gsd:add-phase",
"description": "Add phase to end of current milestone in roadmap",
"allowed-tools": [
"Read",
"Write",
"Bash"
],
"argument-hint": "<description>"
}
Routes to the add-phase workflow which handles:
- Phase number calculation (next sequential integer)
- Directory creation with slug generation
- Roadmap structure updates
- STATE.md roadmap evolution tracking
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/add-phase.md </execution_context>
Roadmap and state are resolved in-workflow via init phase-op and targeted tool calls.
The workflow handles all logic including:
- Argument parsing and validation
- Roadmap existence checking
- Current milestone identification
- Next phase number calculation (ignoring decimals)
- Slug generation from description
- Phase directory creation
- Roadmap entry insertion
- STATE.md updates
Version History
- 502fc01 Current 2026-07-05 15:12


