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 |
respond <id> | Send a follow-up message to a running task |
abort <id> | Cancel a running task |
watch <id> | Stream live output from a task |
aether task list
List tasks in the current project.| Flag | Description |
|---|---|
--status | Filter by status: running, completed, failed, aborted |
aether task create
Create a new task with a prompt.| Flag | Description |
|---|---|
--prompt | The prompt for the agent (required) |
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) |
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.