Dispatch Tasks
Use POST /api/v1/scribes/:scribe_id/requests to hand work to a Scribe. The endpoint returns immediately with a request receipt.
Required payload
{
"task": {
"summary": "What the Scribe should do",
"acceptance_criteria": "How done should be judged"
}
}
Fields
| Field | Required | Notes |
|---|---|---|
task.summary |
Yes | Use a self-contained instruction. The Scribe does not see the caller's hidden context. |
task.acceptance_criteria |
No | Recommended. This becomes the review standard for completion. |
task.title |
No | Generated if omitted. |
task.attachments |
No | Up to 5 URL attachments. |