Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Worker-side callback and completion rules for assigned and handed-off tasks in CAO
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | -5% | 0% |
| case-02 | ✗→✓ | ▲ Improved | -11% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -7% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 6% | 0% |
| case-10 | ✗→✓ | ▲ Improved | -5% | 0% |
Use this skill when acting as a worker agent inside CLI Agent Orchestrator.
This skill explains how workers should interpret assigned versus handed-off work, when to call send_message, and how to report results back cleanly.
Workers receive tasks through one of two orchestration modes:
handoff: blocking work where the orchestrator captures your final output automaticallyassign: non-blocking work where you must actively return results to the requesting terminalDepending on provider and CAO behavior, a handoff may be made explicit in the task text. For example, Codex workers currently receive a [CAO Handoff] prefix for blocking handoffs. Other providers may rely on the task wording and orchestration context instead.
When the task is a blocking handoff, complete the work and present the result in your normal response. The orchestrator captures that response automatically.
Do not call send_message for ordinary handoff completion unless the task explicitly asks for additional side-channel communication.
When the task came through assign, send your results back after you finish the work:
send_message(message=...) — omitting receiver_id routes the result to the terminal that assigned the task (the recorded caller). This is the reliable default.[Assigned by terminal ...]), pass that ID as receiver_id instead.Do not stop after writing a normal response if the assignment explicitly requires a callback. The requesting terminal depends on send_message to receive the result.
Your own CAO_TERMINAL_ID identifies your terminal, not the callback target. Never pass it as receiver_id.
Return results that are easy for the supervisor to merge into a larger workflow:
If the task asks for progress updates, use send_message for those updates too. Otherwise prefer one final callback with the completed deliverable.
If the task asks you to create files, write them before reporting completion. When sending results back to a supervisor, include absolute file paths so the supervisor can continue the workflow without ambiguity.
receiver_id).send_message is available and the task requires a callback, call it directly rather than ending with prose alone.Other measured skills in the registry, with their headline benchmark lift.