Export memory contents (requires explicit_user_intent)
memory_exportExport memory store to JSON, JSONL, or Markdown. Optionally filter by update time for backup or inspection.
Instructions
Dump the memory store as JSON, JSONL, or Markdown. Optional since/until window on updated_at. Use for backup/inspection. Requires explicit_user_intent: true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| since | No | Unix ms timestamp — include only entries with updated_at >= since. | |
| until | No | Unix ms timestamp — include only entries with updated_at <= until. | |
| format | Yes | Output format: json (single object), jsonl (one entry per line), markdown (human-friendly). | |
| explicit_user_intent | Yes | Must be true. Set ONLY when the current user message explicitly asks the agent to modify memory (set/forget/export). Do not infer intent. |