AgentSkillsCN

df:check-todos

列出待办事项,并从中选择一项着手处理。 当用户想要查看自己的待办事项清单、检查待办事项,或挑选一项任务开始处理时,即可使用此功能。触发词包括:“我的待办事项清单上有什么?”“待办事项”“显示待办事项”“还有待办事项吗?”“有哪些任务被保存下来?”

SKILL.md
--- frontmatter
name: df:check-todos
description: |
  List pending todos and select one to work on.
  Use when the user wants to see their todo list, check pending items, or pick something to work on.
  Triggers on: "what's on my todo list?", "pending todos", "show todos", "any todos?", "what tasks are saved?"
argument-hint: [area filter]
allowed-tools:
  - Read
  - Write
  - Bash
  - AskUserQuestion
<objective> List all pending todos, allow selection, load full context for the selected todo, and route to appropriate action.

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 objective, brainstorm, create objective)
  • STATE.md updates and git commits </objective>

<execution_context> @.planning/STATE.md @.planning/ROADMAP.md @~/.claude/devflow/workflows/check-todos.md </execution_context>

<process> **Follow the check-todos workflow** from `@~/.claude/devflow/workflows/check-todos.md`.

The workflow handles all logic including:

  1. Todo existence checking
  2. Area filtering
  3. Interactive listing and selection
  4. Full context loading with file summaries
  5. Roadmap correlation checking
  6. Action offering and execution
  7. STATE.md updates
  8. Git commits
</process>