Agent Skills: roborev-address

Use when a user asks to address or close a specific roborev code review job after fixing or responding to findings.

UncategorizedID: dbmcco/claude-agent-toolkit/roborev-address

Install this agent skill to your local

pnpm dlx add-skill https://github.com/dbmcco/claude-agent-toolkit/tree/HEAD/skills/roborev-address

Skill Files

Browse the full folder contents for roborev-address.

Download Skill

Loading file tree…

skills/roborev-address/SKILL.md

Skill Metadata

Name
roborev-address
Description
Use when a user asks to address or close a specific roborev code review job after fixing or responding to findings.

roborev-address

Fetch a review, handle its findings, comment, and close it.

Roborev's normal trigger is the repository post-commit hook installed by roborev install-hook. Do not manually start reviews unless the user asks for an ad hoc review; use this skill after roborev has produced a review job for a commit or branch.

Invocation

  • Claude slash command: /roborev:address <job_id>
  • Codex skill name: $roborev-address <job_id>

Instructions

  1. Confirm the daemon and queue are reachable:
    roborev status
    
  2. Fetch the review:
    roborev show --job <job_id>
    
  3. If the verdict is Pass, report that no action is needed.
  4. If the verdict is Fail, fix findings by severity, reading the affected files first.
  5. Run the relevant project tests.
  6. Record what changed:
    roborev comment --job <job_id> "<summary of changes>"
    roborev close <job_id>
    
  7. Ask whether to commit the changes unless the user already requested commit/push. A new commit will automatically enqueue another roborev review through the post-commit hook.