gsd-capture
GitHubGSD系统的核心捕获技能,支持通过参数路由将想法、任务或笔记分发至待办、笔记、积压池或种子工作流。默认记录结构化待办,--note用于快速记录,--backlog加入积压,--seed规划未来触发项,--list浏览并选择待办执行。
Trigger Scenarios
Install
npx skills add AjayIrkal23/agentic-mercy-10x --skill gsd-capture -g -y
SKILL.md
Frontmatter
{
"name": "gsd-capture",
"description": "Capture ideas, tasks, notes, and seeds to their destination",
"allowed-tools": [
"Read",
"Write",
"Edit",
"Bash",
"Glob",
"Grep",
"AskUserQuestion"
],
"argument-hint": "[--note | --backlog | --seed | --list] [text]"
}
Mode routing:
- default (no flag): Capture as a structured todo for later work → add-todo workflow
- --note: Zero-friction idea capture (append/list/promote) → note workflow
- --backlog: Add an idea to the backlog parking lot (999.x numbering) → add-backlog workflow
- --seed: Capture a forward-looking idea with trigger conditions → plant-seed workflow
- --list: List pending todos and select one to work on → check-todos workflow
| Flag | Destination | Workflow |
|---|---|---|
| (none) | Structured todo in .planning/todos/ | add-todo |
| --note | Timestamped note file, list, or promote | note |
| --backlog | ROADMAP.md backlog section (999.x) | add-backlog |
| --seed | .planning/seeds/SEED-NNN-slug.md | plant-seed |
| --list | Interactive todo browser + action router | check-todos |
<execution_context> @$HOME/.claude/get-shit-done/workflows/add-todo.md @$HOME/.claude/get-shit-done/workflows/note.md @$HOME/.claude/get-shit-done/workflows/add-backlog.md @$HOME/.claude/get-shit-done/workflows/plant-seed.md @$HOME/.claude/get-shit-done/workflows/check-todos.md @$HOME/.claude/get-shit-done/references/ui-brand.md </execution_context>
Parse the first token of $ARGUMENTS:
- If it is
--note: strip the flag, pass remainder to note workflow - If it is
--backlog: strip the flag, pass remainder to add-backlog workflow - If it is
--seed: strip the flag, pass remainder to plant-seed workflow - If it is
--list: pass remainder (optional area filter) to check-todos workflow - Otherwise: pass all of $ARGUMENTS to add-todo workflow
Version History
- 581d130 Current 2026-07-19 09:08


