What problem does it solve? Tests that pass even when the code they cover is broken give false confidence, and CI misconfigurations silently weaken security and gating. This Skill reviews test, e2e, and CI changes to expose theater tests, flaky e2e patterns, and GitHub Actions or Prow misconfiguration before they reach human review. ## Core Features & Use Cases - Theater-test detection: Applies the deletion test (would the test fail if the code under test were deleted?) plus checks for tautological assertions, over-mocking, and guard fixtures that cannot trip the guard. - e2e and integration quality review: Flags sleep-based synchronization, retry-masked failures, missing teardown, order dependence, and non-hermetic network dependencies. - CI config review: Checks GitHub Actions for unpinned actions, over-broad permissions, pull_request_target risks, and shell injection, plus Prow jobs for regex trigger mismatches and missing resource limits. - Use Case: Before requesting review on a PR that adds tests and a new workflow, run the review to get each finding as file:line with a category (theater-test/flakiness/ci-config/coverage-gap) and severity (must-fix/should-fix/consider). ## Quick Start Ask the assistant to review these tests and the workflow changes in the current diff for theater tests and CI misconfiguration.