CATHERINE: Skill for Claude Code

.claude/skills/senior-csharp-engineer/SKILL.md

senior-csharp-engineer is a skill for Claude Code from Jm-Paunlagui/CATHERINE. It costs 145 tokens per session (1,425 once invoked), scanned A, original, Apache-2.0.

A set of guidelines for writing, reviewing, and refactoring modern C# and .NET code, including ASP.NET Core web applications and Entity Framework Core database access.

In plain words
What is it for?
Use it when building or reviewing C# services, APIs, and data-access code, especially code using dependency injection, async operations, or EF Core.
Why use it?
It helps prevent common problems such as tangled application layers, blocked asynchronous code, unsafe null handling, incorrect dependency lifetimes, and inefficient database queries.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is Jm-Paunlagui/CATHERINE's own configuration. It tells Claude Code how to work on CATHERINE itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything CATHERINE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Jm-Paunlagui/CATHERINE. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-csharp-engineer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINE

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for senior-csharp-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-engineer/github.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-engineer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for senior-csharp-engineer

Your own site · 80×15
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 145 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,425 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00145 $0.01425
Opus 5 $0.00072 $0.00713
Sonnet 5 $0.00029 $0.00285
Haiku 4.5 $0.00015 $0.00143

Measured 3d ago against content hash ff8f05812c37, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

senior-csharp-engineer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/senior-csharp-engineer/SKILL.md · 67 lines

How it starts

The opening of the file, as written. The whole thing — 67 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Senior C# Engineer (.NET 8+)

You are a Senior C# Engineer working in modern .NET (C# 12 / .NET 8+), ASP.NET Core, and EF Core.

Architecture

  • Layered separation: Controllers/Minimal-API endpoints (thin) → Services (business logic) → Repositories/DbContext (data). Controllers contain no business logic or direct DB queries.
  • Dependency injection via the built-in container. Register with correct lifetime: Singleton (stateless/thread-safe), Scoped (per-request, e.g. DbContext), Transient (lightweight, stateless). Never inject a Scoped into a Singleton.
  • Use record types for DTOs and immutable data; class for entities and services with behaviour.
  • Enable and honour nullable reference types (<Nullable>enable</Nullable>). No ! null-forgiving unless provably safe with a comment.

Async & concurrency

  • async/await all the way down for I/O. Never .Result / .Wait() (deadlock/blocking risk).
  • Accept and propagate a CancellationToken on every async public method that does I/O.
  • Return Task/ValueTask; suffix async methods with Async.
  • Prefer IAsyncEnumerable<T> for streaming large sequences over materialising to List<T>.

EF Core correctness

  • No N+1: use .Include()/.ThenInclude() or projection (.Select(...)) instead of lazy-loading in loops.
  • Read-only queries use .AsNoTracking(). Only track entities you intend to mutate.
  • Never string-concatenate SQL — use LINQ or parameterised FromSqlInterpolated. Raw interpolation into FromSqlRaw is forbidden (SQL injection, CWE-89).
  • Push filtering/paging to the database (Where/Skip/Take); avoid client-side evaluation of large sets. Keyset pagination over deep offset.
  • Wrap multi-step writes in a transaction or a single SaveChangesAsync.

Idioms & safety

  • Pattern matching and switch expressions over long if/else ladders. is null / is not null over == null.
  • using/await using for IDisposable/IAsyncDisposable. Dispose HttpClient via IHttpClientFactory, never new HttpClient() per call.
  • Validate inputs at the boundary; throw domain exceptions, map to ProblemDetails — never leak stack traces (CWE-209).
  • Secrets from configuration/user-secrets/Key Vault, never hard-coded (CWE-798).

Read the full file on GitHub · 67 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 67 lines · 145 tokens per session scan A ff8f05812c37

Subscribe to this mod's changes

senior-csharp-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 4d ago), licensed Apache-2.0. It adds 145 tokens to every session and 1,425 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

agui-dotnet-streaming-chat

Get started with the AG-UI .NET SDK: bootstrap and run your first streaming-chat app (client + server) with the AG-UI .NET NuGet packages (AGUI.Client, AGUI.Server, AGUI.Formatting, AGUI.Abstractions). USE FOR: which packages to install and how to wire them; constructing an AGUIChatClient against an endpoint and…

ag-ui-protocol/ag-ui · 223 tokens

azure-eventgrid-dotnet

Azure Event Grid SDK for .NET. Client library for publishing and consuming events with Azure Event Grid. Use for event-driven architectures, pub/sub messaging, CloudEvents, and EventGridEvents. Triggers: "Event Grid", "EventGridPublisherClient", "CloudEvent", "EventGridEvent", "publish events .NET", "event-driven"…

microsoft/skills · 80 tokens

azure-maps-search-dotnet

Azure Maps SDK for .NET. Location-based services including geocoding, routing, rendering, geolocation, and weather. Use for address search, directions, map tiles, IP geolocation, and weather data. Triggers: "Azure Maps", "MapsSearchClient", "MapsRoutingClient", "MapsRenderingClient", "geocoding .NET", "route…

microsoft/skills · 91 tokens

azure-mgmt-apicenter-dotnet

Azure API Center SDK for .NET. Centralized API inventory management with governance, versioning, and discovery. Use for creating API services, workspaces, APIs, versions, definitions, environments, deployments, and metadata schemas. Triggers: "API Center", "ApiCenterService", "ApiCenterWorkspace", "ApiCenterApi", "API…

microsoft/skills · 97 tokens

create-datadriven-aspnetcore

Generate or scaffold ASP.NET Core code — Razor Pages, Blazor components, MVC controllers, views, and Minimal API endpoints — without using ASP.NET Core CLI scaffolding/code-generation tools. Use when (1) adding CRUD pages, views, or API endpoints backed by Entity Framework (EF Core) and a database, (2) generating code…

dotnet/skills · 147 tokens

azure-ai-voicelive-dotnet

Azure AI Voice Live SDK for .NET. Build real-time voice AI applications with bidirectional WebSocket communication. Use for voice assistants, conversational AI, real-time speech-to-speech, and voice-enabled chatbots. Triggers: "voice live", "real-time voice", "VoiceLiveClient", "VoiceLiveSession", "voice assistant…

microsoft/skills · 92 tokens