Best for
- Use when the user asks for a 'coverage report', 'coverage status', 'what's covered', 'C0 C1 numbers', or wants to check the gate.
livlign/claude-skills/plugins/dotnet-coverage-kit/skills/coverage-report/SKILL.md
Produce the latest deterministic C0/C1 coverage report for a .NET service. Use when the user asks for a 'coverage report', 'coverage status', 'what's covered', 'C0 C1 numbers', or wants to check the gate. Runs dotnet-coverage + ReportGenerator (numbers are tool output, never estimated), then joins uncovered files against the manifest to explain every inclusion, exclusion, and cannot-test entry. Runnable any time.
Decision brief
Numbers come only from the tool. The model never estimates, infers, or rounds coverage. The model's only role is joining tool output to the manifest's reasons and narrating the observations section.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/livlign/claude-skills --skill "plugins/dotnet-coverage-kit/skills/coverage-report"Inspect the Agent Skill "coverage-report" from https://github.com/livlign/claude-skills/blob/c8bcd3d9e7f57c75991589f8b9e2ffcdce759307/plugins/dotnet-coverage-kit/skills/coverage-report/SKILL.md at commit c8bcd3d9e7f57c75991589f8b9e2ffcdce759307. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
The whole report is one wrapper — no arguments needed (it auto-detects the .sln):
1. Run the wrapper. ./.claude/coverage/tools/report.sh (or, before init has copied it, ${CLAUDEPLUGINROOT}/scripts/report.sh). Pass a solution path or repo-filter only if auto-detect is wrong. If the tools or solution are missing, report that — never fabricate numbers. All numbe…
Fixed six-section report card. Header carries commit / branch / date / tooling / verdict; coverage is two-pass throughout — Adjusted (target set, the headline + ratchet basis) and Raw (all instrumented), for C0, C1, and Method.
(ratchet always; diff-coverage + scope-change guard in PR mode, --base)
Review the “1. Test Results total / passed / failed / skipped / flaky / duration (from .trx)” section in the pinned source before continuing.
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 88/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 18 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Numbers come only from the tool. The model never estimates, infers, or rounds coverage. The model's only role is joining tool output to the manifest's reasons and narrating the observations section.
Read ${CLAUDE_PLUGIN_ROOT}/rules/coverage-report.base.md and the repo's
.claude/coverage/refs/coverage-manifest.yml first.
The whole report is one wrapper — no arguments needed (it auto-detects the .sln):
./.claude/coverage/tools/report.sh
It collects coverage, joins it against the manifest, and writes a dated per-run folder
.claude/coverage/reports/<YYYY-MM-DD>/ containing REPORT.md, REPORT.html, and
CANNOT-TEST.md, then prints the Markdown. It exits non-zero only for a check named in the
manifest's gate.enforce (empty by default, so a breach prints as ADVISORY and the script still
succeeds); a failing build or test run is fatal regardless, from run-coverage.sh. Each run writes its own dated folder rather than overwriting a fixed
path, so prior dates are preserved for comparison; override the date with REPORT_DATE=YYYY-MM-DD
to re-emit under a specific day. CANNOT-TEST.md is generated from the manifest cannot_test
entries (grouped by blocking construct, each row citing target, reason, and unlock), not
hand-written. This is the identical join CI runs — the report a developer sees locally is the report on
the PR. When invoked as the coverage-report skill, just run it and surface the result;
don't re-derive numbers by hand.
Run the wrapper. ./.claude/coverage/tools/report.sh (or, before init has copied it,
${CLAUDE_PLUGIN_ROOT}/scripts/report.sh). Pass a solution path or repo-filter only if
auto-detect is wrong. If the tools or solution are missing, report that — never fabricate
numbers. All numbers come from the tool + the deterministic join in coverage-gate.py; the
model does not parse XML or compute percentages.
The script prints KIT_VERSION=, KIT_DRIFT= and FILE_FILTER= before collecting. Check all
three. KIT_DRIFT= is <state> <manifest kit_version> <kit semver>: any state other than
current means this repo has not been reconciled against the current kit, and the report carries
a note saying so. Surface it in one line and name coverage-redo as what applies it. Do not
apply any migration here: a report that quietly changed the measured scope would make its own
numbers unreproducible. The one exception is the stale-tool-copy refresh below, which changes no
classification. See ${CLAUDE_PLUGIN_ROOT}/MIGRATIONS.md ("Preflight"). Stale
tool copies no longer need asking about: report.sh runs kit-sync.py first, which installs the
current copies and applies the auto manifest entries, printing [kit-sync] lines for each. Relay
those lines and remind the user to COMMIT the changed files, since CI runs the committed copies and
not their kit checkout. If the sync printed nothing, the repo was already current. If FILE_FILTER lacks an
exclusion for a shared directory that is present in the repo, stop and fix
scope.vendored_paths before trusting the number.
Latent bugs are DATA, not narration. The script's report is complete and deterministic
(verdict, headline, Do-next, insights, by-bucket, and the red section 7). Suspected bugs frozen
by characterization belong in manifest latent_bugs:, where coverage-gate.py renders them as
section 7 plus the ACTION REQUIRED banner. Put them there, not in a hand-written section: the
report is regenerated on every run, so appended prose is lost, and a defect backlog that
evaporates is worse than none. Verify the banner's A/B/C count matches what the backfill found,
and add no narrated section of your own.
At baseline only. Write the measured Adjusted overall into baseline.recorded_overall
(with basis: in-scope) so it becomes the ratchet floor. Not on ordinary report runs.
Stamp baseline.scope_lines at the same time, from the report's "Total lines (Adjusted)"
denominator. It is what lets the gate distinguish a real regression from a filter mistake:
without it, a scoping error presents as a coverage collapse and the ratchet blames the tests.
coverage-gate.py)Fixed six-section report card. Header carries commit / branch / date / tooling / verdict; coverage is two-pass throughout — Adjusted (target set, the headline + ratchet basis) and Raw (all instrumented), for C0, C1, and Method.
# Unit Test Report — <repo>
<commit · branch · date · tooling · verdict (gate PASS/FAIL · Adjusted C0/C1)>
## 1. Test Results total / passed / failed / skipped / flaky / duration (from .trx)
## 2. Coverage Summary Raw | Adjusted | Baseline | Δ, for C0 / C1 / Method; + the Gate block
(ratchet always; diff-coverage + scope-change guard in PR mode, --base)
## 3. Coverage by Layer columns: Layer | Raw lines | Raw branches | Testable lines |
Testable branches | C0 | C1 — where C0/C1 cells are "NN% (covered/total)"
over the testable slice (covered counts fold into the cell, no separate
covered columns). Rows are
human LAYER names (Application/Service — TARGET, Infrastructure/Integration,
Presentation/Workers, Models/DTOs, Generated, Non-product) mapped from the
manifest categories — NEVER the raw `excl: <category>` strings (an `excl:` row
showing a coverage % read as "excluded but covered??"). Raw = all code in the
layer; Testable = its unit-testable slice (whole file in the target layer; only
carve-out methods elsewhere); C0/C1 are of the testable slice. Only the target
layer feeds the Adjusted headline. + a per-file table (same columns + the file's
Layer) so a 1631-line infra file reading as 131 testable lines is clear.
## 4. Risk Hotspots methods with complexity ≥5 and coverage <80%, sorted TARGET-FIRST, with a
"What to do" column + per-bucket guidance (target=unit-test; integration=
integration test/extract carve-out; e2e=E2E/refactor) and a takeaway line
calling out how many are real in-scope unit gaps. Methods already in
cannot_test are omitted (they belong to §6, not shown as gaps).
## 5. Excluded Code manifest exclusions grouped by category — mechanism = "manifest pattern"
## 6. Not Testable split by nature: 6a Design debt (seam-fixable, should trend to zero) ·
6b Structural (compiler/unreachable/dead/framework-mismatch — will NOT move).
Columns: target · where (lines) · why · category · mitigation. A systematic-
seam callout quantifies clusters (e.g. "N share Guid.NewGuid → one seam").
## 7. Latent bugs (rendered from manifest `latent_bugs:`) red, ACTION REQUIRED, if any
Honest-reporting rules baked into the generator (do not "fix" these to mimic a different stack):
dotnet-coverage) +
ReportGenerator + xUnit — not Coverlet (dormant in this kit).[ExcludeFromCodeCoverage] and coverlet --exclude is not used.—: a single non-retry run cannot observe flakiness.Domain/Application template.Numbers (sections 1–4) are tool output joined deterministically; the model never edits them. The full per-file drill-down lives in the HTML report — the Markdown is the executive view.
Read this only while scope is one of the enforced checks (gate.enforce in the manifest). With
enforcement off, a scope breach is reported as ADVISORY, the run is green, and no label is needed
or useful; review the reported breach on its merits instead.
The coverage-scope-change label is the reviewer sign-off for an intentional scope reduction. It
maps to coverage-gate.py --allow-scope-change. Applying it waives only the scope-change guard
(grown exclusions/cannot_test, new product source under an excluded path) and a lowered
ratchet floor. It does NOT waive diff coverage on changed lines, nor a genuine ratchet drop below
the recorded floor. Those still fail the gate.
A PR that only adds tests never needs this label. The guard skips added test files and reports
how many it ignored. If it flags one anyway, the repo is on a kit older than 0.14.0 (refresh
.claude/coverage/tools/) or its tests sit somewhere the directory heuristic misses, which is what
gate.test_path_patterns is for. Reaching for the label there is the wrong fix: it waives the whole
guard for that PR, including any real scope reduction riding along with it.
To sign off, ADD the label (its name must be exactly coverage-scope-change). This is where a
real reviewer got stuck, so state it plainly:
labeled (see the template), so adding the label starts a fresh run
whose event payload contains the label. That run reads the label and passes.contains(...labels...) check stays false and
the gate fails again, confusingly.labeled (an older scaffold), push any commit or toggle the
label off and on to force a synchronize run whose payload includes the label.Alternatives
coreyhaines31/marketingskills
When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program
alirezarezvani/claude-skills
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
JasonColapietro/suede-creator-skills
Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).
narrative-io/narrative-skills-marketplace
Translate a fuzzy analytical question into a rigorous investigation plan. Interrogates the ask, grounds the plan in the available data dictionary, applies analytical best practices, and produces a structured brief of query specifications for a downstream query-writing skill. Plans, does not write SQL. Use when: "why did X drop", "is there a relationship between A and B", "who are our highest-value customers", "what's driving the change in Y", "investigate this trend", "design an analysis for", "