Find all call sites of a function (blast radius analysis)
Find all direct call sites of a specific function to understand refactoring impact or deprecation scope before making changes.
/plugin marketplace add nathanvale/side-quest-marketplace/plugin install the-cinema-bandit@side-quest-marketplace<function-name>claude-haiku-4-5-20251001Query PROJECT_INDEX.json to find all places that call a function.
bun run ${CLAUDE_PLUGIN_ROOT}/src/cli.ts callers $ARGUMENTS
The CLI will analyze the call graph and use grep fallback if needed.
Found N callers of `functionName`:
| File | Line | Context |
|------|------|---------|
| cli.ts | 42 | const result = functionName(args) |
| service.ts | 89 | await functionName() |
Impact Summary:
- Direct callers: N
- Files affected: M
- Test files: K (if including tests)
Note to user: This finds direct calls only. For transitive callers (callers of callers), use /kit:blast.