aidex_task
Manage project backlog tasks with create, read, update, delete, and log actions. Tasks persist in the AiDex database for documentation and tracking.
Instructions
Manage a single task in the project backlog. Actions: create (new task), read (get task + log), update (change fields), delete, log (add history note). Tasks persist in the AiDex database. Completed tasks are preserved as documentation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to project with .aidex directory | |
| action | Yes | Action to perform on the task | |
| id | No | Task ID (required for read/update/delete/log) | |
| title | No | Task title (required for create) | |
| description | No | Task description (optional details) | |
| priority | No | Priority: 1=high, 2=medium (default), 3=low | |
| status | No | Task status (default: backlog) | |
| tags | No | Comma-separated tags (e.g., "bug, viewer, parser") | |
| source | No | Where the task came from (freetext, e.g., "code review of parser.ts:142") | |
| sort_order | No | Sort order within same priority (lower = first, default: 0) | |
| note | No | Log note text (required for log action) |