Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
.NET development plugin for Claude Code โ Roslyn semantic analysis, DI/architecture/EF Core guards, 16 skills, convention-aware scaffolders, security/performance/refactoring agents, and project lifecycle commands.
npx claudepluginhub zdanovichnick/dotnet-pilot --plugin dotnet-pilotAdd an endpoint to an existing controller or endpoint group.
Plan and generate an EF Core migration safely โ validates chain, detects breaking changes, targets correct DbContext.
Add a new project to the solution with correct references and layer placement.
Create a service with interface, implementation, DI registration, and test scaffold.
Diagnose and iteratively fix dotnet build errors. Max 5 repair iterations.
๐ง Scaffolds API controllers or minimal API endpoints with DTOs, validation, DI registration, and OpenAPI attributes.
๐๏ธ Solution-level architecture guardian โ enforces clean architecture boundaries, validates project references, detects layer violations.
๐ง Autonomous iterative build-error fixing โ parses dotnet build/test output, diagnoses root causes, and applies minimal targeted fixes. Max 5 iterations before halting.
๐ Verifies DI container completeness โ scans constructor injections and cross-references against service registrations.
๐๏ธ EF Core migration safety โ validates migration chain, detects data loss risks, ensures correct DbContext targeting.
ASP.NET Core API patterns โ controllers vs minimal API, middleware, error handling, versioning, and authentication setup.
JWT bearer auth, ASP.NET Identity, OIDC, and policy-based authorization patterns for ASP.NET Core APIs.
Blazor component patterns โ v2 placeholder for Server and WebAssembly render modes, state management, and JS interop.
HybridCache (.NET 9+), output caching, cache-aside pattern, and IMemoryCache โ registration, usage, invalidation, and key strategy.
.NET clean architecture enforcement โ layer rules, dependency direction, DI registration patterns, and project reference validation.
Executes bash commands
Hook triggers when Bash tool is used
Modifies files
Hook triggers on file write and edit operations
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Harness-native ECC plugin for engineering teams - 64 agents, 262 skills, 84 legacy command shims, reusable hooks, rules, MCP conventions, and operator workflows for Claude Code plus adjacent agent harnesses
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Complete developer toolkit for Claude Code
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Uses power tools
Uses Bash, Write, or Edit tools
Uses power tools
Uses Bash, Write, or Edit tools
Runs pre-commands
Contains inline bash commands via ! syntax
Runs pre-commands
Contains inline bash commands via ! syntax
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Bash prerequisite issue
Uses bash pre-commands but Bash not in allowed tools
Share bugs, ideas, or general feedback.
A .NET development assistant plugin for Claude Code
Roslyn-backed DI verification ยท EF Core migration safety ยท Clean-architecture enforcement ยท Convention-aware scaffolders
28 commands ยท 14 specialized agents ยท 9 hooks ยท 16 skill packs ยท 16 Roslyn MCP tools
/plugin marketplace add zdanovichnick/dotnet-pilot
/plugin install dotnet-pilot@dotnet-pilot-marketplace
/reload-plugins
dotnet tool install -g DotnetPilot.Mcp.Roslyn # first install
dotnet tool update -g DotnetPilot.Mcp.Roslyn # update to latest
Strongly recommended โ enable auto-update (one-time setup). GitHub-sourced marketplaces have auto-update disabled by default; without this step you'll have to update manually each release. Add to ~/.claude/settings.json:
{
"extraKnownMarketplaces": {
"dotnet-pilot-marketplace": { "autoUpdate": true }
}
}
That's it. Open Claude Code in your .sln / .slnx directory and run /DotnetPilot:utility:help.
AI coding tools make these .NET mistakes constantly โ DotnetPilot fixes them at the source:
| Without DotnetPilot | With DotnetPilot |
|---|---|
| Creates services, forgets DI registration | dnp-di-wiring-checker catches it immediately |
| Manually edits EF migration files (breaks the chain) | add-migration always uses dotnet ef migrations add |
| Puts domain models in the wrong project layer | dnp-architect enforces clean architecture in real time |
Skips dotnet build verification | Build hook verifies after every scaffold |
| Ignores existing patterns in your codebase | Every scaffolder reads your conventions before writing code |
/plugin marketplace add zdanovichnick/dotnet-pilot
/plugin install dotnet-pilot@dotnet-pilot-marketplace
/reload-plugins
Verify it worked:
/DotnetPilot:utility:help โ should list 28 commands
/DotnetPilot:dotnet:health-check โ validates build, tests, DI, architecture
Keeping it up to date.
Easiest: Open the plugin manager (/plugin โ Installed tab โ dotnet-pilot) and click "Update now". Then /reload-plugins to activate.
CLI alternative:
/plugin marketplace update dotnet-pilot-marketplace
/reload-plugins
Auto-update (GitHub-sourced marketplaces disable it by default). Enable once via the /plugin UI (Marketplaces tab โ dotnet-pilot-marketplace โ Enable auto-update), or persist it in .claude/settings.json:
{
"extraKnownMarketplaces": {
"dotnet-pilot-marketplace": { "autoUpdate": true }
}
}
Once the plugin lands in
claude-plugins-official, the install collapses to/plugin install dotnet-pilotโ auto-update on by default.
Alternative: install from a local clone
Use this when you cloned the repo and want to run your own build, or contribute changes.
# Windows (type in Claude Code chat)
/plugin marketplace add C:\path\to\dotnet-pilot
# macOS / Linux
/plugin marketplace add /path/to/dotnet-pilot
Then activate:
/plugin install dotnet-pilot@dotnet-pilot-marketplace
/reload-plugins
Session-only (plugin active only while this Claude Code process is running):
# Windows
claude --plugin-dir "C:\path\to\dotnet-pilot"
# macOS / Linux
claude --plugin-dir "/path/to/dotnet-pilot"
After editing plugin source (commands, agents, hooks), run
/reload-pluginsto pick up changes without restarting.
dotnet tool install -g DotnetPilot.Mcp.Roslyn # first install
dotnet tool update -g DotnetPilot.Mcp.Roslyn # update to the latest release
The plugin's .mcp.json auto-starts dnp-roslyn when Claude Code loads. It requires a .sln or .slnx file in your working directory.
In Claude Code, enable the Context7 MCP server at the account level โ planning agents use it for live NuGet / ASP.NET Core / EF Core documentation.
/DotnetPilot:utility:help โ should list 28 commands
/DotnetPilot:dotnet:health-check โ validates build, tests, DI, architecture
/DotnetPilot:project:init