Semantic file discovery via `vexor` (use when you need intent-based file lookup in a repo).
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
vexor (use when you need intent-based file lookup in a repo).
license: MITUse Vexor as a fast "semantic grep": build (or refresh) an index for a directory, then query it to find the most relevant files/sections for the current task.
Use this skill when you need intent-based file discovery (not exact string match), e.g.:
vexor doctor or python -m vexor --help.vexor is missing: python -m pip install vexor (or pip install vexor / pipx install vexor).vexor index --path <ROOT> [--mode <MODE>] [--ext .py,.md] [--include-hidden] [--no-recursive]vexor search "<QUERY>" --path <ROOT> [--mode <MODE>] [--ext .py,.md] [--top 10]These flags must match between index and search:
--path, --mode (defaults to auto when omitted)--include-hidden, --no-recursive--respect-gitignore/--no-respect-gitignore (default: respect, including nested .gitignore)--ext (repeatable; each value may be a comma/space-separated list like --ext .py,.md or --ext '.py .md')auto (Python → code, Markdown → outline, small → full, large → head)nameheadoutlinecodefull (more expensive; many chunks per file)Lines column when available.--format porcelain / porcelain-z emits:
rank similarity path chunk_index start_line end_line preview
(line fields may be - if unavailable).vexor index for the same cache key.--no-respect-gitignore to both commands.vexor config --show and let the user fix them.