Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
DevBrother avatar

Cross Verify

  • 8 repo stars
  • Updated March 24, 2026
  • devbrother2024/claude-plugins

Cross-verify an answer by comparing responses from Codex, Gemini, and Claude to catch errors and disagreements.

About

Runs the same question across Codex, Gemini, and Claude and compares their answers to surface disagreement and likely errors. A developer uses it as a second-opinion check before trusting an AI-generated answer or code change.

  • AI cross-verification
  • Compares Codex, Gemini, Claude
  • Catches model disagreement

Cross Verify by the numbers

  • Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add devbrother2024/claude-plugins
/plugin install cross-verify@devbrother-plugins

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
repo stars8
Last updatedMarch 24, 2026
Repositorydevbrother2024/claude-plugins

What it does

Cross-verify an answer by comparing responses from Codex, Gemini, and Claude to catch errors and disagreements.

README.md

Cross-Verify Skill

AI cross-verification skill for Claude Code. Compares answers from Codex (GPT), Gemini, and Claude to provide synthesized analysis.

Requirements

  • Claude Code (latest)
  • At least one of:
    • Codex CLI: npm install -g @openai/codex
    • Gemini CLI: npm install -g @google/gemini-cli

Installation

Copy the cross-verify/ folder to your Claude Code skills directory:

cp -r cross-verify/ ~/.claude/skills/cross-verify/

Agent Teams (Optional, Recommended)

For parallel execution of CLI agents, enable Agent Teams in your ~/.claude/settings.json:

{
  "env": {
    "CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
  }
}

Without Agent Teams, agents run sequentially (slower but functional).

Usage

/cross-verify Is this authentication implementation secure?
/cross-verify Review the architecture of this module
/cross-verify What's the best approach for caching in this service?

Or use natural language:

  • "cross check this code"
  • "ask other AIs about this approach"
  • "multi AI comparison on this bug"

How It Works

  1. Checks which CLIs are available (codex, gemini)
  2. Spawns reviewer agents in parallel (or sequentially as fallback)
  3. Lead (Claude) also analyzes the same question
  4. Synthesizes all results into: Consensus / Unique Insights / Conflicts / Final Conclusion

File Structure

cross-verify/
├── SKILL.md              # Main orchestration logic
├── agents/
│   ├── codex-reviewer.md # Codex CLI agent definition
│   └── gemini-reviewer.md# Gemini CLI agent definition
└── README.md             # This file

Related skills

Code Review & Qualityagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.