Red CI to green, automatically
The moment a CI workflow fails on a PR branch, the playbook clones the branch, reads the run details and job logs to pinpoint the root cause, then implements and verifies the fix. It commits with a conventional fix(ci) message, pushes, and comments on the PR with a summary of what it changed.

The edge cases, covered
From flaky tests to broken builds, it handles the full range of CI failures with a read-only analysis pass before any code is touched.
Failing tests
Diagnoses and repairs broken unit and integration tests after code changes, getting the suite back to green.
Lint and format errors
Auto-fixes linting and formatting violations flagged by CI so style checks stop blocking the merge.
Build failures
Resolves compilation errors, missing imports, and type errors that break the build pipeline.
Read-only root-cause analysis
A dedicated analysis pass reads the run logs and produces a numbered fix plan before a single line of code is modified.
Configuration issues
Fixes CI-related config problems such as missing environment variables in the test setup.
Plugs into your CI pipeline
It reads run logs straight from your CI provider and pushes fixes to the PR branch on your Git host using your existing permissions.
Running from day one
Fires automatically on any ci_workflow_failed event on a PR branch, or run /fix-ci by hand. Needs a Senior Developer agent and push access on PR branches.


