aim_memory_read_all
Read all memories and their links from a knowledge graph database. Choose JSON for programmatic use or pretty for human-readable output.
Instructions
Read all memories in a database. Returns every stored memory and their links.
FORMAT OPTIONS:
"json" (default): Structured JSON for programmatic use
"pretty": Human-readable text format
DATABASE: Reads from the specified 'context' database, or master database if not specified.
EXAMPLES:
aim_memory_read_all({}) - JSON format
aim_memory_read_all({format: "pretty"}) - Human-readable
aim_memory_read_all({context: "work", format: "pretty"}) - Work database, pretty
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | Optional memory context. Reads from the specified context's knowledge graph or master database if not specified. | |
| location | No | Optional storage location override. 'project' for .aim directory, 'global' for configured directory. | |
| format | No | Output format. 'json' (default) for structured data, 'pretty' for human-readable text. |