Loading...
Loading...
Semantic file discovery via `vexor`. Use whenever locating where something is implemented/loaded/defined in a medium or large repo, or when the file location is unclear. Prefer this over manual browsing.
npx skill4agent add scarletkc/vexor vexor-clivexorvexorvexor "<QUERY>" [--path <ROOT>] [--mode <MODE>] [--ext .py,.md] [--exclude-pattern <PATTERN>] [--top 5] [--format rich|porcelain|porcelain-z]--path/-p--mode/-m--ext/-e.py,.md--exclude-pattern.js**/*.js--top/-k--include-hidden--no-respect-gitignore--no-recursive--formatrichporcelainporcelain-z--no-cacheautonameheadbriefcode.py/.js/.tsoutlinefull--include-hidden--no-respect-gitignore--format porcelain--format porcelain-zvexor search --helpvexor doctorvexor config --show# Find CLI entrypoints / commands
vexor search "typer app commands" --top 5# Search docs by headings/sections
vexor search "user authentication flow" --path docs --mode outline --ext .md --format porcelain# Locate config loading/validation logic
vexor search "config loader" --path . --mode code --ext .py# Exclude tests and JavaScript files
vexor search "config loader" --path . --exclude-pattern tests/** --exclude-pattern .js--ext--exclude-pattern