What problem does it solve? TypeScript and JavaScript monorepos accumulate unused files, exports, dependencies, and copy-pasted code that slow builds and obscure architecture. This Skill runs the fallow Rust CLI to audit codebases, gate PRs on regressions, and safely auto-remove dead code with evidence. ## Core Features & Use Cases - Dead Code and Dependency Audits: Find unused files, exports, types, dependencies, circular imports, and architecture boundary violations with sub-second static analysis and 95 auto-detecting framework plugins. - PR Quality Gates and CI Regression Baselines: Snapshot existing findings with --save-regression-baseline, then fail CI only on newly introduced issues using fallow audit --base <branch> or --fail-on-regression. - Duplication and Complexity Analysis: Detect copy-pasted code with strict-to-semantic clone modes and rank churn-weighted refactoring targets via cyclomatic/cognitive complexity hotspots. - Use Case: Before a refactor of a T3 Turbo monorepo, run fallow dead-code --format json --quiet --changed-workspaces origin/main to scope analysis to changed workspaces, preview removals with fallow fix --dry-run, then apply with fix --yes after user sign-off. ## Quick Start Ask the agent to audit this TypeScript repo for dead code and unused dependencies using fallow with JSON output, then preview safe auto-fixes before applying them.