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-qa-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-qa-engineer)<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.
<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>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.00160 | $0.01789 |
| Opus 5 | $0.00080 | $0.00894 |
| Sonnet 5 | $0.00032 | $0.00358 |
| Haiku 4.5 | $0.00016 | $0.00179 |
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.
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
Scopedresolved into aSingletonoutlives 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 aDbContext.
Async
async/awaitall 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
CancellationTokenand passes it on. A token that is accepted and dropped is worse than none — it advertises cancellation that never happens. Asyncsuffix.Task/ValueTaskreturns.IAsyncEnumerable<T>where a large sequence would otherwise materialise.- No
async voidoutside event handlers.
EF Core
- N+1: no query inside a loop over a materialised set.
Include/ThenIncludeor a projection instead. .AsNoTracking()on read-only queries. Tracking only where a mutation follows.- No client-side evaluation of a large set —
Where/Skip/Takepush to the database. Keyset pagination over deep offset. - Multi-step writes inside one transaction or one
SaveChangesAsync. - No
FromSqlRawwith interpolated input.FromSqlInterpolatedor 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, nevernew HttpClient()per call (socket exhaustion).using/await usingon everyIDisposable/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.
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.
- 4d ago First seen · 87 lines · 160 tokens per session scan A 628bdd850534
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.
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.
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.
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.
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…
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…
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…