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 Hyeonu-Cha/dotnet-coverage-mcp --skill analyze-coverage-gapsgit clone --depth 1 https://github.com/Hyeonu-Cha/dotnet-coverage-mcpWrote 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/hyeonu-cha/dotnet-coverage-mcp/analyze-coverage-gaps)<a href="https://agentmods.dev/skills/hyeonu-cha/dotnet-coverage-mcp/analyze-coverage-gaps"><img src="https://agentmods.dev/badge/skills/hyeonu-cha/dotnet-coverage-mcp/analyze-coverage-gaps/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/hyeonu-cha/dotnet-coverage-mcp/analyze-coverage-gaps"><img src="https://agentmods.dev/badge/skills/hyeonu-cha/dotnet-coverage-mcp/analyze-coverage-gaps.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.00090 | $0.00861 |
| Opus 5 | $0.00045 | $0.00430 |
| Sonnet 5 | $0.00018 | $0.00172 |
| Haiku 4.5 | $0.00009 | $0.00086 |
Grade A, and why
analyze-coverage-gaps 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 9d 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 — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Analyze Coverage Gaps
Identify which specific branch conditions are uncovered in a .NET method, and compare the current coverage report against the previous baseline to see what changed.
When to Use
- User asks "what branches are uncovered in method X?"
- User wants to know what improved since the last test run
- Deciding which test to write next during a coverage improvement session
- Inspecting a specific low-coverage method before writing tests
When Not to Use
- User wants to run tests and get an overall report — use
run-coverage - User wants the full iterative loop of writing tests automatically — use
improve-test-coverage - No coverage XML file exists yet (run tests first with
run-coverage)
Inputs
| Input | Required | Description |
|---|---|---|
coberturaXmlPath |
Yes | Path to coverage.cobertura.xml; auto-falls back to .coverage-state if not found |
methodName |
Yes | Method name to inspect (partial match supported) |
workingDir |
No | Directory for storing .coverage-prev.xml baseline; defaults to XML's parent directory |
Workflow
Step 1: Find uncovered branches
Call GetUncoveredBranches with coberturaXmlPath and methodName.
Returns JSON:
{
"method": "ProcessOrder",
"uncoveredBranches": [
{ "line": 42, "missing": ["condition 0 (jump)", "condition 1 (jump)"] },
{ "line": 57, "missing": ["condition 0 (jump)"] }
]
}
Methods that match methodName but have no uncovered branches are omitted — an empty result means the matched methods are fully covered — and the list is capped at 25 methods, so pass a more specific methodName if you hit the cap.
Step 2: Interpret the uncovered branches
For each uncovered branch, describe in plain language what condition is missing:
branch-N-true→ theifcondition was nevertruebranch-N-false→ theifcondition was neverfalse- Note the line number so tests can be targeted precisely
Step 3: Compare against previous baseline (optional)
If a previous coverage run exists, call GetCoverageDiff with coberturaXmlPath.
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.
- 9d ago First seen · 80 lines · 90 tokens per session scan A 041bd7ed3da8
analyze-coverage-gaps is a skill published in the GitHub repository Hyeonu-Cha/dotnet-coverage-mcp (1 stars, last pushed 3d ago), licensed MIT. It adds 90 tokens to every session and 861 once invoked, about $0.0005 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
maintain-discatsharp
Review, modify, test, document, or release the DisCatSharp repository. Use for DisCatSharp source changes, API additions and migrations, Discord payload models, serialization, command synchronization, Gateway dispatch, REST behavior, analyzer work, multi-target testing, DocFX generation, release notes, and repository…
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-xunit-to-mstest
Convert .NET tests from xUnit.net v2/v3 to MSTest v4 while preserving VSTest or MTP. Use for replacing xunit packages, Fact/Theory/InlineData/MemberData, assertions, IClassFixture/ICollectionFixture, ITestOutputHelper, TestContext cancellation, traits/Owner, skips, timeouts, and xUnit parallelization. Also use when a…
migrate-xunit-to-xunit-v3
Migrate .NET test projects from xUnit.net v2 to xunit.v3 and fix v3 breaks. Use for package/CPM conversion, OutputType=Exe, preserving the VSTest or MTP runner (including projects currently using YTest.MTP.XUnit2), incompatible TFMs, async void tests, string-to-Type attributes, custom Fact/Theory/BeforeAfterTest…
archunitnet
Use the open-source free ArchUnitNET library for architecture rules in .NET tests. Use when a repo needs richer architecture assertions than lightweight fluent rule libraries usually provide. USE FOR: the repo uses or wants ArchUnitNET; architecture testing needs richer modeling than simple dependency checks. DO NOT…