一键导入
bugbot-pr-review
Review and adjudicate Bugbot, Cursor, Seer, and similar automated PR feedback with local evidence before accepting, fixing, or dismissing findings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Review and adjudicate Bugbot, Cursor, Seer, and similar automated PR feedback with local evidence before accepting, fixing, or dismissing findings.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | bugbot-pr-review |
| description | Review and adjudicate Bugbot, Cursor, Seer, and similar automated PR feedback with local evidence before accepting, fixing, or dismissing findings. |
| user-invocable | true |
| argument-hint | [PR number, branch, bot comment URL, or review scope] |
Use this skill when the user asks about Bugbot, Cursor bot, Seer, automated PR review comments, bot findings, or whether AI review feedback should block a PR.
This is a Codex-native adaptation of the Bugbot-related guidance found in the
Cursor iterate-pr workflow. Bot output is advisory. Codex main must verify
claims locally before recommending fixes or dismissal.
Do not merge, close, or dismiss a PR solely because a bot check is green or a bot comment looks plausible. Inspect the relevant PR checks, comments, diff, and local code. Classify each bot finding as:
confirmed: issue is real and reachable.duplicate: already covered by another finding or pending fix.non-actionable: bot is wrong, obsolete, stylistic-only, or outside scope.needs-info: insufficient local evidence; name the missing proof.Do not modify code unless the user explicitly asks for remediation.
Start by proving scope:
git status --short --branch
gh pr view <pr> --json number,title,headRefName,headRefOid,baseRefName,reviewDecision,statusCheckRollup
gh pr checks <pr>
Before relying on local files, verify the local copy matches the PR head:
PR_HEAD_OID="$(gh pr view <pr> --json headRefOid --jq '.headRefOid')"
if [[ "$(git rev-parse HEAD)" != "$PR_HEAD_OID" ]]; then
echo "Local HEAD does not match PR head; stop and use a clean local copy at the PR head before local-code adjudication." >&2
exit 1
fi
Branch switching is a separate user-approved setup step, not part of the default read-only adjudication flow.
If any relevant automated check is pending, say so before concluding:
bugbotcursorseerFetch both review comments and conversation comments because bots may use either channel:
gh api repos/{owner}/{repo}/pulls/<pr>/comments
gh api repos/{owner}/{repo}/issues/<pr>/comments
gh pr view <pr> --json reviews,comments,reviewDecision
Filter for automated authors and bot-like bodies, including Bugbot, Cursor, Seer, Sentry, Codecov, and repository-specific review bots.
Map each bot comment to changed code.
Read local context.
Verify reachability.
Decide action.
Re-check after remediation.
## Bot Findings
### Confirmed - path/to/file.ts:123
- Bot: Bugbot | Cursor | Seer | other
- Claim: concise bot claim
- Evidence: local code, diff, test, or runtime proof
- Impact: user/system effect
- Action: fix now | defer with reason | already fixed
- Verification: command or proof path
### Non-actionable - path/to/file.ts:123
- Bot:
- Claim:
- Reason: stale | impossible path | duplicate | stylistic | already covered
- Evidence:
## Pending Checks
- Check:
- Status:
- Risk:
## Verdict
NO - unresolved confirmed blockers or pending bot checks can still change the
review.
YES - bot feedback is resolved or non-actionable; residual risks listed above.
When the user asks to fix confirmed bot findings:
Improve, audit, simplify, rewrite, or migrate prompts, tool descriptions, agent instructions, and prompt stacks for GPT-5.6 Sol or the GPT-5.6 family. Use for outcome-first prompt design, autonomy boundaries, tool routing, PTC, grounding, verbosity, reasoning effort, and prompt evals.
Apply a deep, design-minded engineering workflow for complex work that needs careful planning, iteration, and simplification.
Use when preparing or running a Claude CLI agentic engineering review through claude -p for repository audits, architecture analysis, system design, security review, large refactors, specs, RFCs, or evidence-grounded long-form engineering analysis.
Use when preparing or running a ZCode GLM-5.2 agentic builder workflow through zcode --prompt for fast implementation, iterative code generation, focused fixes, and validation on an existing repository.
Apply adversarial opposite-analysis to plans, specs, architecture, code changes, and claims. Use when the user asks for adversarial review, opposing analysis, contrarian review, red-team reasoning, or Z.ai and MiniMax cross-checks through the Ralph MCP router.
Find real bugs in local code, branch diffs, or named surfaces with evidence-first triage, regression-test guidance, and Codex-native verification.