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.

Forwards a queued follow-up message into a running Codex task’s active turn. Only Codex tasks support native steer. The target task must currently be running and must have at least one queued follow-up message; otherwise the endpoint returns 409 Conflict. Steer is a separate route from stop. Steer keeps the agent running and mid-stream; stop pauses the agent into awaiting_input.

Authentication

Requires a valid Bearer token.

Path Parameters

taskID
string
required
Task ID (UUID).

Response

Returns 200 OK with { "action": "steered" } on success.

Errors

StatusDescription
401Unauthorized — missing or invalid token
404Not Found — task does not exist or you do not have access
409Conflict — task is not a running Codex task, or has no queued follow-up
502Bad Gateway — workspace-service rejected the steer request