Fetch Skill
Retrieve the exact source of a named symbol. Read 20 lines instead of 800.
Usage
Called with a symbol name, e.g.: validateToken, AuthService, getUserById, Invoice
Step 1 — Look up in index
# Read the index
cat .claude/codemunch/index.json | python3 -c "
import json, sys
idx = json.load(sys.stdin)
name = '$SYMBOL_NAME'
matches = [s for s in idx['symbols'] if s['name'].lower() == name.lower()]
print(json.dumps(matches, indent=2))
" 2>/dev/null
# Or with jq
[Description truncada. Veja o README completo no GitHub.]