knowledge_recall
Retrieve stored knowledge pages by text query or exact slug, returning full page details with citations or compact index entries. Filters by domain and excludes archived pages for precise recall.
Instructions
Search the knowledge store with LIKE matching over title, body, and domain, or fetch one page exactly by slug. Never surfaces archived pages. Two detail tiers: "full" returns whole entity pages (the synthesis unit) and stamps last_accessed/hit_count; "index" returns compact slug/domain/snippet entries without stamping. Defaults: full when a query is given, index when browsing without one. Full output is size-guarded — overflow results degrade to index entries; recall by slug to read them. Prefer slug over query when you know the page — token matching can hit cross-references in other pages' bodies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | Exact-slug lookup — returns that single page in full detail and stamps access. Takes precedence over query/domain/limit. | |
| limit | No | Maximum results to return (default: 10) | |
| query | No | Search terms — matched against title, body, and domain. Omit to browse (returns an index of non-archived pages up to limit). | |
| detail | No | Output tier override. "index": compact listing, no body, no access stamping. "full": whole pages with citations. Default: full with a query, index without. | |
| domain | No | Filter by domain prefix, inclusive of the exact domain (e.g. "music/gear" matches "music/gear" and "music/gear/elektron") | |
| sort_by_verified | No | Stale-first ordering for the verification engine: verified_at ASC with never-verified pages first. Index entries gain a "verified:" stamp so the SLA filter can run from the listing alone. |