"Triple agent" code review Claude skill A developer has created a "triple agent" code review tool called "code-review-turbo" that runs Cursor Bugbot, a Claude sub-agent, and Codex in parallel on a pull request, then cross-references all findings to filter out hallucinations. The tool automatically detects the PR number, creates a draft PR if needed, triggers Bugbot reviews, checks for staleness by comparing comment timestamps against the latest commit, and uses the GraphQL API to verify whether Bugbot's inline comments have been resolved. If Bugbot fails to respond within 15 minutes, the tool warns the user and asks whether to proceed or continue waiting. | name | code-review-turbo | |||| |---|---|---|---|---|---| | description | Run a triple-agent code review on the current branch's PR. Waits for Cursor Bugbot, runs a Claude sub-agent and Codex in parallel, then cross-references all findings to filter out hallucinations. Use when you want a thorough, multi-perspective code review before merging. | |||| | metadata | | |||| | allowed-tools | Bash gh: Bash codex: Bash cat: Bash tee: Bash sleep: Agent Read Grep Glob Write /tmp/ | Triple-agent code review: Cursor Bugbot + Claude sub-agent + Codex, with cross-referencing to separate real bugs from hallucinations. Determine the PR number. If $ARGUMENTS is provided, use that as the PR number. Otherwise, try to detect it from the current branch: gh pr view --json number,isDraft -q '{number: .number, isDraft: .isDraft}' Create a draft PR for the current branch and comment to trigger Bugbot: gh pr create --draft --fill gh pr comment