CI Fix Monitor
Monitor and fix continuous integration failures on pull requests automatically.
Installation
- Make sure Claude is on your device and in your terminal.
Skills load from
~/.claude/skills/when Claude Code starts up — so you need it on your machine first. If you don't have it yet, install it once with the command below, then runclaudein any terminal to verify.One-time setupnpm i -g @anthropic-ai/claude-codeAlready have it? Skip ahead.
- Paste into Claude Code or into your terminal.
This copies the whole skill folder into
~/.claude/skills/ci-fix-monitor-zaxbyhub/— the SKILL.md plus any scripts, reference docs, or templates the skill ships with. Safe default: works for every skill.Faster alternative (instruction-only skills)
Skips the clone and grabs only the SKILL.md file. Don't use this if the skill ships Python scripts, reference markdowns, or asset templates — they won't be downloaded and the skill will fail when it tries to load them.
Quick install (SKILL.md only)Sign up to copy - Restart Claude Code.
Quit and reopen Claude Code (or any other agent that loads from
~/.claude/skills/). New skills are picked up on startup. - Just ask Claude.
Skills auto-activate when your request matches the skill's description — no slash command needed. Trigger phrases live in the skill's own frontmatter; you can read them in the “What this skill does” section above.
Prefer to read the source first? Open on GitHub.
When Claude uses it
Codex adapter for monitoring and fixing CI failures on opencode-swarm PRs. Use when diagnosing failed checks, fixing `package-check` (npm tarball) failures, resolving quality/lint/format errors, fixing macOS cross-platform file I/O failures, or watching a PR until all checks are green.
What this skill does
CI Fix Monitor
Read .opencode/skills/generated/ci-fix-monitor/SKILL.md for the full protocol.
Also load:
.agents/skills/commit-pr/SKILL.mdbefore committing or pushing any fix.agents/skills/engineering-conventions/SKILL.mdif the fix touches source files.agents/skills/running-tests/SKILL.mdbefore running any test suite as part of a fix
Codex-specific execution notes:
- MCP tool names (
mcp__github__*) are injected by the runtime harness and may differ across environments. Verify availability viaToolSearchbefore first use in a session. - No
ghCLI available. Usemcp__github__pull_request_read(methodget_check_runs) to list check status andmcp__github__get_job_logs(withreturn_content: true) to fetch failure logs. - For
package-checkfailures:package-checkvalidates the npm tarball (npm pack+ tarball contents). A failure is a source/build/package-manifest problem, not generated-file drift.dist/is generated and NOT committed — do not stage it; runbun run buildlocally only when you need the bundle to verify (e.g.node --input-type=module -e "await import('./dist/index.js'); console.log('dist import OK')"). There is no longer a committed-dist drift check. - For a branch behind main (version-drift):
git fetch origin main && git rebase origin/main(abort withgit rebase --abortif conflicts occur and escalate to user), thengit push --force-with-lease origin <branch>. Force-push is required and expected after rebase. - For format violations:
bunx biome format --write <specific-file>— do NOT runbiome format --write .on the whole repo. - After any source fix, run the focused test file (
bun test <file>) before committing. - Do not declare victory until ALL required checks show green;
skippedis acceptable only if the same check was skipped on the base branch.
Related skills
Documentation Co-Authoring
anthropics
Guide structured workflows for writing docs, proposals, and technical specs collaboratively.
MCP Server Builder
anthropics
Build protocol servers that connect language models to external APIs and services.
Skill Builder & Optimizer
anthropics
Create, edit, and optimize Claude skills with performance testing and benchmarking.
Multi-Component Web Artifacts
anthropics
Build complex React artifacts with Tailwind CSS and shadcn/ui components.