What problem does it solve?
This Skill solves accumulated .NET codebase “sloppiness” by running a disciplined cleanup pipeline that reduces warnings and dead code while minimizing the risk of breaking builds or tests.
Core Features & Use Cases
- 7-step verified cleanup pipeline: formats code, removes unused usings, fixes analyzer warnings, removes dead code safely, resolves TODOs, audits for sealed classes, and propagates CancellationToken through async chains.
- Safety-checked dead code removal: verifies compile-time references and also checks likely reflection/DI/serialization/string-based usages before deleting.
- Operational rigor: enforces verification between phases (build + test) and recommends committing each step separately for easy rollback.
Use it when you need to pay down tech debt after feature merges, before a release, or to reduce CI noise by eliminating warnings and improving async responsiveness.
Quick Start
Ask the AI to run the de-sloppify pipeline for your .NET solution to format the code, fix analyzer warnings, remove dead code safely, seal eligible classes, and propagate CancellationToken end-to-end, verifying with dotnet build and dotnet test after each step.