What problem does it solve? Keeping integration tests synchronized with ongoing code changes across a monorepo is tedious and error-prone, and failing tests often go uninvestigated. This Skill automates the entire loop: detecting changes, updating or creating tests, running the full suite, and fixing every failure. ## Core Features & Use Cases - Change Detection: Uses git diff commands to identify changed source files across sub-repos and maps them to existing test coverage. - Test Authoring: Updates outdated assertions or writes new Tier 1 (API contract) and Tier 3 (live infrastructure) tests following existing conventions. - Failure Resolution Loop: Runs the full vitest suite, diagnoses failures with proven root causes, fixes tests or application code, and iterates up to 5 cycles. - Use Case: After implementing a new API endpoint in the backend repo, invoke this Skill to generate integration tests for it, run the whole suite, and get a report of passing tests with any application bugs fixed along the way. ## Quick Start Ask the AI to update the integration tests to cover your recent code changes and run the full suite until everything passes.