remember
Store durable knowledge—decisions, gotchas, procedures—so it survives context compaction. Background indexing automatically scrubs secrets and PII for secure local search.
Instructions
Use remember when you learn something durable — a decision, a gotcha, a non-obvious fact, a procedure — so it survives context compaction.
remember = a specific durable fact, ingest = a URL, learn = a distilled lesson that gets retrieval preference.
The daemon scrubs secrets/PII before indexing. Returns immediately — the daemon indexes in the background.
Args:
content: The text content to remember.
document_name: Name for the document (e.g., 'notes.md').
overwrite: If true, replace existing data for this document.
collection: Collection name. Leave empty to route by agent_handle —
memory-<handle> when a handle is given, else default.
format_hint: Format hint: 'auto', 'plain', 'markdown', 'latex'.
agent_handle: Agent that owns this memory (e.g. "rmh").
memory_type: Memory classification: fact, observation, opinion,
procedure. 'lesson' is reserved for the learn tool.
summary: One-line summary of the content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| summary | No | ||
| overwrite | No | ||
| collection | No | ||
| format_hint | No | auto | |
| memory_type | No | ||
| agent_handle | No | ||
| document_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |