find_indirection_hotspots
Identify symbols accessed through the most layers of indirection to uncover hidden coupling and deeply wrapped dependencies. Returns ranked offenders with full call chains.
Instructions
Find symbols most heavily accessed through layers of indirection (A → B → C). Returns worst offenders ranked by score with full call chains. Useful for identifying hidden coupling and deeply wrapped dependencies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of results to skip for pagination (default: 0). | |
| take | No | Number of results to return (default: 30). | |
| maxDepth | No | Max call chain depth to trace (default: 5). | |
| includeTests | No | Include test files in the analysis (default: false). | |
| minDirectCallers | No | Minimum direct callers required to be a candidate (default: 3). Lower = more results but slower. | |
| maxChainsPerOffender | No | Max example chains to show per offender (default: 5). |