Agent Skills
› AjayIrkal23/agentic-mercy-10x
› gsd-phase
gsd-phase
GitHub用于管理ROADMAP.md中的阶段。支持通过标志位执行添加、插入、删除和编辑阶段的操作,自动路由至对应工作流并处理参数解析与验证。
Trigger Scenarios
需要向当前里程碑末尾添加新阶段时
需要在现有阶段间插入紧急任务阶段时
需要移除未来阶段并重新编号时
需要就地修改现有阶段的任意字段时
Install
npx skills add AjayIrkal23/agentic-mercy-10x --skill gsd-phase -g -y
SKILL.md
Frontmatter
{
"name": "gsd-phase",
"description": "CRUD for phases in ROADMAP.md — add, insert, remove, or edit phases",
"allowed-tools": [
"Read",
"Write",
"Bash",
"Glob"
],
"argument-hint": "[--insert | --remove | --edit] <phase-name-or-number>"
}
Mode routing:
- default (no flag): Add a new integer phase to the end of the current milestone → add-phase workflow
- --insert: Insert urgent work as a decimal phase (e.g., 72.1) between existing phases → insert-phase workflow
- --remove: Remove a future phase and renumber subsequent phases → remove-phase workflow
- --edit: Edit any field of an existing phase in place → edit-phase workflow
| Flag | Action | Workflow |
|---|---|---|
| (none) | Add new integer phase at end of milestone | add-phase |
| --insert | Insert decimal phase (e.g., 72.1) after specified phase | insert-phase |
| --remove | Remove future phase, renumber subsequent | remove-phase |
| --edit | Edit fields of existing phase in place | edit-phase |
<execution_context> @$HOME/.claude/get-shit-done/workflows/add-phase.md @$HOME/.claude/get-shit-done/workflows/insert-phase.md @$HOME/.claude/get-shit-done/workflows/remove-phase.md @$HOME/.claude/get-shit-done/workflows/edit-phase.md </execution_context>
Parse the first token of $ARGUMENTS:
- If it is
--insert: strip the flag, pass remainder (format:) to insert-phase workflow - If it is
--remove: strip the flag, pass remainder (phase number) to remove-phase workflow - If it is
--edit: strip the flag, pass remainder (phase-number [--force]) to edit-phase workflow - Otherwise: pass all of $ARGUMENTS (phase description) to add-phase workflow
Roadmap and state are resolved in-workflow via init phase-op and targeted reads.
Version History
- 581d130 Current 2026-07-19 09:10


