From codescope
Finds all callers of a specified function using the find_callers tool and displays them as a call tree. Use to trace call chains or check function usage.
How this skill is triggered — by the user, by Claude, or both
Slash command
/codescope:cs-callersThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Find all functions that call the given function using the `find_callers` MCP tool.
Find all functions that call the given function using the find_callers MCP tool.
Function name: $ARGUMENTS
If no arguments given, ask which function to trace.
Show as a call tree:
handleRequest is called by:
<- routeHandler (src/routes.ts:45)
<- middleware (src/middleware.ts:12)
<- testHandleRequest (tests/routes.test.ts:8)
If no callers found, mention it might be a top-level entry point or unused.
npx claudepluginhub onur-gokyildiz-bhi/codescope --plugin codescopeLists all call sites that invoke a given ADVPL/TLPP function or method (reverse call graph). Useful for impact analysis, finding entry points, and debugging.
Finds function call sites in binaries using VulHunt Lua queries. Useful for analyzing callers of functions, checking call relationships, or identifying API invocations.
Builds reverse call tree from target function address by tracing callers upward multiple levels using xref scans and disassembly. Shows argument setup and call hierarchy.