Imported from r0llingp1n/skills_project (
skills/ci-status/SKILL.md). Install upstream withnpx skills add r0llingp1n/skills_project --skill ci-status. Copyright stays with the author.
CI Status
Check the status of CI checks for a PR or branch.
Usage
/ci-status 12
/ci-status issue-42-add-login-page
Instructions
Read and follow ${CLAUDE_PLUGIN_ROOT}/skills/_shared/conventions.md.
- Determine if the argument is a PR number or branch name
- Compose a script to fetch check status:
- If a PR number:
gh pr checks <number> - If a branch name:
gh run list --branch <branch> --limit 5 --json name,status,conclusion
- If a PR number:
- Present results as a table: check name, status, conclusion, duration
- If any checks failed, compose a script to run
gh run view <run-id> --log-failedto fetch failure logs- Provide a brief diagnosis of each failure
- Suggest fixes if the cause is apparent