MultiModel Code Review Workflow Packaged as Reusable Skill

A developer has packaged a multi-model code review workflow as a reusable skill/runbook, available on GitHub. The approach uses one orchestrator agent coordinating several independent reviewer agents/models, then consolidates findings into a final review. The key insight: different models catch different bugs, and when multiple models independently flag the same issue, confidence goes up. The orchestrator deduplicates, filters weak findings, checks obvious false positives, and publishes one clean result.
Two Modes
The workflow supports two modes:
- PR review: prepares local
base/,head/,PR_DIFF.patch, andPR_METADATA.json, spawns multiple analysis-only reviewers, then the orchestrator posts one summary plus inline PR comments. Designed to avoid GitHub pending-review collisions. - Non-PR scope review: review a folder/module/deploy/scripts area; reviewers inspect a shared local snapshot; the orchestrator publishes a consolidated
REVIEW.mdinto the repo.
Tested Model Setup
The tested setup uses GPT-5.5 as orchestrator, with GPT-5.5, DeepSeek V4 Pro, Kimi K2.6, Qwen 3.6 Plus, and GLM-5.1 as reviewers. However, the workflow is agent/model agnostic. It has been tested with OpenClaw and reportedly gives great results.
Key Lessons
- Shared snapshot: don't let every subagent clone/fetch the repo independently. The orchestrator should prepare a shared snapshot and pass local paths to reviewers. Faster, cheaper, and fewer weird false positives.
- All non-GPT models were run through Fireworks. For large tasks, the author suggests swapping Kimi and Qwen for something else, as those two sometimes choke.
The repo is at github.com/rmichelena/multireview. The author seeks feedback, especially from those running multi-agent code review workflows.
📖 Read the full source: r/openclaw
👀 See Also

ClawCut: A Python Proxy That Makes Small Local LLMs Usable with OpenClaw
ClawCut is a Python Flask proxy that solves common problems when connecting 7B/14B local models to OpenClaw, including context poisoning, infinite loops, and failed cron job outputs. It implements dynamic amnesia during tool calls and auto-delivery for scheduled tasks.

Claude Code Skill Delegates Coding to Mistral/DeepSeek: 57M Tokens Saved, 90-100% Cost Reduction
A Claude Code skill called vibe-skill delegates low-level coding to cheap models like Mistral or DeepSeek while keeping Claude's planning. After 254 runs over 10 days, it saved 57M tokens and achieved 90-100% cost savings with 98% success rate.

Constrails: Early-Alpha External Governance Layer for AI Agents
Constrails is an external runtime governance layer for AI agents that places a control layer between agents and their tools, implementing capability checks, risk scoring, policy evaluation, and audit logging. The early-alpha project aims to address safety concerns by moving controls outside the agent itself.

Replacing complex retrieval pipelines with simple git shell commands for LLM agents
A developer replaced their entire AI agent retrieval pipeline (sentence-transformers, rank-bm25, two-pass LLM pipeline) with a single tool that lets the agent execute read-only shell commands against a git repository, reducing Docker image size by ~3GB and eliminating timeout issues.