detect_architectural_cycles
Detect circular import dependencies in TypeScript projects to identify tight coupling and unpredictable module initialization order before refactoring.
Instructions
Detects circular import dependencies — A imports B which imports C which imports A. Cycles cause unpredictable module initialization order and indicate tight coupling. Use to answer: are there circular dependencies I need to break before refactoring?
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_root | Yes | Absolute path to the TypeScript project root (must contain tsconfig.json) |