Plain text · sha256 e179dcc4c755
The description, line by line
21 lines One line number, because there is no previous capture to number against.
1
Use this tool to list all tasks in the task list.
2
3
## When to Use This Tool
4
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
10
11
## Output
12
13
Returns 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)
19
20
Use TaskGet with a specific task ID to view full details including description and comments.
21