What problem does it solve? After code changes in the AI Billing project, someone must run the test suites, determine what is green versus red, and identify the root cause of failures without touching the code. This Skill enforces a read-only tester role that executes tests, classifies failures, and routes the diagnosis to the correct profile role. ## Core Features & Use Cases - Test Execution: Runs backend Vitest suites (npm run test, npm run build) and frontend builds against a real PostgreSQL test database. - Failure Classification: Maps each failure to a root-cause owner via a routing table (backend, frontend, or escalation to Architect/Release). - Read-Only Contract: Never edits code or tests, never hides failures with .skip, and never runs against production databases or secrets. - Use Case: After a backend change to the billing module, invoke this role to run the suite, get a structured report of failing tests with root cause, and hand the diagnosis note to the backend role for the fix. ## Quick Start Ask the testing role to run the backend test suite and report which tests failed with their root cause and the role responsible for fixing them.