What problem does it solve? Raw coverage percentages can pass while tests assert nothing meaningful, and multi-lane coverage reports can silently undercount or double-count lines. This Skill gates commits and pushes on both accurate merged coverage and real behavioral assertions. ## Core Features & Use Cases - Multi-lane coverage merging: Merges reports from every contributing lane using exact per-line union when formats allow, or a flagged weighted approximation when they do not. - Flexible threshold modes: Supports absolute thresholds and a no-decrease mode that compares against a per-branch baseline, plus stricter per-glob critical-path thresholds. - Test quality enforcement: Fails wiring-only tests that assert only mock calls, and audits unreliable v8 ignore next coverage directives. - Use Case: A team with unit, integration, and e2e lanes wants to block a push when the payments module drops below 100% line coverage or when a new test only verifies a mock was called. ## Quick Start Ask the assistant to run the coverage gate for the current trigger and report any threshold, critical-path, or wiring-only test failures.