From review-to-pr
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'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/review-to-pr:fixThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Convert a single review finding into a tracked, isolated fix with full GitHub integration.
Convert a single review finding into a tracked, isolated fix with full GitHub integration.
/review-fix # Interactive: ask for source and job ID
/review-fix roborev 20 # Fix roborev job #20
/review-fix inline # Paste review content inline
If arguments provided, use them. Otherwise ask the user:
roborev fix --list to show available jobs, ask user to pick oneFor roborev source, run the autofix script:
bash "${CLAUDE_PLUGIN_ROOT}/lib/autofix.sh" --source roborev --job-id <JOB_ID>
For inline source:
bash "${CLAUDE_PLUGIN_ROOT}/lib/autofix.sh" --source inline --review-file /tmp/review-input.mdAfter the script completes:
For non-roborev sources where automated fix isn't available, spawn the fixer agent:
Agent(subagent_type="review-to-pr:fixer", prompt="Fix the code issues described in .review-report.md in the current worktree at /tmp/review-fix-<id>")
The fixer agent will:
/review-to-pr-init first! gh auth login/review-statusnpx claudepluginhub sheldon123z/review-to-pr --plugin review-to-prAddresses code review feedback by validating issues, fixing valid ones, and batch-committing changes. Handles local agent feedback or GitHub PR threads via /fix-code-review-feedback or auto-invocation.
Fixes all open review findings in a single pass by fetching job IDs from the roborev CLI and applying suggested fixes to the codebase.
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.