Agent Skills
› davepoon/buildwithclaude
› gsd:check-todos
gsd:check-todos
GitHub列出待办事项并支持选择,加载完整上下文后路由至相应工作流。功能包括计数、按区域过滤、交互式选择、路线图关联检查及执行操作(如立即处理、加入阶段),最终更新状态并提交Git。
Trigger Scenarios
用户希望查看当前所有待办事项
用户需要从列表中选择一个待办事项进行后续处理
Install
npx skills add davepoon/buildwithclaude --skill gsd:check-todos -g -y
SKILL.md
Frontmatter
{
"name": "gsd:check-todos",
"description": "List pending todos and select one to work on",
"allowed-tools": [
"Read",
"Write",
"Bash",
"AskUserQuestion"
],
"argument-hint": "[area filter]"
}
Routes to the check-todos workflow which handles:
- Todo counting and listing with area filtering
- Interactive selection with full context loading
- Roadmap correlation checking
- Action routing (work now, add to phase, brainstorm, create phase)
- STATE.md updates and git commits
<execution_context> @${CLAUDE_PLUGIN_ROOT}/workflows/check-todos.md </execution_context>
Todo state and roadmap correlation are loaded in-workflow using init todos and targeted reads.
The workflow handles all logic including:
- Todo existence checking
- Area filtering
- Interactive listing and selection
- Full context loading with file summaries
- Roadmap correlation checking
- Action offering and execution
- STATE.md updates
- Git commits
Version History
- 502fc01 Current 2026-07-05 15:12


