packages/forge/src/skills/soleri-vault-navigator/SKILL.md
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.
npx skillsauth add adrozdenko/soleri soleri-vault-navigatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Navigate the vault intelligently. Picks the right search strategy based on what the user needs.
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).
YOUR_AGENT_core op:vault_tags
YOUR_AGENT_core op:vault_domains
YOUR_AGENT_core op:vault_recent
YOUR_AGENT_core op:vault_age_report
YOUR_AGENT_core op:memory_cross_project_search
params: { query: "<topic>", projectPath: "." }
YOUR_AGENT_core op:project_linked_projects
YOUR_AGENT_core op:brain_strengths
YOUR_AGENT_core op:brain_global_patterns
params: { domain: "<domain>" }
For queries about recent work or session-specific knowledge:
YOUR_AGENT_core op:memory_search
params: { query: "<session-specific query>" }
Chain: search_intelligent -> vault_tags / vault_domains -> memory_cross_project_search -> brain_strengths. Label each finding with its source.
Always include: Source (vault/memory/brain), Confidence (score), Relevance (why it matches), Next step (how to apply).
If all vault strategies return nothing, search the web. If web finds something useful, offer to capture: op:capture_quick.
| Op | When to Use |
| ------------------------------------------- | ------------------------------ |
| search_intelligent | Default semantic search |
| search | Structured search with filters |
| vault_tags / vault_domains | Browse knowledge landscape |
| vault_recent | Recently modified entries |
| vault_age_report | Stale entries |
| memory_cross_project_search | Cross-project search |
| memory_search | Session and recent work search |
| brain_strengths / brain_global_patterns | Proven patterns |
| capture_quick | Capture web findings |
testing
Triggers: "terse mode", "be brief", "less tokens", "fewer tokens", "compress output", "caveman", or invokes /terse. Token-efficient responses with full technical accuracy.
tools
Triggers: "compress this file", "compress CLAUDE.md", "compress memory", "shrink this", "reduce tokens in file", or invokes /compress. Compresses natural language files to save input tokens.
testing
Triggers: "release", "bump version", "publish packages", "cut a release", "version bump", "npm publish". Bumps monorepo versions, commits, tags, pushes to trigger CI release. Use deliver-and-ship for quality gates.
development
Triggers: "implement X", "build Y", "fix Z", "add feature", or any work task needing planning + execution. Full orchestration loop: plan, execute, complete with vault context and brain recs.