store
Store memory or coordination signals in a bridge for later retrieval. Use 'memory' for durable knowledge and 'signal' for handoff events.
Instructions
Store one entry in the bridge for later retrieval or coordination.
Use this tool when you want to persist a compact memory record or write a signal
that another workflow can poll later. Write durable knowledge as kind="memory"
and transient coordination events as kind="signal".
Returns the stored entry identifier, timestamp, and duplicate information. Repeated
memory writes may deduplicate; signal writes are intended to remain append-like.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | `memory` stores durable knowledge for later retrieval. `signal` stores pollable coordination events for handoff or workflow triggers. | memory |
| tags | No | Optional stable labels for retrieval and filtering, for example `kind:gotcha`, `domain:retrieval`, or `project:demo-app`. | |
| actor | No | Optional writer identity such as an agent, reviewer, or user profile. | |
| title | No | Optional short label for UI display or scanning. Keep it concise and stable when possible. | |
| content | Yes | Machine-readable memory payload to persist. Prefer compact claims, fixes, decisions, or signals over long transcript-style prose. | |
| namespace | Yes | Logical memory bucket to write into, such as `project:<workspace>`, `domain:<name>`, or `global`. | |
| expires_at | No | Optional ISO-8601 expiry timestamp for a signal. Use this when a coordination event should stop being claimable after a deadline. | |
| session_id | No | Optional session or thread identifier used to trace entries back to one conversation or work unit. | |
| source_app | No | Optional source name for the writer, such as `codex`, `codex-session-watcher`, or another local automation. | |
| ttl_seconds | No | Optional relative expiry in seconds for a signal. Useful for short-lived handoff or review events. | |
| source_model | No | Optional external model identifier such as `gpt-5.4` or `gemini-2.5-pro`. | |
| source_client | No | Optional external client identifier such as `codex`, `antigravity`, or `claude-code`. | |
| correlation_id | No | Optional shared identifier used to link related writes, handoffs, or workflow events across entries. | |
| client_transport | No | Optional transport label such as `stdio`, `http`, or `sse`. | |
| client_workspace | No | Optional external client workspace root or project label when useful for provenance. | |
| client_session_id | No | Optional external client session or thread identifier when the caller can provide one. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||