A collection of custom skills for Claude Code.
# Clone the repo
git clone https://github.com/QuantuLabs/claude-skills.git
# Copy skills to Claude Code
cp claude-skills/skills/*.md ~/.claude/commands/
# Or symlink for auto-updates
ln -sf $(pwd)/claude-skills/skills/*.md ~/.claude/commands/Then in Claude Code, type /codex-review or /gem-review to use them.
| Command | Description | Requires |
|---|---|---|
/codex-review |
Iterative code/plan review with OpenAI Codex | Codex CLI |
/gem-review |
Iterative code/plan review with Gemini CLI | Gemini CLI |
These skills enable Claude to collaborate with external AI models in a consensus loop:
┌────────────────────────────────────────────────────────┐
│ Claude + External AI = Collaborative Review │
│ │
│ 1. Run external AI review (code or plan) │
│ 2. Claude analyzes each finding │
│ 3. Valid issues → Fix immediately │
│ 4. False positives → Document reasoning │
│ 5. Send analysis back for consensus │
│ 6. Iterate until both AIs agree (max 3 rounds) │
└────────────────────────────────────────────────────────┘
Supported modes:
- Code Review: Analyze git uncommitted changes for bugs, type issues, error handling
- Plan Review: Review architecture docs for gaps, risks, inconsistencies
- Codebase Analysis: Deep architectural review (gem-review only)
Requires a ChatGPT Pro/Plus subscription.
npm install -g @openai/codexnpm install -g @google/gemini-cliConfigure your API key:
mkdir -p ~/.gemini
cp config/gemini-cli/.env.example ~/.gemini/.env
# Edit ~/.gemini/.env with your API keyGet your API key: https://aistudio.google.com/app/apikey
- Hivemind MCP — Multi-AI consensus orchestration server
MIT