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.
Traces symbol usages across a codebase, builds call hierarchies, and groups references by type (definition, import, usage). Requires grepika MCP server.
Queries symbol-level code structure using codegraph CLI: callers, callees, change impact, and symbol source trails.