roborevrespond
This tool validates job IDs, adds review comments, and executes commands to close the review status.
Install
mkdir -p .claude/skills/roborevrespond && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/4369" && unzip -o skill.zip -d .claude/skills/roborevrespond && rm skill.zipInstalls to .claude/skills/roborevrespond
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Add a comment to a roborev code review and close itKey capabilities
- →Add a comment to a roborev code review
- →Mark a roborev code review as addressed
- →Validate job IDs before commenting or closing
- →Inspect job details using `roborev show`
- →Handle messages with special characters by escaping them
How it works
This skill records a comment on a roborev code review and closes it by executing specific bash commands. It validates the job ID and ensures the job is a synthesis parent or non-panel review.
Inputs & outputs
When to use roborevrespond
- →Close code review jobs
- →Comment on PR feedback
- →Resolve review items
About this skill
roborev-respond
Record a comment on a roborev code review and close it.
Usage
$roborev-respond <job_id> [message]
Explicit invocation only
Invocation must be explicit: literal personal $roborev-respond, plugin
$roborev:roborev-respond, or structured Codex skill selection.
Requests such as “respond to this review” without one of these explicit mechanisms must use
native behavior and must not run roborev.
Sandbox access
roborev uses a local daemon. If a command fails with permission denied, the sandbox may be
blocking access to its loopback port or Unix socket. Retry the same command with
sandbox_permissions: "require_escalated". Do not start or restart the daemon because a
sandboxed status probe cannot reach it.
IMPORTANT
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.
Instructions
When the user invokes $roborev-respond <job_id> [message]:
1. Validate input
If no job_id is provided, inform the user that a job ID is required. Suggest roborev status or roborev fix --list to find job IDs. Discovery surfaces synthesis parents (and non-panel reviews), never individual panel members, so the job ID you comment on and close is the parent.
If a job_id is provided, inspect it before closing:
roborev show --job <job_id> --json
If job.panel_role is "member", do not comment on or close that job.
Resolve the synthesis parent for the same job.panel_run_uuid if it is already
known from the conversation or discovery output; otherwise ask the user for the
synthesis parent ID. Only continue once the resolved job ID is a synthesis
parent or a non-panel review.
2. Record the comment and close the review
If a message is provided, immediately execute:
roborev comment --job <resolved_job_id> "<message>" && roborev close <resolved_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.
3. Verify success
Both commands will output confirmation. If either fails, report the error to the user. Common causes:
- The daemon is not running
- The job ID does not exist
- The repo is not initialized (suggest
roborev init) - The review is already closed (not an error, but worth noting to the user)
The comment is recorded in roborev's database and the review is closed. View results with roborev show.
Examples
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."
See also
$roborev-fix— fix a review's findings in code, then comment and close it
When not to use it
- →When the user requests to respond to a review without explicit invocation of `$roborev-respond`
Limitations
- →Cannot comment on or close a job where `job.panel_role` is "member"
- →Requires the roborev daemon to be running
- →Requires the repo to be initialized
How it compares
This skill provides a structured command-line interface to interact with roborev reviews, automating the process of commenting and closing compared to manual interaction.
Compared to similar skills
roborevrespond side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| roborevrespond (this skill) | 1 | 2mo | Review | Beginner |
| resolve-conflicts | 81 | 8mo | Review | Intermediate |
| dependency-upgrade | 26 | 5mo | Review | Intermediate |
| git-commits | 21 | 4mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
resolve-conflicts
antinomyhq
Use this skill immediately when the user mentions merge conflicts that need to be resolved. Do not attempt to resolve conflicts directly - invoke this skill first. This skill specializes in providing a structured framework for merging imports, tests, lock files (regeneration), configuration files, and handling deleted-but-modified files with backup and analysis.
dependency-upgrade
wshobson
Manage major dependency version upgrades with compatibility analysis, staged rollout, and comprehensive testing. Use when upgrading framework versions, updating major dependencies, or managing breaking changes in libraries.
git-commits
bonny
Create well-structured git commits in logical chunks following best practices
git-advanced-workflows
wshobson
Master advanced Git workflows including rebasing, cherry-picking, bisect, worktrees, and reflog to maintain clean history and recover from any situation. Use when managing complex Git histories, collaborating on feature branches, or troubleshooting repository issues.
github-multi-repo
ruvnet
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration
workthrough
bear2u
Automatically document all development work and code modifications in a structured workthrough format. Use this skill after completing any development task, bug fix, feature implementation, or code refactoring to create comprehensive documentation.