Responding to Reviews
Reviews are designed to be fed back into your AI coding agent sessions to address findings. Copy a review into Claude Code, Codex, or another agent to fix issues directly. Review responses let you add context that appears in the TUI and is included in future review prompts, helping the review agent understand your codebase conventions and reduce false positives.
Copying Reviews
Press y in the TUI to copy the full review content to your clipboard. Paste it into an AI coding agent session to address the findings. You can also share reviews with teammates, include them in GitHub issues, or reference them in commit messages.
Adding a Response
From the TUI
Press c from either the queue view or review detail view to open the respond modal:
- Navigate to the review you want to respond to
- Press
cto open the respond modal - Type your response (multi-line supported)
- Press
Enterto submit, orEscto cancel
From the CLI
roborev respond <review-id> "Your response text"Or interactively:
roborev respond <review-id># Opens your $EDITOR for multi-line inputHow Responses Are Used
When the AI reviews the same commit again (or related commits), your responses are included in the prompt:
- Context about known issues: “This null check is intentional, handled in caller”
- Clarifications: “This is test code, different standards apply”
- Acknowledgments: “Good catch, will fix in next commit”
Best Practices
- Be specific: Reference line numbers and specific findings
- Explain the “why”: Help the AI understand your reasoning
- Acknowledge valid findings: Confirm when the AI catches real issues
- Note false positives: Mark findings that don’t apply to your context
Example Responses
The singleton pattern here is intentional for the connection pool.Thread safety is handled by the underlying driver.This is generated code from protobuf - we don't modify it directly.Please ignore style issues in *.pb.go files.Good catch on the race condition! I'll add a mutex in the next commit.