Search Skill
Find symbols without reading any files. Returns a compact index listing.
Search modes
By name (exact or fuzzy)
# Exact
jq '[.symbols[] | select(.name == "validateToken")]' .claude/codemunch/index.json
# Case-insensitive
jq '[.symbols[] | select(.name | ascii_downcase | contains("validate"))]' .claude/codemunch/index.json
# Fuzzy: split query into chars and find symbols containing all of them in order
# e.g. "vt" matches "validateToken", "visitTree"
By
[Description truncada. Veja o README completo no GitHub.]