← ClaudeAtlas

agent-collab-dual-reviewlisted

Run two independent read-only reviews of the current diff in parallel through agent-collab, then reconcile them (two provider turns plus local adjudication). Use for a "dual review", "two-model review", or "compare reviewers".
lauriparviainen/agent_collab · ★ 2 · Code & Development · score 68
Install: claude install-skill lauriparviainen/agent_collab
# Agent Collab Dual Review Get two independent model reviews over one frozen diff, validate their claims, and reconcile agreements and disagreements by reading the code. ## Preflight 1. Resolve the project to an absolute workdir. 2. Verify that the `agent_collab_*` MCP tools are connected and call `agent_collab_describe_options` for that workdir. If the tools or daemon are unavailable, stop and print this remediation: ```text agent-collab daemon start claude mcp add agent-collab -- agent-collab mcp For Codex, add this to ~/.codex/config.toml: [mcp_servers.agent_collab] command = "agent-collab" args = ["mcp"] startup_timeout_sec = 10 tool_timeout_sec = 60 enabled = true For Antigravity, merge this into ~/.gemini/config/mcp_config.json: { "mcpServers": { "agent-collab": { "command": "agent-collab", "args": ["mcp"] } } } For Grok, add this to ~/.grok/config.toml: [mcp_servers.agent-collab] command = "agent-collab" args = ["mcp"] After changing MCP configuration, restart the agent: a running session does not pick up newly registered MCP servers. ``` 3. Fetch `agent_collab_guidance` with `topic: "review-recipe"`. Follow that canonical recipe for scope, prompt construction, parallel attribution, polling, reconciliation, and triage. If the topic is unavailable, tell the user to upgrade agent-collab with `./agent_collab.sh install` and restart the daemon.