CATHERINE: Skill for Claude Code

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

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

A set of checks and testing guidelines for C# applications built with modern .NET, ASP.NET Core, and Entity Framework Core. It verifies implementation rules instead of only describing them.

In plain words
What is it for?
Use it to review and test C# services, APIs, background workers, dependency injection, asynchronous code, and EF Core data access.
Why use it?
It helps expose defects such as unsafe dependency lifetimes, blocked request paths, dropped cancellation signals, incorrect database queries, and missing transaction or pagination checks.

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-qa-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-qa-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-qa-engineer/github.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-qa-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-qa-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-qa-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-qa-engineer

Your own site · 80×15
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-csharp-qa-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-csharp-qa-engineer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 160 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,789 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.00160 $0.01789
Opus 5 $0.00080 $0.00894
Sonnet 5 $0.00032 $0.00358
Haiku 4.5 $0.00016 $0.00179

Measured 4d ago against content hash 628bdd850534, 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-qa-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 4d 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-qa-engineer/SKILL.md · 87 lines

How it starts

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

Senior C# QA Engineer (.NET 8+)

You are a Senior C# QA Engineer for modern .NET — ASP.NET Core and EF Core. You verify, then you write the tests that keep the verification true.

The implementation discipline lives in the senior-csharp-engineer skill — architecture, idioms, and the rules themselves. Defer to it rather than restating it, so the two cannot drift. This skill covers what to check and what to test.

Verification checklist

Dependency injection

  • Every registration has a defensible lifetime: Singleton (stateless, thread-safe), Scoped (per-request, DbContext), Transient (lightweight, stateless).
  • No captive dependencies — a Scoped resolved into a Singleton outlives its scope and is the defect that surfaces as a random cross-request data bleed.
  • Background services (IHostedService, BackgroundService) create their own scope before touching a DbContext.

Async

  • async/await all the way down on I/O. No .Result, .Wait(), or .GetAwaiter().GetResult() on a request path.
  • Every public async method that does I/O accepts a CancellationToken and passes it on. A token that is accepted and dropped is worse than none — it advertises cancellation that never happens.
  • Async suffix. Task/ValueTask returns. IAsyncEnumerable<T> where a large sequence would otherwise materialise.
  • No async void outside event handlers.

EF Core

  • N+1: no query inside a loop over a materialised set. Include/ThenInclude or a projection instead.
  • .AsNoTracking() on read-only queries. Tracking only where a mutation follows.
  • No client-side evaluation of a large set — Where/Skip/Take push to the database. Keyset pagination over deep offset.
  • Multi-step writes inside one transaction or one SaveChangesAsync.
  • No FromSqlRaw with interpolated input. FromSqlInterpolated or LINQ only (CWE-89).

Boundary and safety

  • Inputs validated at the edge; model state or a validator, not deep in a service.
  • Exceptions mapped to ProblemDetails. No stack trace, no inner-exception text, no SQL in a response body (CWE-209).
  • IHttpClientFactory, never new HttpClient() per call (socket exhaustion).
  • using / await using on every IDisposable / IAsyncDisposable.
  • Secrets from configuration, user-secrets, or Key Vault — never literals (CWE-798).
  • Nullable reference types enabled and honoured. Each ! null-forgiving operator is provably safe and carries a comment saying why.

Read the full file on GitHub · 87 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. 4d ago First seen · 87 lines · 160 tokens per session scan A 628bdd850534

Subscribe to this mod's changes

senior-csharp-qa-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 5d ago), licensed Apache-2.0. It adds 160 tokens to every session and 1,789 once invoked, about $0.0008 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

build-and-test

How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.

microsoft/agent-framework · 26 tokens

verify-dotnet-samples

How to build, run and verify the .NET sample projects in the Agent Framework repository. Use this when a user wants to verify that the samples still function as expected.

microsoft/agent-framework · 40 tokens

author-test

Generate a test given sample. Parameters: C# SDK repository root; Package name: one of Azure.AI.Projects, Azure.AI.Projects.Agents or Azure.AI.Extensions.OpenAI; the sample to use as a starting point for the test.

Azure/azure-sdk-for-net · 68 tokens

migrate-mstest-v3-to-v4

Use this skill before answering, planning, or editing any MSTest 3.x-to-4.x upgrade or post-upgrade failure. Triggers include "MSTest v4 breaking changes"; CS0507/CS0103/CS1061/CS1615; ExecuteAsync, CallerInfo, DisplayName, or custom TestMethodAttribute; ClassCleanupBehavior; ContainsKey; ThrowsExactly or…

dotnet/skills · 179 tokens

migrate-mstest-v1v2-to-v3

Use this skill before answering or editing whenever an MSTest v1/v2 project is being upgraded or repaired for v3. Triggers include QualityTools assembly references; MSTest.TestFramework/TestAdapter 1.x-2.x; "upgrade to MSTest v3"; comparing v1 and v2 migration paths; choosing MSTest or MSTest.Sdk; CS0411/CS1503 after…

dotnet/skills · 193 tokens

writing-mstest-tests

ALWAYS USE when asked to fix, rewrite, update, improve, modernize, show corrected code for, or explain existing MSTest tests or MSTest-specific configuration. Use for "review" when corrected code or edits are wanted, even for one pasted assertion or passing tests with bad failure output. Covers expected/actual labels…

dotnet/skills · 180 tokens