Help us improve
Share bugs, ideas, or general feedback.
From todo
Manage a TODO.md file at the project root. Add, complete, remove, and list tasks with priority levels. Use when the user says /todo or asks to manage tasks, todos, or action items.
npx claudepluginhub jaeyeom/claude-toolbox --plugin todoHow this skill is triggered — by the user, by Claude, or both
Slash command
/todo:todoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage a `TODO.md` file at the project root using markdown checkboxes grouped by priority.
Picks the next executable task from project-root TODO.md by priority and dependency, marks it in-progress, and executes it. Uses a structured task format with priority, ID, and dep fields.
Manage file-based todos in todos/ directory. Use when creating, triaging, or tracking todos and integrating them with code review.
Creates and manages structured Markdown todos for code reviews, technical debt, work items, and findings in .context/compound-engineering/todos/, handling lifecycle from pending to complete.
Share bugs, ideas, or general feedback.
Manage a TODO.md file at the project root using markdown checkboxes grouped by priority.
# TODO
## High Priority
- [ ] Incomplete task
- [x] Completed task
## Medium Priority
- [ ] Another task
## Low Priority
- [ ] Low priority task
Parse the user's intent from their message. Supported actions:
Add a new item. Default priority is Medium if not specified.
TODO.md (create it with the # TODO header and all three priority sections if it doesn't exist)- [ ] description under the matching priority sectionMark an item as complete.
TODO.md- [ ] to - [x]Remove an item entirely.
TODO.mdShow current todos with a summary.
TODO.mdX of Y tasks completeWork on the next highest-priority incomplete item.
TODO.md- [ ] item, scanning sections in order: High, Medium, Low- [x] in TODO.mdTODO.md before making any changesTODO.md, include all three sections (High, Medium, Low) even if empty/todo with no arguments, run list