Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.runaether.dev/llms.txt

Use this file to discover all available pages before exploring further.

aether run

Create a task from a prompt and stream the agent’s response in real time. This is the quickest way to interact with the agent from your terminal.

Usage

aether run <prompt> [flags]

Flags

FlagDescription
--no-watchCreate the task without streaming output. Prints the task ID and exits immediately.
--stdinRead the prompt from standard input
--agent-typeOverride the project default agent type
--modelOverride the project default model
--interaction-modeOverride the project default interaction mode
--reasoning-effortOverride reasoning effort, or pass none
--auto-fix-ciEnable or disable CI auto-fix (true or false)
--auto-fix-pr-commentsEnable or disable PR comment auto-fix (true or false)
--auto-rebaseEnable or disable auto-rebase (true or false)
--context-fileInclude a workspace file path in prompt context; repeatable
--attachAttach a local image file; repeatable
Global flags are also available. See CLI Overview.

Examples

Send a quick task

aether run "fix the login bug"
The agent starts working immediately. Output streams to your terminal as the agent reads files, runs commands, and writes code.

Create a task without streaming

aether run "add dark mode" --no-watch
Task created: task_a1b2c3d4
Use aether task watch to stream the output later:
aether task watch task_a1b2c3d4

Override the project

aether run "update the README" -p proj_xyz

Read from stdin with context

cat prompt.txt | aether run --stdin --context-file src/auth/login.ts --attach screenshot.png

Get JSON output

aether run "list all API routes" --json --no-watch
{
  "id": "task_a1b2c3d4",
  "status": "running",
  "project_id": "proj_xyz"
}