
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-pluginsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 8 |
|---|---|
| Last updated | March 24, 2026 |
| Repository | devbrother2024/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
- Codex 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
- Checks which CLIs are available (codex, gemini)
- Spawns reviewer agents in parallel (or sequentially as fallback)
- Lead (Claude) also analyzes the same question
- 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