get_circular_deps
Identify circular dependencies in your project using Tarjan's SCC algorithm. Returns groups of files forming dependency cycles to help resolve coupling issues before refactoring.
Instructions
Detect circular dependencies in the project using Tarjan's SCC algorithm. Returns groups of files that form dependency cycles. Use this before refactoring to identify problematic coupling. Requires a prior reindex. No API call needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_cycles | No | Maximum number of cycles to return (default: 50) |