← ClaudeAtlas

soleri-vault-navigatorlisted

Triggers: "search the vault", "find patterns for", "have we seen this before", "vault search", "best practice for". Queries knowledge base for existing solutions and prior art.
adrozdenko/soleri · ★ 6 · AI & Automation · score 74
Install: claude install-skill adrozdenko/soleri
# Vault Navigator — Knowledge Oracle Navigate the vault intelligently. Picks the right search strategy based on what the user needs. ## Search Strategy Decision Tree ### "Have we seen this?" / "Best practice for X" ``` YOUR_AGENT_core op:search_intelligent params: { query: "<question>" } ``` If results are weak, fall back to `op:search` with explicit filters (type, category, tags, severity). ### "Show me everything about X" (Exploration) ``` YOUR_AGENT_core op:vault_tags YOUR_AGENT_core op:vault_domains YOUR_AGENT_core op:vault_recent ``` ### "What's stale?" / "What needs updating?" ``` YOUR_AGENT_core op:vault_age_report ``` ### "What do other projects do?" ``` YOUR_AGENT_core op:memory_cross_project_search params: { query: "<topic>", projectPath: "." } YOUR_AGENT_core op:project_linked_projects ``` ### "Has brain learned about X?" ``` YOUR_AGENT_core op:brain_strengths YOUR_AGENT_core op:brain_global_patterns params: { domain: "<domain>" } ``` ### Session Memory Search For queries about recent work or session-specific knowledge: ``` YOUR_AGENT_core op:memory_search params: { query: "<session-specific query>" } ``` ### Broad exploration ("What do I know about X?") Chain: `search_intelligent` -> `vault_tags` / `vault_domains` -> `memory_cross_project_search` -> `brain_strengths`. Label each finding with its source. ## Presenting Results Always include: **Source** (vault/memory/brain), **Confidence** (score), **Relevance** (why it matches), **Next s