# Check CI

> Check CI status for current branch, a PR, or recent runs

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

---


Check CI status for the MPADAO project:

1. If $ARGUMENTS is a number, check PR: gh pr checks $ARGUMENTS
2. If $ARGUMENTS is a branch name: gh run list --branch $ARGUMENTS --limit 5
3. If no arguments: gh run list --limit 5

For any failed runs:
4. Get the run ID and fetch the log: gh run view <id> --log-failed | tail -100
5. Analyze the failure and identify root cause
6. Summarize: what passed, what failed, the failure reason, and suggested fix

