What problem does it solve? Projects often lack visibility into which code paths are untested, and manually identifying coverage gaps and writing meaningful tests is time-consuming. This Skill automates coverage measurement, gap analysis, and targeted test authoring. ## Core Features & Use Cases - Multi-language coverage measurement: Runs coverage commands for TypeScript/JavaScript (Jest, Vitest), Python (pytest), Go, and Rust (cargo llvm-cov), preferring lcov format output. - Prioritized gap analysis: Parses lcov reports to identify the lowest-coverage files, functions, and uncovered branches such as error handling and edge cases. - Behavior-focused test authoring: Adds tests following existing project patterns, prioritizing edge cases and user-perspective test documentation rather than meaningless coverage-padding tests. - Use Case: After adding a new feature, run this Skill to measure coverage, find that your error-handling branches in a core module are at 0%, and automatically add tests until the target coverage threshold is met. ## Quick Start Measure the test coverage of this project and add tests to the lowest-coverage files until coverage reaches 80%.