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.
npx claudepluginhub onur-gokyildiz-bhi/codescope --plugin codescopeThis skill uses the workspace's default tool permissions.
Find all functions that call the given function using the `find_callers` MCP tool.
Finds function call sites in binaries using VulHunt Lua queries. Useful for analyzing callers of functions, checking call relationships, or identifying API invocations.
Visualizes Rust function call graphs using LSP call hierarchy. Shows callers, callees, or bidirectional with depth and direction options. Triggers on /rust-call-graph and call-related queries.
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.
Share bugs, ideas, or general feedback.
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.