hubs
Locate a subsystem's core functions by ranking highest-degree nodes in the union call graph, including indirect calls. Use the output to identify entry points for further code navigation.
Instructions
The subsystem's spine: the N highest-degree functions over the UNION call graph (direct CALLS + indirect function-pointer / ops-struct / runtime dispatch), ranked by fan_in + fan_out — no name knowledge needed. Each row carries node_id + handle (file:line), fan_in/fan_out/degree, and entry-point flags (exported | dispatch_target | callback). Language-agnostic cold-start: start here to find what a subsystem is built around, THEN callers/callees/read_body to traverse.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| n | No | ||
| limit | No | ||
| format | No | text (compact, default) | json (structured result page) | |
| offset | No |