From github-ops
Combines PR review and CI failure triage into one human-controlled loop with explicit approval before edits or remote writes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/github-ops:pr-review-ci-loopThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Combine PR review and CI failure triage into one human-controlled loop. Review findings and CI logs are inputs; they are not permission for autonomous remote actions.
Combine PR review and CI failure triage into one human-controlled loop. Review findings and CI logs are inputs; they are not permission for autonomous remote actions.
Do not use when the user only asked for a review, only asked for CI diagnosis, or has not approved edits.
gh for GitHub-hosted PRsgh pr view <pr> --json number,title,author,baseRefName,headRefName,mergeStateStatus,reviewDecision,statusCheckRollup
gh pr diff <pr> --stat
gh pr diff <pr>
Record file count, risky areas, generated files, and public API changes.
Classify findings by severity:
| Category | What to check |
|---|---|
| Correctness | Logic errors, off-by-one, wrong assumptions |
| Tests | Missing coverage for changed behavior, broken assertions |
| Public API | Breaking changes to exports, signatures, or contracts |
| Security | Injection risks, exposed secrets, auth bypass |
| Migration / release risk | Schema changes, feature flags, rollback difficulty |
gh pr checks <pr>
gh run view <run-id> --log-failed
Extract the first failing assertion or error line. Categorize each failure as code error, flaky, environment, or config.
REVIEW FINDINGS:
[blocking] <description> - <file:line or section>
[non-blocking] <description>
CI FAILURES:
<check name>: <first error line>
Likely cause: <code error / flaky / env / config>
LIKELY FIXES:
1. <specific change>
2. <specific change>
VALIDATION PLAN:
- Run: <command>
- Expected: <outcome>
State the exact operation before running it:
NEXT REMOTE ACTION: git push origin <branch>
EFFECT: updates the remote branch, triggering CI re-run
Approve?
npx claudepluginhub yeaight7/agent-powerups --plugin github-opsCreates, edits, and verifies skills using a test-driven development approach with pressure scenarios and subagents.