# CI

> Investigates failed CI checks or GitHub Actions on a branch or PR. Use when the user says CI failed, checks are red, or /ci. Maps failure to local repro.

- Skill: `axidify/ci` (Agent Skill)
- Install (CLI): `npx skillmds@latest add axidify/ci`
- Raw SKILL.md: https://api.skillmd.com/api/skills/axidify/ci/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Axidify (https://skillmd.com/u/axidify)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/axidify/ci

---


# CI (failed checks)

## Checklist

1. **Identify the run** — PR number, branch, or commit; use `gh pr checks`, `gh run list`, or CI UI links the user provides
2. **Failed job / step** — name, log excerpt, first error line (not the whole log dump)
3. **Classify** — test failure, lint, typecheck, build, deploy, flaky, infra
4. **Map to local** — find the equivalent command in `package.json`, Makefile, or workflow YAML
5. **Reproduce** — run locally when possible; report match or environment-only failure
6. **Fix proposal** — minimal change; implement only if the user asked to fix

## Rules

- Prefer `gh run view` / `gh pr checks` when GitHub Actions is used
- Distinguish **new** failures (this branch) from **main already red**
- Do not disable checks or skip tests without explicit user approval
- After fix, suggest **test** and re-push or re-run CI

Hand off to **debug** when root cause in application logic is unclear.

## Related skills

- **test** — reproduce failures locally
- **pr** — checks on a pull request branch
- **debug** — application logic root cause

