What problem does it solve? Reviewers of a pull request need a quick, per-test verdict on the tests that PR adds or changes, but full suite-audit reports are too long to post as a PR comment. This Skill grades each specified test method individually and produces a compact table mapping every test to a letter grade (A–F), a score band, and a one-line note. ## Core Features & Use Cases - Per-test grading rubric: Scores each test on three sub-dimensions (assertion strength, structure & focus, anti-pattern hygiene) and combines them into a capped overall letter grade with a score band. - Polyglot support: Works with .NET (MSTest/xUnit/NUnit/TUnit), Python, TypeScript/JavaScript, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, and C++, loading language-specific assertion conventions via the test-analysis-extensions skill. - PR-comment-ready output: Produces a short summary plus a markdown table (capped at 50 rows with collapsed overflow), optionally marking tests as (new) or (modified) when diff context is provided. - Use Case: A CI workflow lists the test methods changed in a pull request; the Skill grades each one and posts a table like OrderTests.CalculateTotal_EmptyCart_ReturnsZero | B | 80–89 | Good assertions, mildly long body as a PR comment. ## Quick Start Grade the test methods in OrderTests.cs and produce a per-test grade table I can post as a PR comment.