Coverage Guard Mode When activated, checks coverage after test runs and warns if it drops below the configured threshold. What It Does After any test execution (via Bash tool), compares coverage to the threshold in config.json. Warns (doesn't block) if coverage decreased. Activation Configuration Edit in this skill directory to set thresholds: Hook Configuration Enforcement Logic Gotchas - Coverage check runs AFTER the test command — if tests crash, no coverage report is generated - Coverage-summary.json must be configured as a reporter — default Jest config may not include it - Threshold com…