Help us improve
Share bugs, ideas, or general feedback.
From roborev
Records a comment on a roborev code review and closes it. Useful for adding final remarks or status updates before closing a review.
npx claudepluginhub kenn-io/roborev --plugin roborevHow this skill is triggered — by the user, by Claude, or both
Slash command
/roborev:roborev-respondThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Record a comment on a roborev code review and close it.
Fixes all open review findings from roborev in one pass. Invoked via /roborev-fix or user request to fix open reviews.
Guides technical responses to code review feedback: classify PR comments, verify issues, implement changes with evidence, and reply objectively. Useful for managing reviewer comments.
Responds to pull request review feedback interactively by verifying each item, making code changes, and posting responses on GitHub.
Share bugs, ideas, or general feedback.
Record a comment on a roborev code review and close it.
/roborev-respond <job_id> [message]
This skill requires you to execute bash commands to record the comment and close the review. The task is not complete until you run both commands and see confirmation output.
These instructions are guidelines, not a rigid script. Use the conversation context. Skip steps that are already satisfied. Defer to project-level CLAUDE.md instructions when they conflict with these steps.
When the user invokes /roborev-respond <job_id> [message]:
If no job_id is provided, inform the user that a job ID is required. Suggest roborev status or roborev fix --open --list to find job IDs.
If a message is provided, immediately execute:
roborev comment --job <job_id> "<message>" && roborev close <job_id>
If the message contains quotes or special characters, escape them properly in the bash command.
If no message is provided, ask the user what they'd like to say, then execute the commands with their comment.
Both commands will output confirmation. If either fails, report the error to the user. Common causes:
roborev init)The comment is recorded in roborev's database and the review is closed. View results with roborev show.
With message provided:
User: /roborev-respond 1019 Fixed all issues
Agent action:
roborev comment --job 1019 "Fixed all issues" && roborev close 1019
Then confirm: "Comment recorded and review #1019 closed."
Without message:
User: /roborev-respond 1019
Agent: "What would you like to say about review #1019?"
User: "The null check was a false positive"
Agent action:
roborev comment --job 1019 "The null check was a false positive" && roborev close 1019
Then confirm: "Comment recorded and review #1019 closed."
/roborev-fix — fix a review's findings in code, then comment and close it