Save a durable memory or handoff
memory_saveWrite a durable note to the shared Tango memory vault so the next agent — in any harness — can pick it up. Use it for handoffs between tools ('continue the auth migration in Codex'), for context that outlives one session, and for anything a teammate would need to re-derive otherwise. Scope it to a client and, where relevant, a project or task; nothing is visible outside that workspace. Memory is unreviewed context, not policy: readers must verify important claims before acting on them. For durable team standards use update_client_context or log_project_decision instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | The memory itself, in markdown. | |
| tags | No | Free-form tags to search on later. | |
| title | Yes | A short, searchable title. | |
| client | No | Client/workspace name or @handle this memory belongs to. | |
| task_id | No | The task this memory came out of, if any. | |
| client_id | No | ||
| project_id | No | Narrow the memory to one project. | |
| source_harness | No | The harness writing this memory. | |
| target_harness | No | Harness this handoff is addressed to (e.g. 'codex', 'claude'). Leave empty for a general memory. |