Tasks
The Tasks view is a kanban board for managing work items that agents can pick up and execute.Board columns
| Column | Status | Meaning |
|---|---|---|
| Inbox | inbox | New tasks, unassigned |
| Assigned | assigned | Agent assigned, not started |
| In Progress | in_progress | Agent actively working |
| Review | review | Completed, needs human review |
| Blocked | blocked | Waiting on something |
| Done | done | Finished |
Creating a task
- Click New Task
- Fill in:
- Title — what needs to be done
- Description — details and context
- Priority — low / medium / high / urgent
- Assigned agent — which agent handles it
- Model override — use a specific model for this task
Priority levels
| Priority | When to use |
|---|---|
low | Nice to have, no deadline |
medium | Standard priority |
high | Important, do soon |
urgent | Do immediately |
Multi-agent assignment
Tasks can have multiple agents:- Lead — primary agent responsible for the task
- Collaborator — assists the lead agent
Scheduling with cron
Tasks can run on a schedule:- Open a task
- Set a cron schedule (standard cron syntax)
- Enable cron
Cron examples
Activity feed
Each task has a live activity feed showing:| Event | Description |
|---|---|
created | Task was created |
assigned | Agent was assigned |
status_change | Task moved to a new column |
comment | Human added a note |
agent_started | Agent began working |
agent_completed | Agent finished |
agent_error | Agent encountered an error |
cron_triggered | Scheduled run fired |
Task statuses
Each task has a board status (which column it sits in) and an underlying execution status that tracks the agent’s progress:| Board column | Execution status | Description |
|---|---|---|
| Inbox | pending | Not yet picked up by any agent |
| Assigned | pending | Agent assigned but hasn’t started |
| In Progress | in_progress | Agent is actively executing |
| Review | completed | Agent finished — awaiting human review |
| Blocked | failed / cancelled | Something went wrong or was stopped |
| Done | completed | Fully finished and approved |
failed execution status. You can reassign it or move it back to Inbox to retry.
:::
Cancelling a task
To cancel a running task:- Open the task
- Drag it to Blocked or click Delete
- The agent’s session is aborted and the execution status becomes
cancelled
Task templates
Create reusable task templates by combining cron scheduling with pre-filled fields:- Create a task with a descriptive title and description
- Assign an agent and set the priority
- Set a cron schedule (e.g.
0 9 * * 1-5for weekday mornings) - Enable cron — the task will recreate itself on schedule
Common template patterns
| Template | Cron | Description |
|---|---|---|
| Daily standup | 0 9 * * 1-5 | Summarize yesterday’s activity |
| Hourly monitoring | 0 * * * * | Check services and report issues |
| Weekly report | 0 17 * * 5 | Generate end-of-week summary |
| PR review | */30 * * * * | Check for new pull requests |
| News digest | 0 8 * * * | Research and summarize news |

