com um clique
review-pr
// Review a pull request. Self-fix on own PRs, post a review on others'. Load repo-setup first.
// Review a pull request. Self-fix on own PRs, post a review on others'. Load repo-setup first.
Auto-merge a PR after it is marked ready-for-review, if the change is small, non-disruptive, and all checks pass.
Diagnose and fix failing CI on a PR. Capped at 3 attempts. Load repo-setup first.
Promote a draft PR to ready-for-review after CI passes and self-review is clean. Assigns reviewers and adds labels.
Clone or refresh a GitHub repo and prepare the working tree. Load this before any situation skill.
Resolve a GitHub issue end-to-end — explore, plan, implement, clean up, and open a draft PR.
Triage and respond to comments on a PR. Fix if actionable, reply either way. Load repo-setup first.
| name | review-pr |
| description | Review a pull request. Self-fix on own PRs, post a review on others'. Load repo-setup first. |
| license | Apache-2.0 |
| metadata | {"audience":"autonomous-agents"} |
Review a PR the bot is involved in. Load repo-setup first.
gh pr view <N> --json author --jq .author.login
vs gh api user --jq .login. Skip drafts unless it's your own PR.review skill. For large diffs, use an explore sub-agent.--comment review (reserve --approve
for when you can vouch for correctness).apply-fixes skill to push fixes.--request-changes or
--comment review via gh pr review. Don't push to their branch.Write review comments like a senior dev — direct, specific, no filler. "this will panic on nil" not "I noticed that this could potentially cause a nil pointer dereference."
Don't approve trivially. Don't merge.