Help us improve
Share bugs, ideas, or general feedback.
Reviews PRs by dispatching a subagent, handling rebases, and offering automated fix/merge modes. Trigger: '/pr-review' or 'address review feedback'.
npx claudepluginhub nikhilsitaram/claude-caliper --plugin claude-caliper-workflowHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-caliper-workflow:pr-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dispatch PR review, address feedback, and comment on the PR.
Automates addressing GitHub PR review comments: fetches feedback from reviewers/bots, applies code fixes, verifies changes, pushes updates, resolves threads, requests re-review. Use on PR branches with pending feedback.
Suggests optimal commands for iterative PR review and autofix loops, including review cycles, fixing comments, and Codex reviews. Useful for automating PR checks and resolutions.
Automates GitHub PR review-fix loops: requests bot reviews via @mentions, polls comments with GitHub CLI, analyzes issues, fixes code, runs internal review, pushes changes, repeats until no critical issues.
Share bugs, ideas, or general feedback.
Dispatch PR review, address feedback, and comment on the PR.
Prerequisite: A PR created by /pr-create.
Review principle: Verify each suggestion against the codebase before implementing. Push back on incorrect ones with technical reasoning — no performative agreement.
Identify the PR from argument, current branch (gh pr view), or gh pr list --author @me --state open. If multiple candidates, ask the user. Store PR number, branch, URL.
Detect: BASE_BRANCH from gh pr view --json baseRefName, DEFAULT_BRANCH from refs/remotes/origin/HEAD (fallback for BASE_BRANCH), MAIN_REPO from git rev-parse --path-format=absolute --git-common-dir (strip /.git), IS_WORKTREE (git-dir differs from git-common-dir), WORKTREE_PATH from git worktree list matching branch.
If not on PR branch: use existing worktree if found (cd into it), otherwise gh pr checkout.
If --automated-fix/-A passed, use automated-fix mode. If --automated-merge/-M passed, use automated-merge mode. Both flags together is invalid — fail fast. Either automated flag + --skip-fixes is also invalid — fail fast.
If no flag, read the user's preference:
mode=$(caliper-settings get review_mode)
automated-fix, automated-merge, or deliberate): the user explicitly configured this. Use it.PROMPT_REQUIRED: no explicit preference — use AskUserQuestion to ask:
git fetch origin
if ! git merge-base --is-ancestor origin/$BASE_BRANCH HEAD; then
git rebase origin/$BASE_BRANCH
git push -u origin HEAD --force-with-lease
fi
Use bare git fetch origin (no branch arg) so the remote-tracking ref refs/remotes/origin/$BASE_BRANCH actually advances. git fetch origin $BASE_BRANCH only updates FETCH_HEAD, leaving origin/$BASE_BRANCH stale — which silently widens the reviewer's diff scope when other PRs merge during the session.
If rebased, log it. If conflicts, stop and ask user. After force-push, only process comments posted after the push timestamp (or wait for fresh bot comments).
Skip if --skip-review passed or caliper-settings get skip_review returns true.
Read PR reviewer model: caliper-settings get pr_reviewer_model — substitute into reviewer-prompt.md's model: field.
Read reviewer-prompt.md and dispatch with run_in_background: true:
{DIFF_RANGE} = origin/$BASE_BRANCH...HEAD (three-dot — merge-base diff, matches GitHub's PR view; two-dot includes phantom-reverts of base commits when the branch is behind){REPO_PATH} = repository root{PR_NUMBER} = PR number{HEAD_SHA} = git rev-parse HEAD — anchors the review to the exact commit the subagent saw, so line numbers stay valid even if anything pushes during the background windowSubagent posts findings as inline review comments via the GitHub reviews API, then returns the Findings table for Step 6.
Wait for bots:
--automated-merge from orchestrate: wait 90s, then poll gh pr checks every 30s (timeout: 5 min).caliper-settings get review_wait_minutes (default: 5).Collect from all three sources, dropping self-authored entries. The Step 4 reviewer subagent runs under the same gh identity as the parent and posts to sources 2-3, so re-ingesting its own findings would double-count against the Findings table returned in Step 6. Capture the identity once, then filter:
GH_USER=$(gh api user -q .login)
gh pr view --json commentsgh api repos/{owner}/{repo}/pulls/$PR_NUMBER/commentsgh pr view --json reviewsThe author field shape differs by API — gh pr view --json reshapes to .author.login (sources 1 and 3), while the raw REST endpoint uses .user.login (source 2). Filter with a fallback so one expression works on all three:
jq --arg me "$GH_USER" '[.[] | select((.user.login // .author.login) != $me)]'
After filtering, sources 2-3 are bot-only.
Categorize:
| Category | Action |
|---|---|
| Actionable — bug, security, correctness | Fix |
| Suggestion — style, refactor | Fix if improves code, dismiss with reason if not |
| Informational — praise, explanation | Acknowledge |
| False positive | Dismiss with reasoning |
Automated (fix or merge): Fix actionable items, run tests. If --skip-review (no wave 2): commit and push. Otherwise: commit locally only (wave 2 may touch same files).
Deliberate: Collect and report. No fixes yet.
Wait for background subagent (Step 4). Skip if --skip-review.
Automated (fix or merge): Dismiss findings already fixed in wave 1. Fix remaining actionable items, run tests, commit and push (covers both waves).
Deliberate: Merge with Step 5 findings into unified set. Proceed to Step 7.
Show summary table (source, category, action, counts). AskUserQuestion:
Skip if --skip-fixes. Fix each item, run tests (fail = stop), commit and push.
Post gh pr comment: what was fixed, dismissed (with reasons), no-action. Omit empty sections.
Report PR URL and item counts. Automated-merge mode: invoke pr-merge. Automated-fix mode: tell user to run /pr-merge when ready. Deliberate mode: offer merge or tell user to run /pr-merge when ready.
| Arg | Effect |
|---|---|
<PR number> | Target specific PR |
| (none) | Detect from current branch |
--skip-review / -R | Skip subagent review (Steps 4, 6) |
--skip-fixes / -S | Skip fixing — just comment (invalid with automated modes) |
--automated-fix / -A | Fix all actionable, no interaction |
--automated-merge / -M | Fix all actionable, then auto-merge |
| Mistake | Why |
|---|---|
| Blindly implementing suggestions | Verify against codebase, push back on incorrect ones |
| Skipping PR comment | Always post what was addressed |
| Pushing between wave 1 and 2 | Wave 1 commits locally, wave 2 pushes |
Preceded by: pr-create | Followed by: pr-merge