delimit_handoff_create
Create a structured handoff receipt documenting completed tasks, pending items, blockers, and next actions to transfer work between agents.
Instructions
Create a handoff receipt when transitioning between agents (Pro).
When to use: at the end of a session or before passing work to another model — documents what was done, what's pending, and what the next agent should do first. When NOT to use: for general session summary (use delimit_session_handoff) or to acknowledge a receipt (delimit_handoff_acknowledge).
Sibling contrast: delimit_session_handoff is venture-scoped summary; delimit_soul_capture is richer cross-model state; this is the structured per-agent handoff with explicit completed/ not-completed/blockers/scope fields.
Side effects: writes a new handoff receipt via ai.handoff_receipts.create_receipt. The receiving agent should later call delimit_handoff_acknowledge.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_description | No | What the task was (one line). | |
| completed | No | Comma-separated completed items. | |
| not_completed | No | Comma-separated items not completed (with reasons). | |
| assumptions | No | Comma-separated assumptions made. | |
| blockers | No | Comma-separated blockers encountered. | |
| files_modified | No | JSON list of {path, change_type, summary} dicts, or empty to auto-detect. | |
| in_scope | No | Comma-separated in-scope items. | |
| out_of_scope | No | Comma-separated explicitly excluded items. | |
| next_action | No | First thing the receiving agent should do. | |
| priority | No | P0 / P1 (default) / P2. | P1 |
| to_model | No | Target model name or "any" (default). | any |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||