Agent Code Review¶
AI-powered code review agent for GitHub Pull Requests.
Overview¶
Agent Code Review is a tool for posting AI-assisted code reviews to GitHub PRs. It supports three usage modes:
- Go SDK — Programmatic access for integration into other tools
- CLI — Command-line interface for scripts and manual use
- MCP Server — Model Context Protocol server for Claude Code integration
Reviews are posted as a GitHub App, appearing as PlexusOne Code Review[bot], clearly distinguishing AI-assisted reviews from human reviews.
Note
This is a community project by PlexusOne. It is not an official Anthropic product.
Features¶
- GitHub App Integration — Reviews posted as a bot, not your personal account
- Go SDK — Programmatic API via
pkg/review - CLI — Full-featured command-line interface
- MCP Server — Native integration with Claude Code
- Multi-Agent Spec — Agent definition follows the multi-agent-spec format
Quick Start¶
Project Structure¶
agent-code-review/
├── cmd/acr/ # CLI application
├── pkg/review/ # Go SDK
├── pkg/config/ # Configuration utilities
├── pkg/input/ # Input parsing utilities
├── internal/mcp/ # MCP server implementation
├── specs/agents/ # Agent definition (multi-agent-spec)
└── docs/ # Documentation (this site)
Related Projects¶
- multi-agent-spec — Portable multi-agent specification format
- gogithub — GitHub API wrapper SDK
- go-sdk — Official MCP Go SDK
License¶
MIT