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: Scores each test on three sub-dimensions — assertion strength, structure & focus, and anti-pattern hygiene — then combines them into a capped overall letter grade with a score band. - Polyglot Support: Works across .NET, Python, TypeScript/JavaScript, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, and C++ by loading language-specific extension guidance before scoring. - PR-Comment Output: Produces a short summary plus a markdown table (capped at 50 rows with collapsed overflow) suitable for posting directly as a pull request comment. - Use Case: A CI workflow lists the tests modified in a PR; the Skill grades each one and posts a table showing which new tests are solid and which need follow-up improvements. ## Quick Start Grade the test methods in OrderTests.cs and produce a per-test grade table I can post as a PR comment.