Files
Alex Clarke b6f6f456db
CI / All (macos-latest) (push) Has been cancelled
CI / All (ubuntu-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled
fix: Removed top_p parameter from some agents so they can work across model providers
2026-03-10 10:18:38 -06:00
..

Code Reviewer

A CodeRabbit-style code review orchestrator that coordinates per-file reviews and synthesizes findings into a unified report.

This agent acts as the manager for the review process, delegating actual file analysis to File Reviewer agents while handling coordination and final reporting.

Features

  • 🤖 Orchestration: Spawns parallel reviewers for each changed file.
  • 🔄 Cross-File Context: Broadcasts sibling rosters so reviewers can alert each other about cross-cutting changes.
  • 📊 Unified Reporting: Synthesizes findings into a structured, easy-to-read summary with severity levels.
  • Parallel Execution: Runs reviews concurrently for maximum speed.

Pro-Tip: Use an IDE MCP Server for Improved Performance

Many modern IDEs now include MCP servers that let LLMs perform operations within the IDE itself and use IDE tools. Using an IDE's MCP server dramatically improves the performance of coding agents. So if you have an IDE, try adding that MCP server to your config (see the MCP Server docs to see how to configure them), and modify the agent definition to look like this:

# ...

mcp_servers:
  - jetbrains # The name of your configured IDE MCP server

global_tools:
  - fs_read.sh
  - fs_grep.sh
  - fs_glob.sh
#  - execute_command.sh

# ...