Agent Skills
› AjayIrkal23/agentic-mercy-10x
› gsd-capture
gsd-capture
GitHubGSD系统的任务捕获入口,通过不同参数路由至待办、笔记、积压或种子工作流,实现想法与任务的标准化归档。
触发场景
用户需要记录新想法或任务
用户希望快速添加备忘或规划未来需求
安装
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
版本历史
- 581d130 当前 2026-07-19 09:08


