← All creators

Sarmkadan

User

Senior-level .NET review rules for AI coding agents - Claude Code skills, Cursor rules, and Copilot instructions from one source

25 indexed · 0 Featured · 0 stars · avg score 72
Prolific

Categories

Indexed Skills (25)

API & Backend Listed

api-layer-boundaries

Enforce layering in ASP.NET Core services - what belongs in controllers, application services, and repositories; DTO vs entity leakage; where transactions and validation live. Use when reviewing or designing API endpoints and service classes.

0 Updated today
Sarmkadan
AI & Automation Listed

async-await-pitfalls

Review C# async/await code for deadlocks, sync-over-async, async void, ValueTask misuse, fire-and-forget, and CancellationToken propagation. Use when writing or reviewing any async C# code.

0 Updated today
Sarmkadan
AI & Automation Listed

background-work-and-hosted-services

Review .NET background processing - BackgroundService loops, scoped dependency resolution, graceful shutdown, timers, queue consumption, and outbox patterns. Use when reviewing IHostedService, BackgroundService, recurring jobs, or queue consumers.

0 Updated today
Sarmkadan
AI & Automation Listed

collections-and-equality

Review .NET collection and equality code - choosing collection types, exposure through APIs, GetHashCode/Equals contracts, dictionary key safety, and comparer usage. Use when reviewing collection-typed members, equality implementations, or LINQ set operations.

0 Updated today
Sarmkadan
AI & Automation Listed

concurrency-and-shared-state

Review .NET concurrency - lock discipline, Interlocked, concurrent collections, SemaphoreSlim for async mutual exclusion, Channels, and Parallel.ForEachAsync. Use when reviewing shared mutable state, locks, or parallel code.

0 Updated today
Sarmkadan
AI & Automation Listed

configuration-and-secrets

Review .NET configuration handling - options pattern, validation at startup, secret storage, environment layering, and what must never be committed. Use when touching appsettings, IConfiguration, IOptions, or anything credential-shaped.

0 Updated today
Sarmkadan
Code & Development Listed

datetime-and-time-handling

Review .NET date/time code - DateTime vs DateTimeOffset, UTC discipline, TimeProvider for testability, timezone conversion, and scheduling pitfalls. Use when reviewing any code that touches DateTime, DateTimeOffset, timestamps, or scheduling.

0 Updated today
Sarmkadan
AI & Automation Listed

dependency-injection-lifetimes

Review .NET dependency injection registrations for captive dependencies, scoped-in-singleton bugs, IServiceProvider abuse, disposal issues, and HttpClient registration. Use when writing or reviewing DI container registrations or constructor injection.

0 Updated today
Sarmkadan
AI & Automation Listed

disposal-and-resource-lifetime

Review IDisposable/IAsyncDisposable usage in .NET - what to dispose, what never to dispose, using patterns, the dispose pattern itself, and finalizer rules. Use when reviewing resource management, using statements, or classes owning disposable fields.

0 Updated today
Sarmkadan
AI & Automation Listed

domain-modeling-and-primitives

Review C# domain models - primitive obsession, value objects, records vs classes, enums vs polymorphism, invariant enforcement in constructors, and anemic model smells. Use when reviewing domain entities, value types, or business-logic placement.

0 Updated today
Sarmkadan
API & Backend Listed

ef-core-migration-safety

Review EF Core migrations for data loss, downtime, and deploy-order hazards. Use when adding, reviewing, or applying EF Core migrations, or when a schema change must ship without downtime.

0 Updated today
Sarmkadan
Code & Development Listed

ef-core-query-review

Review EF Core LINQ queries for N+1, cartesian explosion, tracking overhead, client-side evaluation, and over-fetching. Use when writing or reviewing any code that queries a DbContext.

0 Updated today
Sarmkadan
AI & Automation Listed

ef-core-transactions-and-concurrency

Review EF Core write paths - transaction boundaries, optimistic concurrency tokens, lost updates, retry strategies vs user transactions, and multi-aggregate consistency. Use when reviewing SaveChanges patterns, transactions, or concurrent-write handling.

0 Updated today
Sarmkadan
AI & Automation Listed

exception-and-result-strategy

Decide when C# code should throw, when to return a Result type, what exceptions to define, and what must never be swallowed. Use when reviewing error handling, try/catch blocks, or designing failure contracts for services and APIs.

0 Updated today
Sarmkadan
Code & Development Listed

globalization-and-culture

Review .NET culture-sensitivity bugs - parsing and formatting with invariant vs current culture, string comparison choices, the Turkish-I problem, and localization boundaries. Use when reviewing Parse/ToString/string comparison code or anything formatting numbers and dates.

0 Updated today
Sarmkadan
Code & Development Listed

http-resilience-and-outbound-calls

Review outbound HTTP in .NET - IHttpClientFactory usage, timeouts, retries with idempotency awareness, circuit breakers, and response handling. Use when reviewing HttpClient code, Polly/resilience policies, or any service-to-service calls.

0 Updated today
Sarmkadan
DevOps & Infrastructure Listed

logging-and-observability

Review .NET logging and observability - structured logging discipline, log levels, what not to log, correlation, exception logging, and metrics/tracing hooks. Use when reviewing ILogger usage, log statements, or diagnostics code.

0 Updated today
Sarmkadan
AI & Automation Listed

memory-leaks-and-diagnostics

Review .NET code for managed memory leaks - event handler leaks, static caches, timers, CancellationTokenRegistration, closure captures - and how to diagnose with dotnet-counters/gcdump. Use when reviewing long-lived objects, event subscriptions, or investigating memory growth.

0 Updated today
Sarmkadan
Data & Documents Listed

middleware-and-pipeline-order

Review ASP.NET Core pipeline configuration - middleware ordering, auth placement, exception handling position, CORS, short-circuiting, and custom middleware pitfalls. Use when reviewing Program.cs pipeline setup or custom middleware.

0 Updated today
Sarmkadan
DevOps & Infrastructure Listed

nullable-reference-discipline

Enforce nullable reference type discipline in C# - annotation honesty, null-forgiveness audit, boundary validation, and EF Core interaction. Use when writing or reviewing C# code in nullable-enabled projects or migrating projects to nullable.

0 Updated today
Sarmkadan
Code & Development Listed

performance-review

Review .NET code for allocation pressure, string handling, Span/pooling opportunities, LINQ costs, and caching - with explicit guidance on when performance work is and is not justified. Use when reviewing hot paths, optimizing .NET code, or evaluating performance claims.

0 Updated today
Sarmkadan
Code & Development Listed

security-review-dotnet

Security review checklist for ASP.NET Core - authorization vs authentication, IDOR, mass assignment, SQL injection through raw SQL and EF, secrets exposure, and unsafe deserialization. Use when reviewing endpoints, data access, or anything handling user input or credentials.

0 Updated today
Sarmkadan
Code & Development Listed

serialization-review

Review .NET serialization - System.Text.Json configuration, contract evolution, polymorphism, streaming large payloads, and deserialization security. Use when reviewing JSON handling, serializer options, or API/message contracts.

0 Updated today
Sarmkadan
Code & Development Listed

solid-review-checklist

Apply SOLID principles concretely to C# code review - real smells, thresholds, and refactors rather than abstract definitions. Use when reviewing class design, service structure, or interface changes in C#.

0 Updated today
Sarmkadan
Testing & QA Listed

testing-strategy

Decide what to test at each layer of a .NET service, when integration tests beat unit tests, why mocking DbContext is a smell, and what makes tests worth their maintenance cost. Use when writing tests, reviewing test PRs, or designing a test suite.

0 Updated today
Sarmkadan

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.