brief_memory
Create structured briefs by retrieving and summarizing scattered memories into indexed, reusable documents for persistent knowledge retrieval.
Instructions
Create a structured memory brief by retrieving and summarizing relevant memories, then persist it as a reusable asset indexed for future recall. Use this when you want to consolidate scattered knowledge on a topic into a single retrievable document. Side effect: writes a new brief asset to disk and indexes it in the vector store for future search.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language topic or task to brief, e.g. 'deployment pipeline architecture decisions' | |
| limit | No | Maximum number of source memories to include in the brief (default: 8) | |
| scope | No | Restrict search to a specific scope, e.g. 'project:myapp'. Omit to use the 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 that tunes ranking weights: 'writing' for narrative, 'debug' for technical, 'fact-check' for high-precision | |
| title | No | Human-readable title for the brief asset, e.g. 'Q1 Auth Migration Summary'. Auto-generated if omitted |