What problem does it solve? Writing tests from scratch is time-consuming, and it is easy to miss edge cases or duplicate existing coverage. This Skill analyzes your changed source files, finds gaps in existing test suites, and writes only the tests needed to close those gaps. ## Core Features & Use Cases - Gap Analysis: Detects recently changed files via git diff, reads existing tests, and identifies untested functions, branches, and edge cases. - Convention-Aware Test Writing: Reuses existing test utilities, fixtures, and mocks, and matches the repo's established testing style and patterns. - Coverage Verification: Runs the test suite and coverage tooling (e.g., go test -cover, pytest --cov) and reports results back to you. - Use Case: After modifying a payment processing module, invoke this Skill to generate table-driven tests for the new branches, run the suite, and confirm coverage of the changed code. ## Quick Start Write tests for the files I just changed and report the coverage results.