multi-ai-consultant
ClaudeSkillz: For when you need skills, but lazier
npx skills add https://github.com/jackspace/claudeskillz --skill multi-ai-consultantSKILL.md
Multi-AI Consultant
Consult external AIs for second opinions when Claude Code is stuck or making critical decisions.
What This Skill Does
This skill enables future Claude Code sessions to consult other AIs when:
- Stuck on a bug after one failed attempt
- Making architectural decisions
- Security concerns need validation
- Fresh perspective needed
Key innovation: Uses existing CLI tools (gemini, codex) instead of building MCP servers - much simpler and more maintainable.
When to Use This Skill
Automatic Triggers (No User Action Needed)
Claude Code should automatically suggest using this skill when:
-
After 1 failed debugging attempt
- Tried one approach to fix a bug
- Still not working or different error
- → Suggest: "Should I consult [Gemini|Fresh Claude] for a second opinion?"
-
Before architectural decisions
- Significant design choices (state management, routing, data flow)
- Framework selection
- Database schema design
- → Auto-consult (mention to user): "Consulting Gemini for architectural validation..."
-
Security changes
- Authentication logic
- Authorization rules
- Cryptography
- Input validation
- → Auto-consult: "Consulting Gemini to verify security approach..."
-
When uncertain
- Multiple valid approaches
- Trade-offs not clear
- Conflicting advice in documentation
- → Suggest: "Would you like me to consult another AI for additional perspective?"
Manual Invocation (User Commands)
User can explicitly request consultation with:
/consult-gemini [question]- Gemini 2.5 Pro with thinking, search, grounding/consult-codex [question]- OpenAI GPT-4 via Codex CLI (repo-aware)/consult-claude [question]- Fresh Claude subagent (free, fast)/consult-ai [question]- Router that asks which AI to use
The Three AIs
| AI | Tool | When to Use | Special Features | Cost |
|---|---|---|---|---|
| Gemini 2.5 Pro | gemini CLI | Web research, latest docs, thinking | Google Search, extended reasoning, grounding | ~$0.10-0.50 |
| OpenAI GPT-4 | codex CLI | Repo-aware analysis, code review | Auto-scans directory, OpenAI reasoning | ~$0.05-0.30 |
| Fresh Claude | Task tool | Quick second opinion, budget-friendly | Same capabilities, fresh perspective | Free |
How It Works
Architecture
Claude Code encounters bug/decision
↓
Suggests consultation (or user requests)
↓
User approves
↓
Execute appropriate slash command
↓
CLI command calls external AI
↓
Parse response
↓
Synthesize: Claude's analysis + External AI's analysis
↓
Present 5-part comparison
↓
Ask permission to implement
The 5-Part Synthesis Format
Every consultation must follow this format (prevents parroting):
- 🤖 My Analysis - Claude's original reasoning and attempts
- 💎/🔷/🔄 Other AI's Analysis - External AI's complete response
- 🔍 Key Differences - Agreement, divergence, what each AI caught/missed
- ⚡ Synthesis - Combined perspective, root cause, trade-offs
- ✅ Recommended Action - Specific next steps with file paths/line numbers
End with: "Should I proceed with this approach?"
Setup Instructions
1. Install CLIs
Gemini CLI (required):
npm install -g @google/generative-ai-cli
export GEMINI_API_KEY="your-key"
Get API key: https://aistudio.google.com/apikey
Codex CLI (optional):
npm install -g codex
export OPENAI_API_KEY="sk-..."
Get API key: https://platform.openai.com/api-keys
Fresh Claude: Built-in (uses Task tool, no setup)
2. Install Skill
cd ~/.claude/skills
git clone [this-repo] multi-ai-consultant
# OR symlink from development location
3. Copy Templates to Project
# Copy to project root
cp ~/.claude/skills/multi-ai-consultant/templates/GEMINI.md ./
cp ~/.claude/skills/multi-ai-consultant/templates/codex.md ./
cp ~/.claude/skills/multi-ai-consultant/templates/.geminiignore ./
# Copy log parser (optional)
cp ~/.claude/skills/multi-ai-consultant/templates/consultation-log-parser.sh ~/bin/
chmod +x ~/bin/consultation-log-parser.sh
4. Verify Installation
# Test Gemini CLI
gemini -p "test" && echo "✅ Gemini working"
# Test Codex CLI (if installed)
codex exec "test" --yolo && echo "✅ Codex working"
# Test skill discovery
# Ask Claude Code: "I'm stuck on this bug, can you help?"
# Claude should suggest consultation
Usage Examples
Example 1: Stuck on Bug
Scenario: JWT authentication failing after one attempt
Claude's process:
1. Try initial fix (token expiry check)
2. Still failing (now "invalid signature" error)
3. → Automatically suggest consultation
4. User approves
5. Execute /consult-gemini with:
- Problem: 401 error details
- What was tried: token expiry fix
- Current status: invalid signature e
...