aether task
Manage agent tasks. Tasks represent individual agent runs that read files, execute commands, and write code in a workspace.Usage
Subcommands
| Subcommand | Description |
|---|---|
list | List tasks for the current project |
create | Create a new task |
get <id> | Get task details |
status <id> | Show compact task status |
update <id> | Update task turn defaults |
respond <id> | Send a follow-up message to a running task |
abort <id> | Cancel a running task |
steer <id> | Send steering feedback |
archive <id> | Archive a task |
unarchive <id> | Unarchive a task |
clear-queue <id> | Clear queued task items |
remove-from-queue <id> <item-id> | Remove one queued item |
watch <id> | Stream live output from a task |
aether task list
List tasks in the current project.| Flag | Description |
|---|---|
--status | Filter by status: running, awaiting_input, failed, aborted |
--started-at-op | Started-at filter operator: before, after, or equal |
--started-at-date | Started-at filter date (YYYY-MM-DD) |
--ended-at-op | Ended-at filter operator: before, after, or equal |
--ended-at-date | Ended-at filter date (YYYY-MM-DD) |
--order | Task order (created_at or agent_sidebar) |
--limit | Maximum tasks to return |
--page | Page number |
aether task create
Create a new task with a prompt.| Flag | Description |
|---|---|
--prompt | The prompt for the agent (required) |
--stdin | Read the prompt from standard input |
--agent-type | Override the project default agent type |
--model | Override the project default model |
--interaction-mode | Override the project default interaction mode |
--reasoning-effort | Override reasoning effort, or pass none |
--auto-fix-ci | Enable or disable CI auto-fix (true or false) |
--auto-fix-pr-comments | Enable or disable PR comment auto-fix (true or false) |
--auto-rebase | Enable or disable auto-rebase (true or false) |
--context-file | Include a workspace file path in prompt context; repeatable |
--attach | Attach a local image file; repeatable |
aether task get
Get details and status of a specific task.aether task respond
Send a follow-up message to a task that is waiting for input or still running.| Flag | Description |
|---|---|
--message | The response message (required) |
--stdin | Read the response from standard input |
--interaction-mode | Override the follow-up interaction mode |
--reasoning-effort | Override follow-up reasoning effort, or pass none |
--context-file | Include a workspace file path in follow-up context; repeatable |
--attach | Attach a local image file; repeatable |
aether task update
Update task settings used by future turns and automations.| Flag | Description |
|---|---|
--agent-type | Agent type |
--model | Model |
--interaction-mode | Interaction mode |
--reasoning-effort | Reasoning effort, or none |
--auto-fix-ci | Auto-fix CI (true or false) |
--auto-fix-pr-comments | Auto-fix PR comments (true or false) |
--auto-rebase | Auto-rebase (true or false) |
aether task abort
Cancel a running task.aether task watch
Stream live output from a running task. Attaches to the task’s output stream and displays events as they happen.Ctrl+C to detach from the stream without aborting the task.