What problem does it solve? Frontend codebases accumulate dead code, duplicated logic, circular dependencies, and overly complex modules over time, making reviews harder and refactors riskier. This Skill runs static analysis on TypeScript and JavaScript projects to surface these issues as actionable diagnostics. ## Core Features & Use Cases - Dead Code Detection: Identify unused exports, files, and modules that can be safely removed. - Duplication & Circular Dependency Analysis: Find repeated code blocks and dependency cycles that undermine architecture. - Complexity Hotspots: Locate overly complex modules that need refactoring attention. - Use Case: After a frontend change, run the dead-code check during the review-fix stage and include the diagnostics in the review report to catch leftover unused code before merging. ## Quick Start Run the fallow analysis on the frontend codebase and report any unused code, circular dependencies, and complexity hotspots.