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: Handles .NET, Python, TypeScript/JavaScript, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, and C++ by loading language-specific extension guidance before scoring. - PR-comment-ready output: Produces a short summary plus a markdown table with row caps, deterministic ordering, and (new)/(modified) markers 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 showing which new tests are solid and which need follow-up. ## Quick Start Grade the test methods in OrderTests.cs and produce a per-test grade table I can post as a PR comment.