with one click
wiki-search
// SOP wrapping vault_search — BM25 full-text search across vault pages. Returns ranked results with snippets.
// SOP wrapping vault_search — BM25 full-text search across vault pages. Returns ranked results with snippets.
SOP wrapping vault_add_edge — create a typed relationship between two vault pages.
SOP for wiki page creation/update — create or update a synthesized wiki page with edges and index update.
SOP wrapping vault_query_graph — traverse knowledge graph from a node to explore its neighborhood and context.
SOP for source page creation — write immutable source page capturing raw material, then update search index.
SOP wrapping vault_lint — run batch validation, report issues, optionally auto-fix safe problems.
Tactic for compiling research findings into vault pages — orchestrates page creation, updates, edge linking, and index maintenance. Minimum yield ≥3 page operations per invocation.
| name | wiki-search |
| description | SOP wrapping vault_search — BM25 full-text search across vault pages. Returns ranked results with snippets. |
| execution | sop |
| used-by | knowledge-compilation, vault-maintenance |
Search the vault for existing pages matching a query. Used before creating new pages (deduplication) and for finding related content.
vault_search
| Param | Required | Description |
|---|---|---|
| query | yes | Search query (natural language or keywords) |
| type | no | Filter by entity types (e.g., ["concept", "claim"]) |
| tags | no | Filter by tags |
| limit | no | Max results (default 20) |
vault_search with query and optional filtersReturns: { results_count: number, top_score: number, potential_duplicates: string[] }