save_task
Create persistent tasks with status and priority tracking to maintain continuity across multiple work sessions.
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
TableJSON 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 |