Fix Failing CI Pipelines
Finds GitHub Actions workflows whose latest run failed on the staging branch, summarizes the error, and hands off the fix.
AutomationIntermediate★ 1,747⑂ 102AI score 7/10Last updated: Aug 28, 2026
What it does
- Lists the 50 most recent workflow runs on a branch (defaults to
staging) viagh run list, groups them by workflow and keeps only the latest run each. - Filters out
in_progress,cancelledand successful runs, keeping only workflows whose latest run hasconclusion: failure. - Pulls failed job/step names and the last 100 lines of
gh run view --log-failedto summarize the actual error. - Dispatches
/babysitter:yolowith the failure context to fix the root cause and push, then verifies a new run was triggered and prints a final summary.
Who it's for
- DevOps/platform engineers who babysit a red GitHub Actions dashboard daily.
- Teams with an authenticated
ghCLI that want a hands-off CI repair loop. - Anyone willing to edit the file, since the repo name, branch and the
/babysitter:yolodependency are hard-coded.
Examples
- "Check the staging pipelines" → you get a list of failing workflows with run IDs, failing job/step names and an error summary.
- A build workflow breaks at the dependency-install step → the skill summarizes the log, delegates the fix, commits to staging and confirms a new run started.
- Nothing is failing → it reports "all staging pipelines are green" and stops without touching anything.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/a5c-ai/babysitter/HEAD/.claude/skills/fix-failing-pipelines/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/fix-failing-pipelines folder from the GitHub repo a5c-ai/babysitter into my ~/.claude/skills/fix-failing-pipelines/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/a5c-ai/babysitter.git /tmp/babysitter && mkdir -p ~/.claude/skills && cp -r /tmp/babysitter/.claude/skills/fix-failing-pipelines ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install the GitHub CLI and authenticate:
gh auth login(hard requirement). - Clone the repo:
git clone https://github.com/a5c-ai/babysitter.git /tmp/babysitter - Copy the skill:
mkdir -p ~/.claude/skills && cp -r /tmp/babysitter/.claude/skills/fix-failing-pipelines ~/.claude/skills/ - Open
~/.claude/skills/fix-failing-pipelines/SKILL.mdand replacea5c-ai/babysitterwith your repo andstagingwith your branch. - If you don't have
/babysitter:yolo, rewrite Step 5 to tell Claude to investigate and fix the failure itself. - Restart Claude Code and try: "find and fix the failing CI workflows".
- Note that it commits straight to the target branch — test it against a throwaway branch first.
View source on GitHub ↗License: MIT