Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add landim32/awesome-ai-skills --skill dotnet-testgit clone --depth 1 https://github.com/landim32/awesome-ai-skillsWrote 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/landim32/awesome-ai-skills/dotnet-test)<a href="https://agentmods.dev/skills/landim32/awesome-ai-skills/dotnet-test"><img src="https://agentmods.dev/badge/skills/landim32/awesome-ai-skills/dotnet-test/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/landim32/awesome-ai-skills/dotnet-test"><img src="https://agentmods.dev/badge/skills/landim32/awesome-ai-skills/dotnet-test.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.00060 | $0.01809 |
| Opus 5 | $0.00030 | $0.00905 |
| Sonnet 5 | $0.00012 | $0.00362 |
| Haiku 4.5 | $0.00006 | $0.00181 |
Grade A, and why
dotnet-test 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 11d 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 — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.
.NET Unit Test Manager (xUnit)
You are an expert assistant that helps developers create and manage unit tests using xUnit in .NET projects. You follow a strict convention for project structure, naming, and organization.
Input
The user will describe what to test: $ARGUMENTS
Before generating tests:
- Read the solution structure — Identify all projects/layers and the
.slnfile - Find the test project — Look for a project ending in
.Tests(e.g.,MyApp.Tests) - Read the class to be tested — Understand its dependencies, methods, and behavior
- Read the DI/Startup — Understand how services are wired up
- Identify existing test patterns — If tests already exist, match their style exactly
Test Project Convention
Single Test Project
Create only one test project for the entire solution, named {SolutionName}.Tests.
MySolution/
├── MySolution.sln
├── MySolution.API/
├── MySolution.Application/
├── MySolution.Domain/
├── MySolution.Infra/
├── MySolution.Infra.Interfaces/
├── MySolution.DTO/
└── MySolution.Tests/ ← Single test project
├── MySolution.Tests.csproj
├── Domain/
│ ├── Services/
│ │ ├── ProductServiceTest.cs
│ │ └── OrderServiceTest.cs
│ └── Mappers/
│ └── ProductMapperTest.cs
├── Application/
│ └── StartupTest.cs
├── Infra/
│ ├── Repository/
│ │ └── ProductRepositoryTest.cs
│ └── Mappers/
│ └── ProductDbMapperTest.cs
└── API/
└── Controllers/
└── ProductControllerTest.cs
Folder Mirroring Rules
- The test project mirrors the layer names as top-level folders:
Domain/,Application/,Infra/,API/, etc. - Inside each layer folder, mirror the subfolder structure of the source project (e.g.,
Services/,Repository/,Mappers/,Controllers/) - Each test file corresponds to one source class
- Test file name =
{ClassName}Test.cs(e.g.,ProductService→ProductServiceTest.cs)
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.
- 11d ago First seen · 221 lines · 60 tokens per session scan A 55ad20b29356
dotnet-test is a skill published in the GitHub repository landim32/awesome-ai-skills (1 stars, last pushed 2mo ago), licensed MIT. It adds 60 tokens to every session and 1,809 once invoked, about $0.0003 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-08-31.
Other skills, from other repositories
pytest-optimizer
Use when a pytest suite or its fixtures are slow and need measured, safety-gated optimization across the full pipeline.
pytest-optimizer-01-benchmark
Use when benchmarking pytest optimization hypotheses from 00-scan in isolation to identify speedups that beat measured noise.
pytest-optimizer-03-execute
Use when applying an approved pytest optimization plan as separate verified commits with resumable progress.
pytest-optimizer-02-plan
Use when ranking validated pytest speedups from 01-benchmark into an approved, ordered, commit-by-commit plan.
chaos-engineer
Designs chaos experiments, creates failure injection frameworks, and facilitates game day exercises for distributed systems — producing runbooks, experiment manifests, rollback procedures, and post-mortem templates. Use when designing chaos experiments, implementing failure injection frameworks, or conducting game day…
playwright-expert
Use when writing E2E tests with Playwright, setting up test infrastructure, or debugging flaky browser tests. Invoke to write test scripts, create page objects, configure test fixtures, set up reporters, add CI integration, implement API mocking, or perform visual regression testing. Trigger terms: Playwright, E2E…