Semantic search over skill libraries using ColBERT embeddings...
ColBERT-based semantic search over skill libraries.
# Build the index (one-time, ~30s per skill with LLM analysis)
voyager skill index --verbose
# Search for skills
voyager skill find "resume where we left off"
voyager skill find "what should I work on next"
voyager skill find "turn this workflow into a skill"
voyager skill indexBuild or update the skill search index.
voyager skill index [OPTIONS]
Options:
--paths PATH — Additional skill directories to index--output DIR — Index location (default: ~/.skill-index/)--rebuild — Force rebuild from scratch--skip-llm — Skip LLM analysis (faster but lower quality)-v, --verbose — Show progressvoyager skill findSearch for relevant skills.
voyager skill find "your query" [OPTIONS]
Options:
-k, --top-k N — Number of results (default: 5)--index DIR — Index location--json — Output as JSON~/.skill-index/VOYAGER_SKILL_INDEX_PATH env var--output ./.claude/voyager/skill-index/Auto-discovers skills from:
./skills/./.claude/skills/local/./.claude/skills/generated/~/.claude/skills/Override with CLAUDE_SKILLS_PATH env var.
SKILL.md files in known locationsIndexing happens once; search is instant (no LLM calls).
See reference.md for implementation details.