Agent Plugins Marketplace
All plugins

dotrush

v0.7.4

DotRush C# LSP for Claude Code with live LSP injection, semantic rename, solution diagnostics and .NET CPU/managed-memory profiling skills. Auto-installs required tools on first use.

Claude Code5 Skills

By Eugene Novikov3 GitHub starsUpdated 6 days ago

Directory evidence

Runtimes
Claude Code
Parsed components
5 skill or MCP entries
Source updated
Sep 17, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install dotrush for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install dotrush@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/nevse/dotrush-cc

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/dotrush/.

Plugin files

plugins/dotrush/
├── .claude-plugin/plugin.json
├── skills/dotrush-diagnostics/SKILL.md
├── skills/dotrush-pick-project/SKILL.md
├── skills/dotrush-profile-cpu/SKILL.md
├── skills/dotrush-profile-memory/SKILL.md
└── skills/dotrush-rename/SKILL.md

Included Skills5

dotrush-diagnosticsskills/dotrush-diagnostics/SKILL.md

Run DotRush's whole-solution compiler analysis in this session's C# language server and report the errors and warnings it finds, grouped by code and listed errors first. Use when the user asks for solution or project diagnostics, compiler errors or warnings across the codebase, "does it compile", or a health check of C# code without running a build. Do not use for analyzer-only rules (a solution run reports compiler diagnostics), runtime failures, or test results.

dotrush-pick-projectskills/dotrush-pick-project/SKILL.md

Pick which C# project/solution (.sln/.slnx/.csproj) DotRush should load for LSP in THIS workspace, and apply it live — no dotrush.config.json needed. Use when the user wants to set or change the DotRush project, or when C# LSP returns "No symbols found" because no project is loaded.

dotrush-profile-cpuskills/dotrush-profile-cpu/SKILL.md

Profile CPU usage, hot paths, throughput, or latency in a running .NET application, or in a short-lived .NET program or test it launches, with dotnet-trace, then interpret the trace report. Use for high CPU, slow requests, regressions, flame graphs, profiling a benchmark or a single test, or when the user asks to attach a trace profiler. Do not use for managed-memory growth or leak analysis.

dotrush-profile-memoryskills/dotrush-profile-memory/SKILL.md

Profile managed-memory usage and suspected leaks in a running .NET application with DotRush's dotnet-gcdump, report exact per-type sizes and what retains the most memory, and compare snapshots. Use for growing GC heaps, retained object types, surviving-object counts, retention paths, or when the user asks to create a heap dump. Do not use for CPU hot paths, allocation-rate or allocation-count questions (a gcdump forces a full GC and sees only survivors), or native-memory-only problems.

dotrush-renameskills/dotrush-rename/SKILL.md

Rename a C# symbol (type, method, property, field, event, local or parameter) everywhere it is used across the loaded solution, through the Roslyn rename in this session's DotRush language server, with a diff preview and, after the user confirms, an apply that checks every file before replacing any. Use when the user asks to rename a C# class, member or variable across the codebase, or to "rename X to Y" in C# code. Do not use for renaming files, folders or projects, text inside strings or comments, non-C# files, or a plain search-and-replace of text that is not one symbol.

Plugin manifests1

plugins/dotrush/.claude-plugin/plugin.json
{
  "$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
  "name": "dotrush",
  "version": "0.7.4",
  "description": "DotRush C# LSP for Claude Code with live LSP injection, semantic rename, solution diagnostics and .NET CPU/managed-memory profiling skills. Auto-installs required tools on first use.",
  "author": {
    "name": "Eugene Novikov"
  },
  "keywords": [
    "csharp",
    "dotnet",
    "lsp",
    "roslyn",
    "dotrush",
    "rename",
    "refactoring",
    "profiling",
    "dotnet-trace",
    "dotnet-gcdump"
  ],
  "lspServers": "./.lsp.json",
  "skills": [
    "./skills/"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[dotrush on Agent Plugins Marketplace](https://pluginsmp.com/plugins/dotrush)