How this command is triggered — by the user, by Claude, or both
Slash command
/known:search <query> [flags]The summary Claude sees in its command listing — used to decide when to auto-load this command
Search the knowledge graph with structured output and similarity scores. Use this when you need entry IDs, JSON output, or score-based evaluation. For general retrieval, use `/known:recall` instead — it uses hybrid search by default and returns plain text optimized for LLM context. ## When to Use - **Need entry IDs** to update, delete, link, or inspect entries - **Need JSON output** for programmatic processing (`known --json search`) - **Need similarity scores** to evaluate result quality - **Pure vector search** without the hybrid text+graph expansion that recall adds ## Instructions ...
Search the knowledge graph with structured output and similarity scores. Use this when you need entry IDs, JSON output, or score-based evaluation.
For general retrieval, use /known:recall instead — it uses hybrid search
by default and returns plain text optimized for LLM context.
known --json search)known search '<query>' [flags]
Present the results with their IDs and similarity scores.
Suggest follow-up actions based on the results:
/known:forget to delete an unwanted entryknown show <id> to see full details and relationshipsknown update <id> --content '...' to correct an entry| Flag | Default | Purpose |
|---|---|---|
--scope | auto (from cwd) | Scope to search within |
--limit | 5 | Maximum results |
--threshold | 0.4 | Minimum similarity (raise for precision) |
--recency | 0 | Recency weight (0=pure similarity, 1=pure recency) |
--text | false | Use FTS5 full-text search instead of vector search |
--hybrid | false | Enable vector + graph expansion (recall does this by default) |
--expand-depth | 1 | Graph expansion hops (only with --hybrid) |
--label | all | Filter by label (repeatable) |
Global flags go before the subcommand:
known --json search '<query>' # JSON output
known --quiet search '<query>' # suppress non-essential output
known search 'deployment process' --limit 5
known search 'API rate limits' --hybrid --expand-depth 2
known --json search 'database schema' --scope backend
known search 'auth' --threshold 0.5 --recency 0.3
known search --text 'rate-limit'
npx claudepluginhub dpoage/known --plugin known/knowledge-searchSearches OpenArche knowledge stores using vector embeddings, prioritizing repository-local over global, with expansion of linked neighbors and scored/tag results.
/assist-searchSearches lm-assist knowledge base across entries, milestones, and architecture via API. Displays ID, title, relevance score, excerpt per result, total count. Supports --limit flag.
/recallSearches the KongCode memory graph for past knowledge matching a query and displays results with source types, dates, and relevance scores.
/searchSearches Glean enterprise knowledge base with a query, showing top relevant results with titles, sources, recency indicators, snippets, and relevance notes.
/lavra-recallSearches the local knowledge base by keywords, bead ID, or flags (--stats, --recent, --topic) and injects relevant context into the current session.
/searchSearches Claude's persistent memories for specific content, patterns, or keywords. Returns matching memories with relevance scores, human-readable timestamps, and highlighted keywords in context.