archy_cycles
Find import cycles in Python projects. Uses Tarjan's algorithm to detect strongly connected components and self-loops, returning cycles sorted largest-first for modularity improvement.
Instructions
Find import cycles (Tarjan SCCs of size >= min_size, plus self-loops) in a Python project. Returns cycles sorted largest-first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| min_size | No | ||
| internal_only | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |