archy_cycles
Find import cycles in Python projects using Tarjan's algorithm, returning strongly connected components larger than a minimum size, sorted by size.
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 |