ai-qa-review
Installation
SKILL.md
Before starting: Check for .agents/qa-project-context.md in the project root. It contains test framework conventions, naming patterns, and project-specific quality standards that calibrate review feedback.
Discovery Questions
- Review scope: Reviewing test code for quality, application code for testability, or both? Each triggers different analysis patterns.
- Framework conventions: What test framework (Jest, Vitest, Playwright, pytest)? Conventions differ --
describe/itnesting, fixture usage, assertion style. - PR review or batch audit? A PR review focuses on changed files. A batch audit scans the entire test suite for systemic patterns.
- Existing quality standards: Does the team have documented test conventions? Check for
.eslintrctest rules,CONTRIBUTING.mdtest guidelines, or a test style guide. - Known pain points: Are there recurring problems -- flaky tests, slow suites, unclear failures? These prioritize which smells to focus on first.
Core Principles
Related skills