memory_store
Store durable memories in a graph for RAG recall later. Connect related facts and decisions with links to build a searchable knowledge base.
Instructions
Save a durable memory to the graph (RAG-recallable later). Use for decisions, facts, gotchas, and links between them. scope: "project" (this repo/branch, the default), "global" (all your work), or a custom bucket name. Pass a stable id and links to build a graph you can walk.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Stable id (kebab-case) so others can link to it. | |
| tags | No | ||
| text | Yes | The fact/decision/note to remember. | |
| type | No | e.g. decision, fact, gotcha, todo (default: note). | |
| links | No | Ids of related memories (graph edges). | |
| scope | No | "project" | "global" | custom bucket. | |
| title | No | Short title (improves recall + linking). |