By sheldon123z
Automate the pipeline from code review findings to GitHub Issues, isolated worktree fixes, and Pull Requests with severity-based merge strategies.
Clean up worktrees and branches from completed review-to-pr fixes. Use when user says 'clean up worktrees', 'review cleanup', 'remove fix branches', or '/review-cleanup'.
Process all open code review findings at once. Use when user says 'fix all reviews', 'process all findings', 'review fix all', or '/review-fix-all'.
Process a code review finding into a GitHub Issue, isolated worktree fix, and Pull Request. Use when user says 'review fix', 'fix review', 'process review finding', 'create fix PR from review', or '/review-fix'.
Initialize review-to-pr in the current project. Use when user says 'review-to-pr init', 'setup review automation', 'configure review-to-pr', or wants to set up automated code review → PR pipeline.
Show status of all active review-to-pr fix branches and PRs. Use when user says 'review status', 'show fix status', 'what PRs are pending', or '/review-status'.
Executes bash commands
Hook triggers when Bash tool is used
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code plugin that automates the pipeline from code review findings to Pull Requests.
Code Review → GitHub Issue → Worktree Fix → PR → Merge Strategy
# Step 1: Add marketplace (one-time)
claude plugins marketplace add sheldon123z/review-to-pr
# Step 2: Install plugin
claude plugins install review-to-pr
# Clone the repo
git clone https://github.com/sheldon123z/review-to-pr.git
# Install from local directory
claude plugins install review-to-pr --scope user
claude plugins list | grep review-to-pr
# Initialize in your project
/review-to-pr-init
# Fix a single review finding
/review-fix roborev 20
# Fix all open findings
/review-fix-all
# Check status
/review-status
# Clean up completed worktrees
/review-cleanup
| Tool | Required | Purpose |
|---|---|---|
| Claude Code | Yes | Plugin host |
| git | Yes | Worktree and branch management |
| gh CLI | Yes | GitHub Issue/PR creation and merge |
| roborev | Optional | Default review source |
| python3 | Yes | State file management |
After running /review-to-pr-init, a review-to-pr.toml is created in your project root:
[review]
agent = "codex" # Default review/fix agent
model = "" # Agent model (empty = default)
backup_agent = "claude" # Fallback agent
backup_model = ""
[merge]
auto_merge_severity = ["low"]
ci_timeout_seconds = 300
merge_method = "squash"
[templates]
language = "zh" # zh / en
| Source | Command | Status |
|---|---|---|
| roborev | /review-fix roborev <job-id> | Fully supported |
| inline | /review-fix inline | Paste review content |
MIT
npx claudepluginhub sheldon123z/review-to-pr --plugin review-to-prClaude Code 任务完成语音通知插件,通过 TTS 服务自动播报任务总结
Automated PR review-fix loop: collect bot reviews, analyze comments, fix code, push, repeat until clean.
Fix PR review comments automatically with context-aware patches
Process and fix code review issues with risk assessment - decides FIX vs TECH_DEBT based on impact
Multi-language iterative PR review + autofix loop (built-in iteration engine + pr-review-toolkit + optional Codex)
Manage GitHub PR review comments. Automatically triage, fix, and respond to review findings.
Help address review/issue comments on the open GitHub PR for the current branch using gh CLI; verify gh auth first and prompt the user to authenticate if not logged in. Originally from OpenAI's curated skills catalog.