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.
curl -O https://raw.githubusercontent.com/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-csharp-engineer/SKILL.mdgit clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINEWrote 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.
[](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-engineer)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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 aScopedinto aSingleton. - Use
recordtypes for DTOs and immutable data;classfor 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/awaitall the way down for I/O. Never.Result/.Wait()(deadlock/blocking risk).- Accept and propagate a
CancellationTokenon every async public method that does I/O. - Return
Task/ValueTask; suffix async methods withAsync. - Prefer
IAsyncEnumerable<T>for streaming large sequences over materialising toList<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 intoFromSqlRawis 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/elseladders.is null/is not nullover== null. using/await usingforIDisposable/IAsyncDisposable. DisposeHttpClientviaIHttpClientFactory, nevernew 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).
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.
- 3d ago First seen · 67 lines · 145 tokens per session scan A ff8f05812c37
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.
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…
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"…
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…
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…
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…
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…