export_memory
Export distilled memory briefings to Markdown or JSON files for offline access. Create portable knowledge snapshots from persistent storage to archive project context and review coding decisions without server dependency.
Instructions
Export a distilled memory briefing to a markdown or JSON file on disk. Side effect: writes an export artifact file. Use when you need an offline-readable snapshot of knowledge on a topic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Topic or task to export, e.g. 'auth migration decisions' | |
| limit | No | Maximum number of source memories to include in the export (default: 8) | |
| scope | No | Restrict to a specific scope, e.g. 'project:recallnest'. Omit to use default scope | |
| sessionId | No | Session identifier to infer session-scoped search, e.g. 'abc123' | |
| allScopes | No | Set to true to search across all scopes instead of the default scope | |
| profile | No | Retrieval profile for ranking, e.g. 'writing' | |
| format | No | Export format: 'md' for markdown, 'json' for structured JSON | md |