review-tests

Reviews test coverage and test quality for new or changed code.

Updated Jul 13, 2026
One-click install
npx skills add https://github.com/torikhayes/aeai-dotnet-brownfield --skill review-tests-torikhayes
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: review-tests
Source: https://github.com/torikhayes/aeai-dotnet-brownfield/tree/main/.claude/skills/review-tests
Command: npx skills add https://github.com/torikhayes/aeai-dotnet-brownfield --skill review-tests-torikhayes

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Code changes often ship without adequate unit, integration, or end-to-end tests, and reviewers lack a systematic way to verify test quality, assertion patterns, and missing scenarios. ## Core Features & Use Cases - Coverage Review: Checks whether new or modified code has adequate unit and integration tests. - Test Quality Analysis: Evaluates assertion patterns and identifies weak or missing test scenarios. - E2E Validation: Verifies that functional and end-to-end tests actually cover the changed behavior. - Use Case: After implementing a new checkout service in a .NET application, invoke this Skill to confirm the change is covered by meaningful tests and to surface untested edge cases before merging. ## Quick Start Ask the assistant to review the test coverage and test quality for the code changes in the current pull request.

Frequently Asked Questions about review-tests

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I review test coverage for a pull request?▼

Invoke the review-tests skill on the changed code. It loads the agent definition from .github/agents/review-tests.agent.md and checks whether new code has adequate unit and integration tests, flagging missing scenarios.

How to check test quality and assertion patterns in code review?▼

The skill analyzes test quality by examining assertion patterns and identifying weak or missing test scenarios. It follows the workflow defined in the shared agent file used by both Claude and GitHub Copilot.

Does this skill work with GitHub Copilot agents?▼

Yes, the skill reads .github/agents/review-tests.agent.md, which is explicitly shared with GitHub Copilot as the single source of truth. The same review workflow applies across both tools without duplicated instructions.

Can it validate end-to-end tests for changed behavior?▼

Yes, validating that E2E and functional tests cover changed behavior is one of its stated use cases. It checks whether higher-level tests actually exercise the modified code paths, not just unit-level logic.

What are the limitations of automated test review?▼

The skill is a thin wrapper that delegates entirely to the agent definition file, so its behavior depends on that file's instructions. It reviews existing tests but does not write or execute new tests itself.