| name | brain-todos |
| description | View current tasks and their statuses from the second brain. Use when the user says "show my todos", "what are my tasks", "task list", "what am I working on", "what's blocked", or asks about their current workload. |
Brain Todos
Display the user's current task board from the second brain.
Gather Task Data
- List all
.md files in tasks/ and read their YAML frontmatter to extract status, project, date, and tags.
- Read individual task files for detailed descriptions, acceptance criteria, and linked projects.
Present Tasks
Display tasks grouped by status in this priority order:
- In Progress — what's actively being worked on
- To Do — upcoming work
- Blocked — stalled items, include the reason if known
- Done — only include if the user explicitly asks for completed tasks; otherwise omit or show a count
For each task, show:
- Task name
- Linked project (from
[[wiki-links]] or frontmatter project field)
- One-line description if available from the task file
Edge Cases
- If there are no active tasks (all statuses are done/cancelled), tell the user: "No active tasks. You're all clear."
- Task files in
tasks/ are the sole source of truth — there is no separate index to reconcile.