SOP wrapping vault_search — BM25 full-text search across vault pages.
Scanned 9/5/2026
Install to Claude Code
npx -y skills add yogsoth-ai/de-anthropocentric-research-engine --skill wiki-search --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Wiki Search?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/yogsoth-ai-wiki-search)More formats (shields.io, HTML) on the badges page.
---
name: wiki-search
description: SOP wrapping vault_search — BM25 full-text search across vault pages.
Returns ranked results with snippets.
execution: sop
---
# Wiki Search
Search the vault for existing pages matching a query. Used before creating new pages (deduplication) and for finding related content.
## HARD-GATE
<HARD-GATE>
Query must be non-empty and contain at least one meaningful term.
Do NOT search with single characters or pure stop words.
</HARD-GATE>
## Tool
`vault_search`
## Parameters
| 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) |
## Protocol
1. Formulate query from the concept/topic you need to check
2. Call `vault_search` with query and optional filters
3. Examine results: score > 5.0 indicates strong match (potential duplicate)
4. Return results to calling tactic with match assessment
## Yield
Returns: `{ results_count: number, top_score: number, potential_duplicates: string[] }`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!