What problem does it solve? Flaky tests erode trust in CI pipelines and waste developer time on reruns. This Skill autonomously hunts down intermittently failing tests, identifies the real source of nondeterminism, and fixes it permanently instead of masking it with retries. ## Core Features & Use Cases - CI History Mining: Scans GitHub Actions run history for same-commit red-to-green reruns and inconsistent failure patterns across workflows. - Root-Cause Diagnosis: Identifies common nondeterminism sources such as real timers, missing teardown, shared state, port collisions, unawaited promises, and unseeded randomness. - Determinism Verification: Requires 20 consecutive green runs before shipping, proving the fix rather than relying on luck. - Use Case: A dashboard test fails roughly once in ten CI runs. The Skill mines the CI logs, traces the failure to leaked OTP teardown state, fixes the lifecycle bug, verifies 20 consecutive green runs, and ships the fix via /ship. ## Quick Start Invoke /routine-flaky-test-fixer with an optional package or path to hunt down and fix a flaky test in that scope.