Ci fix
Diagnose and repair failing CI checks with the smallest safe change. Use when asked to fix GitHub Actions, GitLab CI, local test failures, lint failures, typecheck failures, build failures, or release pipeline errors.From its SKILL.md
npx -y skills add bakerstreetco/skills --skill ci-fixAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 267 tokens by cl100k_base, as published. Nobody here has run it
CI Fix
Use this skill to turn a failing check into a reproduced diagnosis and a minimal fix. Prefer the exact failing command and logs over guessing.
Workflow
- Identify the failing check, command, job, branch, and commit.
- Collect logs from the local terminal, CI output, or hosting CLI when available.
- Reproduce locally with the closest focused command before changing code when practical.
- Classify the failure: code regression, test expectation, environment drift, dependency issue, flaky timing, missing generated file, or configuration problem.
- Implement the smallest fix that addresses the root cause.
- Re-run the failing command and one adjacent safety check when practical.
- Avoid hiding failures by weakening tests or disabling checks unless that is the intended fix and the reason is documented.
Common Commands
git status --short --branch
gh run list --limit 10
gh run view --log
npm test
npm run lint
pytest
go test ./...
cargo test
Use the commands that match the repo; do not assume a package manager without checking.
Output
Summarize:
- Failing check and root cause.
- Files changed.
- Verification commands and results.
- Any remaining CI-only risk that could not be reproduced locally.
What ships with it: 2 files
638 B alongside SKILL.md
agents/
- openai.yaml196 B
- skill.json442 B