What problem does it solve?
Rust workspaces often accumulate confusing namespace footguns—type name collisions across crates, module shadowing that changes what references resolve to, and duplicate definitions that silently create migration debt.
Core Features & Use Cases
- Workspace-wide overlap audit: detects cross-crate type collisions, module shadowing, within-crate duplicate type names, and overly common function names that may indicate missing abstractions.
- Single-crate hygiene audit: narrows findings to one crate and guides investigation using the crate’s module tree and overlap filtering.
- Decision-guided remediation: uses consumer-usage patterns (including who-uses summaries and semantic similarity checks) to rank severity and recommend actions like renaming modules, merging duplicates, or factoring test fixtures.
Quick Start
Ask the skill to audit a Rust workspace at the provided workspace path for Rust type overlaps and naming hygiene.