Agent Skills
› davepoon/buildwithclaude
› gsd:pause-work
gsd:pause-work
GitHub在中途暂停工作时,通过执行pause-work工作流创建.continue-here.md交接文件。该技能自动检测当前阶段、收集完整工作状态(包括进度、决策和阻塞点)、生成上下文文件并提交Git WIP,以便后续无缝恢复工作。
Trigger Scenarios
用户希望中途暂停当前任务
需要保存工作现场以备后续恢复
Install
npx skills add davepoon/buildwithclaude --skill gsd:pause-work -g -y
SKILL.md
Frontmatter
{
"name": "gsd:pause-work",
"description": "Create context handoff when pausing work mid-phase",
"allowed-tools": [
"Read",
"Write",
"Bash"
]
}
Routes to the pause-work workflow which handles:
- Current phase detection from recent files
- Complete state gathering (position, completed work, remaining work, decisions, blockers)
- Handoff file creation with all context sections
- Git commit as WIP
- Resume instructions
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/pause-work.md </execution_context>
The workflow handles all logic including:
- Phase directory detection
- State gathering with user clarifications
- Handoff file writing with timestamp
- Git commit
- Confirmation with resume instructions
Version History
- 502fc01 Current 2026-07-05 15:13


