save_task
Create a task that persists across coding sessions, tracking status and priority for multi-session work.
Instructions
Create a task that persists across sessions. Tasks are tracked with status (pending, in_progress, done, blocked) and priority (high, medium, low). Use this to maintain continuity on multi-session work.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short task title (e.g., "Fix auth bug in login flow") | |
| description | No | Detailed description of what needs to be done | |
| priority | No | Task priority | medium |
| status | No | Initial task status | pending |
| project_id | No | Project identifier override (auto-detected from CLAUDE_PROJECT_DIR or git remote if omitted) |