Agent skill
todo
TODO tracking system for spec TODOs. Use when creating, updating, or querying spec TODOs in docs/spec/todos/.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/todo-edochi-mdvs
SKILL.md
TODO Tracking System
Spec TODOs live in docs/spec/todos/ as individual markdown files with YAML frontmatter.
Finding TODOs
- Index:
docs/spec/todos/index.md— Single table sorted by ID with status, priority, and dates - Individual files:
docs/spec/todos/TODO-NNNN.md(zero-padded to 4 digits) - Quick lookup:
glob docs/spec/todos/TODO-*.md
Creating a New TODO
- Derive next ID: Find the highest existing ID and add 1 (do NOT fill gaps — IDs are never reused)
- Create file using this template:
---
id: <next_id>
title: <short title>
status: todo # todo | in-progress | done
priority: high # high | medium | low
created: <YYYY-MM-DD>
depends_on: [] # list of TODO IDs that must complete first
blocks: [] # list of TODO IDs this blocks
---
# TODO-NNNN: <Title>
## Summary
<1-3 sentences describing the goal>
## Details
<Full description: steps, design questions, files to create/update>
- Update
index.md: Add row to the table (sorted by ID)
Updating Status
Starting work (todo → in-progress)
- Update frontmatter:
status: in-progress - Update index.md if needed
Completing (in-progress → done)
- Update frontmatter:
yaml
status: done completed: <YYYY-MM-DD> files_created: [...] # files created during resolution files_updated: [...] # files modified during resolution - Replace
## Detailswith## Resolutioncontaining the resolution notes - Update index.md: change status, add completed date
Subsumption (absorbed by another TODO)
When a TODO is fully covered by another TODO's implementation:
- On the subsumed TODO:
yaml
status: done completed: <date of subsuming TODO's completion> subsumed_by: <subsuming TODO ID> - Rename
## Detailsto## Original Scope, add:markdown## Resolution Subsumed by [TODO-NNNN](TODO-NNNN.md). <brief explanation>. - On the subsuming TODO, add:
yaml
subsumed: - <absorbed TODO ID>
Dependency Conventions
depends_on: [8]means "cannot start until #8 is done"blocks: [9]means "#9 cannot start until this is done"- Keep both sides consistent (if A blocks B, then B depends_on A)
File Impact Conventions
Only populated on completion:
files_created: New files created as part of the resolutionfiles_updated: Existing files modified as part of the resolution- Use spec-relative paths (e.g.,
commands/check.md,workflows/inference.md)
Relative Links
TODO files live at docs/spec/todos/. Adjust relative links accordingly:
- To spec files:
../terminology.md,../storage.md,../commands/check.md,../workflows/inference.md - To other TODOs:
TODO-NNNN.md(same directory)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?