@cerefox/memory 1.14.2 → 1.14.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENT_GUIDE.md +1 -1
- package/dist/bin/cerefox.js +609 -415
- package/dist/server-assets/_shared/ef-meta/index.ts +3 -3
- package/dist/server-assets/_shared/mcp-tools/metadata-search.ts +69 -20
- package/dist/server-assets/_shared/mcp-tools/search.ts +259 -65
- package/dist/server-assets/supabase/functions/cerefox-search/index.ts +53 -15
- package/docs/guides/connect-agents.md +11 -6
- package/docs/guides/response-limits.md +25 -3
- package/package.json +3 -3
package/AGENT_GUIDE.md
CHANGED
|
@@ -49,7 +49,7 @@ Find documents using hybrid search (full-text + semantic vector similarity).
|
|
|
49
49
|
| `max_bytes` | No | Response size budget in bytes (default 200000). |
|
|
50
50
|
| `author` | No | Your agent name for attribution. Always set this. |
|
|
51
51
|
|
|
52
|
-
**Results format**: Each result shows `## Title [id: <uuid>] (score: X.XXX)` followed by content.
|
|
52
|
+
**Results format**: Each result shows `## Title [id: <uuid>] (score: X.XXX)` followed by content (in `hybrid` and `fts` modes the heading also carries the section path and the chunk index: `## Title › Section › Subsection [id: <uuid>] (chunk 4) (score: …)`).
|
|
53
53
|
Save the `document_id` from `[id: ...]` -- you need it for `cerefox_get_document` and `cerefox_ingest` updates.
|
|
54
54
|
|
|
55
55
|
For large documents, results may be partial (`is_partial` flag). Use `cerefox_get_document` with the ID to get the full text.
|