What problem does it solve? Setting up Roslynator analyzers and its CLI in a .NET repository involves choosing between NuGet analyzer packages and CLI workflows, resolving rule severity ownership in .editorconfig, and avoiding conflicts with existing analyzers like StyleCop or SDK analyzers. ## Core Features & Use Cases - Analyzer Package Setup: Adds Roslynator.Analyzers to projects for build-enforced C# diagnostics with severity configured in .editorconfig. - CLI Workflows: Guides adoption of roslynator analyze, fix, format, and find-unused commands for CI or controlled local cleanup. - Rule Configuration References: Provides detailed .editorconfig templates and a catalog of RCS rules for libraries, applications, and test projects. - Use Case: A team wants to find unused code across a solution; the skill bootstraps the Roslynator CLI, runs find-unused, and documents repeatable commands in AGENTS.md and CI. ## Quick Start Ask the agent to add Roslynator analyzers to this solution and configure rule severity in .editorconfig.