callidescope-trace
Installation
SKILL.md
Running callidescope and reading what it says
Callidescope builds one call graph for a TypeScript workspace and measures the
shape of it. It follows calls through injected dependencies — the hop from
this.someService.load() into SomeService.load — which is the edge no
file-at-a-time tool can see, and where most of a framework codebase's control
flow actually lives.
Three commands, answering three different questions:
npx callidescope # the whole workspace
npx callidescope depth --addresses src/foo.service.ts#FooService.bar # one callable, vertically
npx callidescope breadth --addresses src/foo.service.ts#FooService.bar # one callable, horizontally