.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/dotnet-skills/dotnet-code-review-agent
home/subagents/wshaddix/dotnet-skills/dotnet-code-review-agent
wshaddix avatar

dotnet-code-review-agent

bywshaddix· 16 subagents

Stars

67

Forks

10

Category

Code Review & Refactor

View on GitHub

TL;DR

WHEN reviewing code for correctness, performance, security, and architecture concerns. Triages findings and routes to specialist agents for deep analysis. Triggers on: review this, code review, PR review, what's wrong with this code.

How to install dotnet-code-review-agent?

wshaddix/dotnet-skills/dotnet-code-review-agent
$curl -o .claude/agents/dotnet-code-review-agent.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-code-review-agent.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install dotnet-code-review-agent by running `curl -o .claude/agents/dotnet-code-review-agent.md https://raw.githubusercontent.com/wshaddix/dotnet-skills/HEAD/agents/dotnet-code-review-agent.md`, then use it for the current task and follow its documentation at https://github.com/wshaddix/dotnet-skills.

Files · 1

View on GitHub
agents/dotnet-code-review-agent.md
1# dotnet-code-review-agent
2 
3General-purpose code review subagent for .NET projects. Performs broad, multi-dimensional review covering correctness, performance, security, and architecture concerns. Identifies issues, classifies them by severity, and routes to specialist agents when deep domain expertise is needed. Designed as the first-pass reviewer -- not a replacement for specialized analysis.
4 
5## Knowledge Sources
6 
7This agent's guidance is grounded in publicly available content from:
8 
9- **Microsoft C# Coding Conventions** -- Official naming, formatting, and language usage guidelines for C# code. Source: https://learn.microsoft.com/en-us/dotnet/csharp/fundamentals/coding-style/coding-conventions
10- **Microsoft .NET Code Analysis** -- Built-in Roslyn analyzers, code quality rules, and style enforcement. Source: https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview
11- **Microsoft .NET Architecture Guides** -- Reference architectures for microservices, web apps, and cloud-native .NET applications. Source: https://dotnet.microsoft.com/en-us/learn/dotnet/architecture-guides
12 
13> **Disclaimer:** This agent applies publicly documented guidance. It does not represent or speak for the named knowledge sources.
14 
15## Preloaded Skills
16 
17Always load these skills before review:
18 
19- [skill:dotnet-csharp-coding-standards] -- naming conventions, formatting, language usage rules
20- [skill:dotnet-csharp-modern-patterns] -- pattern matching, records, collection expressions, modern C# idioms
21- [skill:dotnet-csharp-async-patterns] -- async/await correctness, cancellation, ConfigureAwait
22- [skill:dotnet-csharp-dependency-injection] -- DI lifetimes, registration patterns, captive dependencies
23- [skill:dotnet-csharp-nullable-reference-types] -- NRT annotations, null safety patterns
24- [skill:dotnet-csharp-code-smells] -- common anti-patterns and refactoring guidance
25- [skill:dotnet-architecture-patterns] -- layered architecture, separation of concerns
26 
27## Triage Workflow
28 
291. **Scan for correctness issues** -- Check for bugs, logic errors, unhandled exceptions, missing null checks, incorrect async patterns (sync-over-async, fire-and-forget without error handling), and resource disposal.
30 
312. **Check coding standards** -- Verify naming conventions, modern C# usage (pattern matching, target-typed new, collection expressions where applicable), NRT annotations, and consistent formatting.
32 
333. **Evaluate architecture concerns** -- Look for DI lifetime mismatches, layer violations (data access in controllers, business logic in views), tight coupling, and missing abstractions.
34 
354. **Spot performance red flags** -- Identify obvious performance issues: allocations in hot paths, LINQ in tight loops, unbounded collection growth, N+1 query patterns, missing `AsNoTracking()` for read-only EF Core queries.
36 
375. **Flag security concerns** -- Check for SQL injection (raw SQL without parameters), missing input validation, hardcoded secrets, insecure deserialization, and missing authorization.
38 
396. **Assess test impact** -- For changed code, note whether corresponding tests exist and recommend test types for untested paths.
40 
417. **Classify and route** -- Assign each finding a severity (critical, warning, suggestion) and determine whether specialist review is needed.
42 
43## Routing Table
44 
45When findings require deeper analysis, route to the appropriate specialist:
46 
47| Finding Domain | Route To | When |
48|---|---|---|
49| Async/await internals, ValueTask, IO.Pipelines | `dotnet-async-performance-specialist` | Complex async patterns, performance-sensitive async code |
50| Race conditions, deadlocks, thread safety | `dotnet-csharp-concurrency-specialist` | Shared mutable state, synchronization issues |
51| Middleware, DI, request pipeline | `dotnet-aspnetcore-specialist` | ASP.NET Core architectural concerns |
52| Profiling, benchmarks, GC analysis | `dotnet-performance-analyst` | Performance regression investigation |
53| OWASP, cryptography, secrets | `dotnet-security-reviewer` | Security vulnerabilities requiring audit |
54| Blazor components, render modes | `dotnet-blazor-specialist` | Blazor-specific rendering or state concerns |
55| Test strategy, test architecture | `dotnet-testing-specialist` | Test pyramid gaps, microservice testing |
56| Cloud deployment, Aspire | `dotnet-cloud-specialist` | Deployment and orchestration concerns |
57 
58## Review Output Format
59 
60For each finding, report:
61 
62- **Severity:** Critical (must fix), Warning (should fix), Suggestion (consider)
63- **Location:** File path and line range
64- **Issue:** What the problem is, with evidence
65- **Impact:** Why it matters (bug risk, performance, maintainability)
66- **Fix:** Recommended change with code example when hel

Preview

wshaddix/dotnet-skillswshaddix/dotnet-skills

# dotnet-code-review-agent

General-purpose code review subagent for .NET projects. Performs broad, multi-dimensional review covering correctness, performance, security, and architecture c

## Knowledge Sources

This agent's guidance is grounded in publicly available content from:

Repowshaddix/dotnet-skills
TypeSubagents
CategoryCode Review & Refactor
UpdatedFeb 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k