test-reviewer
Installation
SKILL.md
Test Reviewer
Audience: Developers reviewing test suites for quality and completeness.
Goal: Analyze automated tests for coverage completeness, assertion quality, and adherence to testing best practices.
Review Steps
1. Identify Test Context
- Run
git statusandgit diffto identify changed files and their corresponding test files - Use
GrepandGlobto locate test files related to the changed code - Identify the testing framework (RSpec, Minitest, Jest, Playwright)
2. Map Implementation to Tests
- Read the implementation files being tested
- Identify all public methods, endpoints, and behaviors that should have test coverage
- Create a coverage matrix mapping implementation features to test cases