Prompt capture
TaskList tool description
27 model strings share this prompt, byte for byte.
1Use this tool to list all tasks in the task list.
3## When to Use This Tool
5- To see what tasks are available to work on (status: 'pending', no owner, not blocked)
6- To check overall progress on the project
7- To find tasks that are blocked and need dependencies resolved
8- After completing a task, to check for newly unblocked work or claim the next available task
9- **Prefer working on tasks in ID order** (lowest ID first) when multiple tasks are available, as earlier tasks often set up context for later ones
11## Output
13Returns a summary of each task:
14- **id**: Task identifier (use with TaskGet, TaskUpdate)
15- **subject**: Brief description of the task
16- **status**: 'pending', 'in_progress', or 'completed'
17- **owner**: Agent ID if assigned, empty if available
18- **blockedBy**: List of open task IDs that must be resolved first (tasks with blockedBy cannot be claimed until dependencies resolve)
20Use TaskGet with a specific task ID to view full details including description and comments.