<!-- GENERATED by docs/scripts/gen-cli-reference — DO NOT EDIT.
Source of truth: the cobra command definitions in cmd/axiom/cmd/.
Regenerate from the repo root with: go run ./docs/scripts/gen-cli-reference -->
axiom memory
Inspect and manage agent memory for your flows
Inspect and manage agent memory sessions for your Axiom flows.
All commands require an active login (run "axiom login" to authenticate). Memory data lives in the Axiom platform — there is no local state.
Examples:
axiom memory ls # list flows that have memory
axiom memory ls --flow <flow-id> # list sessions for a flow
axiom memory show <session-id> # show conversation + semantic memories
axiom memory search --flow <id> <query> # semantic search over memories
axiom memory end <session-id> # close a session (triggers consolidation)
axiom memory rm <session-id> # delete a session
axiom memory rm --flow <id> --all # delete all memory for a flowUsage
axiom memory [flags]
axiom memory [command]Flags
| Flag | Shorthand | Type | Default | Description |
|---|---|---|---|---|
--help | -h | bool | help for memory |
Subcommands
| Command | Description |
|---|---|
| axiom memory end | Close a session and trigger memory consolidation |
| axiom memory ls | List flows with memory, or sessions for a specific flow |
| axiom memory rm | Delete a session or all memory for a flow |
| axiom memory search | Semantic search over memories for a flow |
| axiom memory show | Show conversation history and semantic memories for a session |
See also
- axiom — Axiom CLI — build and push node packages
- axiom memory end — Close a session and trigger memory consolidation
- axiom memory ls — List flows with memory, or sessions for a specific flow
- axiom memory rm — Delete a session or all memory for a flow
- axiom memory search — Semantic search over memories for a flow
- axiom memory show — Show conversation history and semantic memories for a session
- Guide: Inspect agent memory
Related