From supp
Find symbol definitions by name with ranked results — use INSTEAD OF Grep/Glob when locating functions, types, structs, traits, or constants. TRIGGER when: you need to find where a function, type, struct, trait, class, constant, or variable is defined, or locate a symbol by name in the codebase. DO NOT TRIGGER when: searching for arbitrary text patterns, log messages, config values, or string literals (use Grep for those)
How this skill is triggered — by the user, by Claude, or both
Slash command
/supp:symThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run the following command and show the user the output:
Run the following command and show the user the output:
supp sym --json $ARGUMENTS
/why: first find the symbol with /sym, then deep-dive it with /why/why — it shows definition, callers, and dependencies/ctx — it bundles source with dependency context/tree/diff/sym build_index — find where build_index is defined/sym --kind function parse — find all functions matching "parse"/sym Config — find Config types/structs across the projectnpx claudepluginhub andrewpberg/supp --plugin suppSearches the Codescope knowledge graph for functions, methods, or symbols matching a name pattern. Displays results in a table grouped by file with counts. Use to locate code symbols by name.
AST-aware code search, symbol navigation, and dependency graph analysis via the gcode CLI. Essential for exploring codebases, finding functions/classes, understanding call graphs, and checking blast radius before changes.
Guides token-efficient code navigation using ctags index to find symbol definitions and references instead of broad grep searches.