From review-to-pr
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'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/review-to-pr:fix-allThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Batch process all open code review findings through the Issue → Worktree → PR pipeline.
Batch process all open code review findings through the Issue → Worktree → PR pipeline.
/review-fix-all # Process all open findings
/review-fix-all --dry-run # Preview without executing
Run the autofix script in list mode first to preview:
bash "${CLAUDE_PLUGIN_ROOT}/lib/autofix.sh" --source roborev --all --dry-run
Show the user what will be processed and ask for confirmation.
After confirmation:
bash "${CLAUDE_PLUGIN_ROOT}/lib/autofix.sh" --source roborev --all
After completion, summarize:
Suggest running /review-status to see the full picture.
npx claudepluginhub sheldon123z/review-to-pr --plugin review-to-prFixes all open review findings in a single pass by fetching job IDs from the roborev CLI and applying suggested fixes to the codebase.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.