Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By kenn-io
Automate code and design review workflows on Git branches and commits using roborev, including iterative review-fix loops, single-pass fixing of all open findings, and closing reviews with comments. Supports optional security- or design-focused review types.
npx claudepluginhub kenn-io/roborev --plugin roborevRequest a design review for all commits on the current branch and present the results
Request a design review for a commit and present the results
Use when the user asks to fix open reviews, invokes /roborev-fix, or provides job IDs; do not use when the user only pastes review findings with no request to discover or close reviews
Iterative review-fix loop for the current branch — reviews via daemon, fixes inline, re-reviews until passing or max iterations reached
Add a comment to a roborev code review and close it
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
使用多個專門代理進行自動化程式碼審查,配備基於置信度的評分系統以過濾誤報
Automated code review and fix loop with minimum 2 iterations
Multi-lens code review pipeline: deep review (Claude or Codex), automated fix loop, interactive walkthrough, manual promote, external-finding injection.
AI-powered code review analysis — Run three-level AI analysis and implement-review-fix loops directly in your coding agent. Works standalone, no server required.
Shared code review workflows, verification protocol, git commands, and feedback handling. Recommended as a base for all beagle plugins.
AST-based smart context code review engine for Claude Code
Documentation | Quick Start | Installation
Continuous code review for AI coding agents. roborev runs in the background, reviews every commit as agents write code, and surfaces issues in seconds -- before they compound. Pull code reviews into your agentic loop while context is fresh.
roborev init to install a post-commit hookroborev fix handle itcd your-repo
roborev init # Install post-commit hook
git commit -m "..." # Reviews happen automatically
roborev tui # View reviews in interactive UI
roborev fix feeds review findings to an agent that
applies fixes and commits. roborev refine iterates until reviews pass.roborev compact verifies findings against
current code, filters false positives, and consolidates related issues
into a single review.When reviews find issues, copy-and-paste the reviews into your
interactive agent sessions, or invoke the roborev:fix skills. You
can also address open reviews on the command line non-interactively
with roborev fix.
roborev fix shows the review findings to an agent, which applies
changes and commits. The new commit gets reviewed automatically,
closing the loop.
For fully automated iteration (advanced feature), use refine:
roborev refine # Fix, re-review, repeat until passing
refine runs in an isolated worktree and loops: fix findings, wait for
re-review, fix again, until all reviews pass or --max-iterations is hit.
Run targeted analysis across your codebase and optionally auto-fix:
roborev analyze duplication ./... # Find duplication
roborev analyze refactor --fix *.go # Suggest and apply refactors
roborev analyze complexity --wait main.go # Analyze and show results
roborev analyze test-fixtures *_test.go # Find test helper opportunities
roborev analyze security ./... # Find security risks in existing code
Available types: test-fixtures, duplication, refactor, complexity,
api-design, dead-code, architecture, security.
Analysis jobs appear in the review queue. Use roborev fix <id> to
apply findings later, or pass --fix to apply immediately.
Shell Script (macOS / Linux):
curl -fsSL https://roborev.io/install.sh | bash
Homebrew (macOS / Linux):
brew install roborev-dev/tap/roborev
Windows (PowerShell):
powershell -ExecutionPolicy ByPass -c "irm https://roborev.io/install.ps1 | iex"
With Go:
go install go.kenn.io/roborev/cmd/roborev@latest
This repo uses prek for local pre-commit checks.
The hook is a local system hook that runs make lint, so pre-commit can apply
golangci-lint --fix automatically instead of using the upstream
golangci-lint pre-commit repository. The hook is configured with
always_run = true, so it runs on every commit, not just commits that touch
Go files.