Delimit Agent Answer
delimit_agent_answerAnswer a bound worker question to resume its session and keep the task on track, distinguishing routine from owner-backed answers.
Instructions
Answer a bound worker question and resume its muse session.
When to use: after delimit_agent_poll binds a worker QUESTION: block (question_id + receipt_id) to the task. The lead answers routine technical questions directly (owner_backed=False); only pass owner_backed=True when the answer carries a reserved owner decision. For muse workers the SAME session is resumed with the answer as its prompt file, so question → answer → task stays bound even if the lead process was replaced. When NOT to use: to ask the worker something new (that is a fresh dispatch), to close the task (use delimit_agent_complete), or to abort the worker (use delimit_agent_cancel). Do not answer twice — the backend rejects a second answer to the same question_id.
Sibling contrast: delimit_agent_poll surfaces the question; this resolves it. delimit_agent_status shows the waiting question and its receipt; delimit_agent_complete closes the task after the resumed worker finishes.
Side effects: persists the answer on the question record (owner_backed recorded exactly as given, never inferred), acknowledges the question's handoff receipt with the answer text, and — for muse tasks whose worker already reached completed/uncertain — resumes the SAME session via the contained launcher with the answer as the prompt file (a fresh output prefix per resume; prior transcripts preserved). No relaunch happens while the worker is still running.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| answer | Yes | Answer text for the worker. Required. | |
| task_id | Yes | Task id carrying the bound question (AGT-xxx). Required. | |
| question_id | Yes | Question id from delimit_agent_poll (Q-xxx). Required. | |
| owner_backed | No | If True, the answer carries an owner decision. Default False (routine lead answer). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||