| name | cas-task-tracking |
| description | How to track work using CAS tasks instead of built-in TodoWrite. Use for persistent task tracking with priorities, dependencies, structured notes, and cross-session continuity. |
| managed_by | cas |
CAS Task Tracking
Use mcp__cas__task instead of built-in TodoWrite. CAS tasks persist across sessions.
Core Workflow
- Create:
mcp__cas__task action=create title="..." description="..." priority=2
- Start:
mcp__cas__task action=start id=<task-id>
- Progress:
mcp__cas__task action=notes id=<task-id> notes="..." note_type=progress
- Close:
mcp__cas__task action=close id=<task-id> reason="..."
Useful Actions
- Ready tasks:
mcp__cas__task action=ready — unblocked, actionable work
- My tasks:
mcp__cas__task action=mine — tasks assigned to you
- Blocked:
mcp__cas__task action=list status=blocked
- Add dependency:
mcp__cas__task action=dep_add id=<task> to_id=<blocker> dep_type=blocks
Note Types
progress, blocker, decision, discovery — use the right type so notes are meaningful in context.