$npx skillfedfor your agent

resharper-clt

This skill deploys the free JetBrains ReSharper Command Line Tools to inspect and refactor .NET repositories using `jb inspectcode` and `jb cleanupcode`. It manages durable team settings through solution-level configuration, enforces quality gates by surfacing and fixing issues rather than ignoring them, and integrates with your build and test pipeline.

resharper-clt runs JetBrains ReSharper Command Line Tools to inspect and clean up .NET code with enforced quality gates.

AI-generated summary based on this skill's SKILL.md

★ 463  35 MITupdated by managedcode

Decision gist · record as of 2026-07-25

resharper-clt runs JetBrains ReSharper Command Line Tools to inspect and clean up .NET code with enforced quality gates. This skill deploys the free JetBrains ReSharper Command Line Tools to inspect and refactor .NET repositories using `jb inspectcode` and `jb cleanupcode`. It manages durable team settings through solution-level configuration, enforces quality gates by surfacing and fixing issues rather than ignoring them, and integrates with your build and test pipeline.

manual: git clone https://github.com/managedcode/dotnet-skills → cp -r dotnet-skills/catalog/Tools/ReSharper-CLT/skills/resharper-clt ~/.claude/skills/resharper-clt
catalog/Tools/ReSharper-CLT/skills/resharper-clt/SKILL.md · version 601c350c

Use it when

  • resharper-clt provides setup guidance for bootstrapping the ReSharper CLT in your existing .NET solution with proper verification.
  • resharper-clt integrates `jb inspectcode` and `jb cleanupcode` into CI/CD pipelines as quality gates.

Verify before relying

Read SKILL.md below before installing (5 files). Open directory: indexed for reading, not audited.

Same gist for agents: .md · .json

Install

managedcode/dotnet-skills/resharper-clt · repository language: C#

Open directory. Skills are indexed for reading, not audited. Review a skill's body before installing it.

Frequently asked questions

AI-generated answers based on this skill's SKILL.md and metadata

What is resharper-clt and what does it do?

resharper-clt deploys the free JetBrains ReSharper Command Line Tools to inspect and refactor .NET repositories using `jb inspectcode` and `jb cleanupcode`. It manages durable team settings through solution-level configuration, enforces quality gates by surfacing and fixing issues, and integrates with your build and test pipeline to automate C# code inspection and cleanup.

How do I set up resharper command line tools for .NET?

resharper-clt provides setup guidance for bootstrapping the ReSharper CLT in your existing .NET solution with proper verification. Installation typically involves downloading the tools, configuring them for your environment, and validating they work with your target .NET projects before integrating into CI/CD pipelines.

How can I use resharper clt in CI to enforce code quality?

resharper-clt integrates `jb inspectcode` and `jb cleanupcode` into CI/CD pipelines as quality gates. You run inspectcode to analyze code and generate reports (including SARIF output), then use cleanupcode to automatically fix issues. This enforces team standards without manual review overhead.

How do I configure shared ReSharper settings for my team?

resharper-clt manages team-wide code standards through `.dotsettings` configuration files at the solution level. You define cleanup profiles and inspection rules once, commit them to your repository, and all team members and CI agents apply identical settings automatically when running inspectcode and cleanupcode.

What code issues can resharper inspectcode find and fix?

resharper-clt surfaces C# code issues detected by ReSharper's static analysis engine—style violations, potential bugs, performance problems, and maintainability concerns. The `jb cleanupcode` tool then fixes many of these automatically based on your configured profiles, while others are reported for manual review.

Does resharper-clt require a paid license?

No. resharper-clt uses the free JetBrains ReSharper Command Line Tools, which are available under the MIT license. You can deploy and run inspectcode and cleanupcode without purchasing a commercial ReSharper license.

SKILL.md

Rendered from the published skill. Quoted content, verbatim.

ReSharper Command Line Tools

Trigger On

  • the repo uses or wants ReSharper Command Line Tools
  • the team wants jb inspectcode or jb cleanupcode
  • the user asks for stronger C# inspections, cleanup profiles, or ReSharper-based CI gates

Value

  • produce a concrete project delta: code, docs, config, tests, CI, or review artifact
  • reduce ambiguity through explicit planning, verification, and final validation skills
  • leave reusable project context so

(truncated - see the full file via the links below)

File tree — 5 files
catalog/Tools/ReSharper-CLT/skills/resharper-clt/SKILL.md
catalog/Tools/ReSharper-CLT/skills/resharper-clt/manifest.json
catalog/Tools/ReSharper-CLT/skills/resharper-clt/references/commands.md
catalog/Tools/ReSharper-CLT/skills/resharper-clt/references/config.md
catalog/Tools/ReSharper-CLT/skills/resharper-clt/references/resharper-clt.md

Let your AI agent find skills like this

Example. Real query, live index.

You found this page by searching. An agent finds it by wishing: SkillFed indexes 56,283 agent skills by what they can do, searchable in plain language.

wish › “Set up and run JetBrains ReSharper Command Line Tools for .NET code inspection and cleanup”

Give your agent the search over MCP, or paste the wish link into any chat. No install? Search from any chat →

Related skills

csharpier
by managedcode · managedcode/dotnet-skills

CSharpier establishes a single, opinionated formatting standard for C# and XML in .NET projects. It detects current formatter state, installs the tool locally for reproducible CI, and documents ownership to avoid conflicts with dotnet format. Use this when your team values consistent formatting decisions over extensive configuration options.

MITupdated Jul 2026
★ 463repo stars
format
by managedcode · managedcode/dotnet-skills

format configures the SDK-provided dotnet format tool for .NET projects, enabling reproducible code formatting and analyzer fixes across local and CI environments. It respects .editorconfig as the source of truth for style preferences and helps avoid formatter conflicts by clarifying ownership when multiple tools are in use.

MITupdated Jul 2026
★ 463repo stars
roslynator
by managedcode · managedcode/dotnet-skills

Roslynator equips .NET projects with open-source static analysis and code-cleanup capabilities through NuGet analyzer packages and an optional command-line tool. Configure rule severity in `.editorconfig`, run analysis and fix workflows, or detect unused code—all while respecting your repo's existing analyzer setup.

MITupdated Jul 2026
★ 463repo stars
code-analysis
by managedcode · managedcode/dotnet-skills

This skill sets up the .NET SDK's built-in Roslyn analyzers and establishes a phased strategy for treating warnings as errors. It handles both new projects (immediate enforcement) and legacy codebases (batch-by-batch promotion), ensuring your CI fails on analyzer violations without overwhelming your team. Security rules are always prioritized.

MITupdated Jul 2026
★ 463repo stars
stylecop-analyzers
by managedcode · managedcode/dotnet-skills

stylecop-analyzers sets up the StyleCop.Analyzers package in .NET repositories, establishing clear ownership between root .editorconfig and stylecop.json configuration. It detects existing state, adds the package where needed, and prevents rule overlap with other analyzer packs. Use it when your team requires stronger style conventions than SDK analyzers alone provide.

MITupdated Jul 2026
★ 463repo stars
cloc
by managedcode · managedcode/dotnet-skills

cloc delivers line-count, language composition, and branch-diff statistics for .NET codebases through repeatable, configurable commands. Use it to measure solution footprint, compare code deltas across refs, and track codebase composition—not to assess developer productivity or replace design review.

MITupdated Jul 2026
★ 463repo stars
Tags
dotnet-toolingcode-quality-gatec-sharp-inspectionci-automationstatic-analysiscode-cleanupjetbrains-toolslinting-frameworkrepository-config