What problem does it solve? Codebases often have hidden test coverage gaps that let bugs ship to production, and manually finding uncovered functions, writing tests for them, and keeping coverage tooling configured is slow and error-prone. ## Core Features & Use Cases - Coverage Gap Analysis: Runs pytest with branch coverage, parses coverage.json, and ranks uncovered functions by criticality, recency, and complexity. - Automated Test Generation: Spawns writer and reviewer subagents to generate idiomatic pytest tests with iterative refinement until they pass quality review. - Threshold Enforcement & Codecov Audit: Enforces aggregate and optional per-file coverage gates, audits codecov.yaml flags, components, and Test Analytics, and maps OWASP Top 10 categories to existing security tests. - Use Case: Before merging a large PR, run the enforce mode to verify the project meets the 80% line and 70% branch gate, then generate tests for the worst-covered module and audit the Codecov configuration in one workflow. ## Quick Start Ask the agent to analyze test coverage for your project and generate tests for the lowest-coverage module.