Key Takeaways
- Gito v4.1.0 now runs on Claude Code and Gemini CLI.
- Use async LLM requests and selective model routing to scale code review fleets efficiently.
What Changed — Claude Code as Your Code Reviewer
Gito v4.1.0, released June 2026, adds support for using Claude Code or Gemini CLI as AI code reviewers instead of traditional HTTP LLM APIs. This is a game-changer for teams running parallel code review fleets.
Key updates:
- Async LLM requests for minor performance improvements
- Claude Code / Gemini CLI integration as drop-in reviewer agents
- Configuration via
~/.gito/.envwith examples at ai-microcore v6.2.0
What It Means For You — Scale Your Review Fleet
If you're running Gito for automated code reviews, this update lets you:
- Use Claude Code's full context window (1M tokens with Opus 4.6) for deep reviews
- Route simpler reviews to cheaper models like Gemini CLI or smaller Claude models
- Run 10–15 concurrent agents without hitting API rate limits as fast
But scaling brings challenges. A Hacker News user running a multi-agent fleet shared hard-won lessons:
"CLAUDE.md is a terrible abstraction. These files load unconditionally, they often contain descriptions irrelevant to the task at hand, and they stack from your working directory upward. The result is wasted tokens."
The fix: Use a hierarchical knowledge base instead of relying on CLAUDE.md for every session. Attach plugins and instructions per task, not globally.
Try It Now — Configure Gito for Claude Code
- Install Gito v4.1.0:
pip install gito==4.1.0

- Configure
~/.gito/.envto use Claude Code:
# Use Claude Code as the reviewer agent
LLM_PROVIDER=claude_code
CLAUDE_CODE_PATH=/usr/local/bin/claude
# Or use Gemini CLI
# LLM_PROVIDER=gemini_cli
# GEMINI_CLI_PATH=/usr/local/bin/gemini
- Run parallel reviews:
# Review all PRs in a repo
for pr in $(gh pr list --json number -q '.[].number'); do
gito review --pr $pr &
done
wait
Scaling Tips from the Fleet Operator
- Route tasks by complexity: Decompose work into harder and simpler subtasks. Route simple ones to weaker, cheaper models.
- Avoid global plugins: Attach plugins per task, not to every session.
- System tools cost ~15K tokens (7% of session) — you can't remove them, so plan accordingly.
- For background sessions (
claude -p), implement your own MCP-based tool forAskUserQuestion— it's not available by default.
The Bottom Line
Gito v4.1.0 turns Claude Code into a scalable code review engine. Use async requests, selective model routing, and per-task context to maximize throughput without burning through your token budget.
Source: github.com









