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 |
For detailed AI comparison: Load references/ai-strengths.md when choosing which AI to consult for specific use cases.
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
For complete installation guide: Load references/setup-guide.md when installing CLIs, configuring API keys, or setting up templates.
Quick setup:
- Install CLIs:
bun add -g @google/generative-ai-cli (Gemini), bun add -g codex (Codex, optional)
- Set API keys:
export GEMINI_API_KEY="...", export OPENAI_API_KEY="..."
- Install skill: Symlink to
~/.claude/skills/multi-ai-consultant
- Copy templates:
GEMINI.md, codex.md, .geminiignore to project root
- Verify:
gemini -p "test", codex exec - --yolo
Get API keys:
Usage
For detailed examples: Load references/usage-examples.md when learning consultation workflows or seeing real-world scenarios.
Quick examples:
- Bug: After 1 failed attempt →
/consult-gemini for web-researched solution
- Architecture: Design decision →
/consult-gemini for latest best practices
- Code review: Refactoring validation →
/consult-codex for repo-aware consistency check
- Quick opinion: Sanity check →
/consult-claude for free fresh perspective
5 detailed examples available:
- JWT authentication bug (saved ~30 min, found platform-specific issue)
- State management choice (informed decision with 2025 patterns)
- Refactoring review (found 3 consistency issues)
- Security validation (found 2 critical issues via OWASP 2025)
- Multi-AI workflow (high-stakes database choice)
Slash Commands
For complete command reference: Load references/commands-reference.md when needing detailed syntax, options, or cost tracking information.
Quick command overview:
/consult-gemini [question]
- Use: Web research, latest docs, extended thinking
- Features: Google Search, grounding, thinking mode
- Cost: ~$0.10-0.50
- Example:
/consult-gemini Is this JWT secure by 2025 standards?
/consult-codex [question]
- Use: Repo-aware analysis, code review
- Features: Auto-scans directory, consistency checks
- Cost: ~$0.05-0.30
- Example:
/consult-codex Review for performance bottlenecks
/consult-claude [question]
- Use: Quick second opinion, budget-friendly
- Features: Free, fast, fresh perspective
- Cost: Free
- Example:
/consult-claude Am I missing something obvious?
/consult-ai [question]
- Use: Router (recommends which AI to use)
- Features: Analyzes question, suggests best AI
- Cost: Varies by chosen AI
- Example:
/consult-ai How should we structure this architecture?
Templates
Templates customize AI behavior for consultations (auto-loaded from project root):
- GEMINI.md - System instructions for Gemini (enforces 5-part format, web search)
- codex.md - System instructions for Codex (enforces repo-aware analysis)
- .geminiignore - Privacy exclusions beyond
.gitignore
- consultation-log-parser.sh - View consultation history (optional)
Installation: Copy from ~/.claude/skills/multi-ai-consultant/templates/ to project root
Privacy & Security
Automatic protection:
- Both CLIs respect
.gitignore automatically
- Create
.geminiignore for extra exclusions (.env*, *secret*, *credentials*)
- Pre-consultation check warns if sensitive patterns detected
Privacy best practices:
- Always configure
.gitignore properly
- Create
.geminiignore for extra safety
- Use smart context selection (specific files, not entire repo)
- Verify what will be sent:
git status --ignored
For detailed privacy configuration: Load references/setup-guide.md when setting up .geminiignore or privacy exclusions.
Cost Tracking
Every consultation logged to ~/.claude/ai-consultations/consultations.log
Log format: timestamp,ai,model,input_tokens,output_tokens,cost,project_path
View logs: consultation-log-parser.sh --summary
Example output:
Total consultations: 47
Gemini: 23 ($4.25), Codex: 12 ($1.85), Fresh Claude: 12 ($0.00)
Total cost: $6.10
For detailed cost tracking: Load references/commands-reference.md when viewing logs, calculating costs, or managing budgets.
Common Issues
For complete troubleshooting: Load references/troubleshooting.md when encountering errors or setup issues.
Top 5 issues:
- CLI not installed:
gemini: command not found → Fix: bun add -g @google/generative-ai-cli
- API key invalid: Authentication failed → Fix:
export GEMINI_API_KEY="..."
- Context too large: Token limit exceeded → Fix: Use specific files, not entire repo
- Privacy leak:
.env file sent → Fix: Add to .gitignore and .geminiignore
- Skill not discovered: Not working → Fix: Check
~/.claude/skills/multi-ai-consultant
Token Efficiency
Without This Skill
Typical scenario (stuck on bug):
- Try approach 1 (~4k tokens)
- Research CLI syntax (~3k tokens)
- Try approach 2 (~4k tokens)
- Research documentation (~3k tokens)
- Try approach 3 (~4k tokens)
Total: ~20k tokens, 30-45 minutes
With This Skill
Same scenario:
- Try approach 1 (~4k tokens)
- Execute
/consult-gemini (~1k tokens)
- Gemini finds issue (<5k tokens, billed separately)
- Implement fix (~3k tokens)
Total: ~8k tokens, 5-10 minutes
Savings: ~60% tokens, ~75% time
Success Metrics
Time Efficiency
- Without skill: 30-45 minutes (trial and error)
- With skill: 5-10 minutes (consultation + fix)
- Savings: ~75%
Token Efficiency
- Without skill: ~20k tokens (multiple attempts)
- With skill: ~8k tokens (one consultation)
- Savings: ~60%
Error Prevention
- Manual CLI use: 3-5 common errors (flags, parsing, privacy)
- With skill: 0 errors (all handled by commands)
- Prevention: 100%
Quality
- Manual: Risk of not synthesizing (just copying external AI)
- With skill: Forced synthesis via
GEMINI.md/codex.md
- Improvement: Guaranteed value-add
Why CLI Approach (Not MCP)?
| Aspect |
MCP Server |
CLI Approach |
| Setup time |
4-6 hours |
60-75 minutes |
| Complexity |
High (MCP protocol) |
Low (bash + CLIs) |
| Maintenance |
Update MCP SDK |
Update CLI (rare) |
| Flexibility |
Locked to AIs |
Any AI with CLI |
| Debugging |
MCP protocol |
Standard bash |
| Dependencies |
MCP SDK, npm |
Just CLIs |
Winner: CLI approach - 80% less effort, same functionality
When to Load References
Load reference files when working on specific aspects of AI consultation:
ai-strengths.md
Load when:
- Selection-based: Choosing which AI to consult (Gemini vs Codex vs Fresh Claude)
- Comparison-based: Understanding capabilities, costs, and trade-offs between AIs
- Strategy-based: Planning combination strategies (free → paid, paid first, budget-conscious)
- Capability-based: Understanding special features (Google Search, extended thinking, grounding, repo-aware, fresh perspective)
- Scenario-based: Multiple AI consultation workflows, validation workflows
setup-guide.md
Load when:
- Installation-based: Setting up Gemini CLI, Codex CLI, or installing the skill
- Configuration-based: Configuring API keys, environment variables, or system paths
- Privacy-based: Setting up .geminiignore, privacy exclusions, or security configurations
- Template-based: Installing GEMINI.md, codex.md, .geminiignore, or consultation-log-parser.sh
- Verification-based: Testing CLI installation, API keys, or skill discovery
commands-reference.md
Load when:
- Command-based: Using /consult-gemini, /consult-codex, /consult-claude, or /consult-ai
- Syntax-based: Understanding command flags, options, or context selection
- Cost-based: Understanding cost tracking, log format, or viewing consultation history
- Logging-based: Using consultation-log-parser.sh or analyzing consultation patterns
usage-examples.md
Load when:
- Scenario-based: Learning how to use skill for bugs, architecture decisions, or code review
- Workflow-based: Understanding consultation workflow, synthesis process, or multi-AI approach
- Example-based: Seeing real-world examples of consultations and their outcomes (5 detailed examples available)
troubleshooting.md
Load when:
- Error-based: Encountering specific errors (command not found, API key invalid, parsing failures)
- Diagnosis-based: Troubleshooting CLI issues, API connectivity, or skill discovery
- Fix-based: Resolving known issues with step-by-step solutions (8 common issues documented)
- Debugging-based: Testing CLIs manually, checking configurations, or verifying installations
Contributing
Found an issue?
- Document it in troubleshooting.md
- Include fix/workaround
- Update slash commands to prevent
Adding new AI?
- Create new slash command:
commands/consult-newai.md
- Add to router: Update
commands/consult-ai.md
- Create template:
templates/newai.md (if CLI supports system instructions)
- Update documentation
Improving synthesis?
- Edit templates:
templates/GEMINI.md, templates/codex.md
- Test with real consultations
- Measure before/after quality
References
External Resources
Internal Files
- Planning docs:
planning/multi-ai-consultant-*.md
- Slash commands:
commands/*.md
- Templates:
templates/*
- Scripts:
scripts/*
- References:
references/*.md (5 reference files)
License
MIT License - See LICENSE file
Last Updated: 2025-11-07
Status: Production Ready
Maintainer: Claude Skills Maintainers | maintainers@example.com
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: multi-ai-consultant3description: Consult external AIs (Gemini 2.5 Pro, OpenAI Codex, Claude) for second opinions. Use for debugging failures, architectural decisions, security validation, or need fresh perspective with synthesis. Use when this capability is needed.4---56# Multi-AI Consultant78Consult external AIs for second opinions when Claude Code is stuck or making critical decisions.910---1112## What This Skill Does1314This skill enables **future Claude Code sessions** to consult other AIs when:15- Stuck on a bug after one failed attempt16- Making architectural decisions17- Security concerns need validation18- Fresh perspective needed1920**Key innovation**: Uses existing CLI tools (`gemini`, `codex`) instead of building MCP servers - much simpler and more maintainable.2122---2324## When to Use This Skill2526### Automatic Triggers (No User Action Needed)2728Claude Code should **automatically suggest** using this skill when:29301. **After 1 failed debugging attempt**31 - Tried one approach to fix a bug32 - Still not working or different error33 - → Suggest: "Should I consult [Gemini|Fresh Claude] for a second opinion?"34352. **Before architectural decisions**36 - Significant design choices (state management, routing, data flow)37 - Framework selection38 - Database schema design39 - → Auto-consult (mention to user): "Consulting Gemini for architectural validation..."40413. **Security changes**42 - Authentication logic43 - Authorization rules44 - Cryptography45 - Input validation46 - → Auto-consult: "Consulting Gemini to verify security approach..."47484. **When uncertain**49 - Multiple valid approaches50 - Trade-offs not clear51 - Conflicting advice in documentation52 - → Suggest: "Would you like me to consult another AI for additional perspective?"5354### Manual Invocation (User Commands)5556User can explicitly request consultation with:57- `/consult-gemini [question]` - Gemini 2.5 Pro with thinking, search, grounding58- `/consult-codex [question]` - OpenAI GPT-4 via Codex CLI (repo-aware)59- `/consult-claude [question]` - Fresh Claude subagent (free, fast)60- `/consult-ai [question]` - Router that asks which AI to use6162---6364## The Three AIs6566| AI | Tool | When to Use | Special Features | Cost |67|----|------|-------------|------------------|------|68| **Gemini 2.5 Pro** | `gemini` CLI | Web research, latest docs, thinking | Google Search, extended reasoning, grounding | ~$0.10-0.50 |69| **OpenAI GPT-4** | `codex` CLI | Repo-aware analysis, code review | Auto-scans directory, OpenAI reasoning | ~$0.05-0.30 |70| **Fresh Claude** | Task tool | Quick second opinion, budget-friendly | Same capabilities, fresh perspective | Free |7172**For detailed AI comparison**: Load `references/ai-strengths.md` when choosing which AI to consult for specific use cases.7374---7576## How It Works7778### Architecture7980```81Claude Code encounters bug/decision82 ↓83Suggests consultation (or user requests)84 ↓85User approves86 ↓87Execute appropriate slash command88 ↓89CLI command calls external AI90 ↓91Parse response92 ↓93Synthesize: Claude's analysis + External AI's analysis94 ↓95Present 5-part comparison96 ↓97Ask permission to implement98```99100### The 5-Part Synthesis Format101102Every consultation must follow this format (prevents parroting):1031041. **🤖 My Analysis** - Claude's original reasoning and attempts1052. **💎/🔷/🔄 Other AI's Analysis** - External AI's complete response1063. **🔍 Key Differences** - Agreement, divergence, what each AI caught/missed1074. **⚡ Synthesis** - Combined perspective, root cause, trade-offs1085. **✅ Recommended Action** - Specific next steps with file paths/line numbers109110**End with**: "Should I proceed with this approach?"111112---113114## Setup115116**For complete installation guide**: Load `references/setup-guide.md` when installing CLIs, configuring API keys, or setting up templates.117118**Quick setup**:1191. **Install CLIs**: `bun add -g @google/generative-ai-cli` (Gemini), `bun add -g codex` (Codex, optional)1202. **Set API keys**: `export GEMINI_API_KEY="..."`, `export OPENAI_API_KEY="..."`1213. **Install skill**: Symlink to `~/.claude/skills/multi-ai-consultant`1224. **Copy templates**: `GEMINI.md`, `codex.md`, `.geminiignore` to project root1235. **Verify**: `gemini -p "test"`, `codex exec - --yolo`124125Get API keys:126- Gemini: https://aistudio.google.com/apikey127- OpenAI: https://platform.openai.com/api-keys128129---130131## Usage132133**For detailed examples**: Load `references/usage-examples.md` when learning consultation workflows or seeing real-world scenarios.134135**Quick examples**:136- **Bug**: After 1 failed attempt → `/consult-gemini` for web-researched solution137- **Architecture**: Design decision → `/consult-gemini` for latest best practices138- **Code review**: Refactoring validation → `/consult-codex` for repo-aware consistency check139- **Quick opinion**: Sanity check → `/consult-claude` for free fresh perspective140141**5 detailed examples available**:1421. JWT authentication bug (saved ~30 min, found platform-specific issue)1432. State management choice (informed decision with 2025 patterns)1443. Refactoring review (found 3 consistency issues)1454. Security validation (found 2 critical issues via OWASP 2025)1465. Multi-AI workflow (high-stakes database choice)147148---149150## Slash Commands151152**For complete command reference**: Load `references/commands-reference.md` when needing detailed syntax, options, or cost tracking information.153154**Quick command overview**:155156### /consult-gemini [question]157- **Use**: Web research, latest docs, extended thinking158- **Features**: Google Search, grounding, thinking mode159- **Cost**: ~$0.10-0.50160- **Example**: `/consult-gemini Is this JWT secure by 2025 standards?`161162### /consult-codex [question]163- **Use**: Repo-aware analysis, code review164- **Features**: Auto-scans directory, consistency checks165- **Cost**: ~$0.05-0.30166- **Example**: `/consult-codex Review for performance bottlenecks`167168### /consult-claude [question]169- **Use**: Quick second opinion, budget-friendly170- **Features**: Free, fast, fresh perspective171- **Cost**: Free172- **Example**: `/consult-claude Am I missing something obvious?`173174### /consult-ai [question]175- **Use**: Router (recommends which AI to use)176- **Features**: Analyzes question, suggests best AI177- **Cost**: Varies by chosen AI178- **Example**: `/consult-ai How should we structure this architecture?`179180---181182## Templates183184Templates customize AI behavior for consultations (auto-loaded from project root):1851861. **GEMINI.md** - System instructions for Gemini (enforces 5-part format, web search)1872. **codex.md** - System instructions for Codex (enforces repo-aware analysis)1883. **.geminiignore** - Privacy exclusions beyond `.gitignore`1894. **consultation-log-parser.sh** - View consultation history (optional)190191**Installation**: Copy from `~/.claude/skills/multi-ai-consultant/templates/` to project root192193---194195## Privacy & Security196197**Automatic protection**:198- Both CLIs respect `.gitignore` automatically199- Create `.geminiignore` for extra exclusions (`.env*`, `*secret*`, `*credentials*`)200- Pre-consultation check warns if sensitive patterns detected201202**Privacy best practices**:203- Always configure `.gitignore` properly204- Create `.geminiignore` for extra safety205- Use smart context selection (specific files, not entire repo)206- Verify what will be sent: `git status --ignored`207208**For detailed privacy configuration**: Load `references/setup-guide.md` when setting up `.geminiignore` or privacy exclusions.209210---211212## Cost Tracking213214Every consultation logged to `~/.claude/ai-consultations/consultations.log`215216**Log format**: `timestamp,ai,model,input_tokens,output_tokens,cost,project_path`217218**View logs**: `consultation-log-parser.sh --summary`219220**Example output**:221```222Total consultations: 47223Gemini: 23 ($4.25), Codex: 12 ($1.85), Fresh Claude: 12 ($0.00)224Total cost: $6.10225```226227**For detailed cost tracking**: Load `references/commands-reference.md` when viewing logs, calculating costs, or managing budgets.228229---230231## Common Issues232233**For complete troubleshooting**: Load `references/troubleshooting.md` when encountering errors or setup issues.234235**Top 5 issues**:2362371. **CLI not installed**: `gemini: command not found` → Fix: `bun add -g @google/generative-ai-cli`2382. **API key invalid**: Authentication failed → Fix: `export GEMINI_API_KEY="..."`2393. **Context too large**: Token limit exceeded → Fix: Use specific files, not entire repo2404. **Privacy leak**: `.env` file sent → Fix: Add to `.gitignore` and `.geminiignore`2415. **Skill not discovered**: Not working → Fix: Check `~/.claude/skills/multi-ai-consultant`242243---244245## Token Efficiency246247### Without This Skill248249**Typical scenario** (stuck on bug):2501. Try approach 1 (~4k tokens)2512. Research CLI syntax (~3k tokens)2523. Try approach 2 (~4k tokens)2534. Research documentation (~3k tokens)2545. Try approach 3 (~4k tokens)255256**Total**: ~20k tokens, 30-45 minutes257258### With This Skill259260**Same scenario**:2611. Try approach 1 (~4k tokens)2622. Execute `/consult-gemini` (~1k tokens)2633. Gemini finds issue (<5k tokens, billed separately)2644. Implement fix (~3k tokens)265266**Total**: ~8k tokens, 5-10 minutes267268**Savings**: ~60% tokens, ~75% time269270---271272## Success Metrics273274### Time Efficiency275- **Without skill**: 30-45 minutes (trial and error)276- **With skill**: 5-10 minutes (consultation + fix)277- **Savings**: ~75%278279### Token Efficiency280- **Without skill**: ~20k tokens (multiple attempts)281- **With skill**: ~8k tokens (one consultation)282- **Savings**: ~60%283284### Error Prevention285- **Manual CLI use**: 3-5 common errors (flags, parsing, privacy)286- **With skill**: 0 errors (all handled by commands)287- **Prevention**: 100%288289### Quality290- **Manual**: Risk of not synthesizing (just copying external AI)291- **With skill**: Forced synthesis via `GEMINI.md`/`codex.md`292- **Improvement**: Guaranteed value-add293294---295296## Why CLI Approach (Not MCP)?297298| Aspect | MCP Server | CLI Approach |299|--------|------------|--------------|300| Setup time | 4-6 hours | 60-75 minutes |301| Complexity | High (MCP protocol) | Low (bash + CLIs) |302| Maintenance | Update MCP SDK | Update CLI (rare) |303| Flexibility | Locked to AIs | Any AI with CLI |304| Debugging | MCP protocol | Standard bash |305| Dependencies | MCP SDK, npm | Just CLIs |306307**Winner**: CLI approach - 80% less effort, same functionality308309---310311## When to Load References312313Load reference files when working on specific aspects of AI consultation:314315### ai-strengths.md316Load when:317- **Selection-based**: Choosing which AI to consult (Gemini vs Codex vs Fresh Claude)318- **Comparison-based**: Understanding capabilities, costs, and trade-offs between AIs319- **Strategy-based**: Planning combination strategies (free → paid, paid first, budget-conscious)320- **Capability-based**: Understanding special features (Google Search, extended thinking, grounding, repo-aware, fresh perspective)321- **Scenario-based**: Multiple AI consultation workflows, validation workflows322323### setup-guide.md324Load when:325- **Installation-based**: Setting up Gemini CLI, Codex CLI, or installing the skill326- **Configuration-based**: Configuring API keys, environment variables, or system paths327- **Privacy-based**: Setting up .geminiignore, privacy exclusions, or security configurations328- **Template-based**: Installing GEMINI.md, codex.md, .geminiignore, or consultation-log-parser.sh329- **Verification-based**: Testing CLI installation, API keys, or skill discovery330331### commands-reference.md332Load when:333- **Command-based**: Using /consult-gemini, /consult-codex, /consult-claude, or /consult-ai334- **Syntax-based**: Understanding command flags, options, or context selection335- **Cost-based**: Understanding cost tracking, log format, or viewing consultation history336- **Logging-based**: Using consultation-log-parser.sh or analyzing consultation patterns337338### usage-examples.md339Load when:340- **Scenario-based**: Learning how to use skill for bugs, architecture decisions, or code review341- **Workflow-based**: Understanding consultation workflow, synthesis process, or multi-AI approach342- **Example-based**: Seeing real-world examples of consultations and their outcomes (5 detailed examples available)343344### troubleshooting.md345Load when:346- **Error-based**: Encountering specific errors (command not found, API key invalid, parsing failures)347- **Diagnosis-based**: Troubleshooting CLI issues, API connectivity, or skill discovery348- **Fix-based**: Resolving known issues with step-by-step solutions (8 common issues documented)349- **Debugging-based**: Testing CLIs manually, checking configurations, or verifying installations350351---352353## Contributing354355**Found an issue?**356- Document it in troubleshooting.md357- Include fix/workaround358- Update slash commands to prevent359360**Adding new AI?**361- Create new slash command: `commands/consult-newai.md`362- Add to router: Update `commands/consult-ai.md`363- Create template: `templates/newai.md` (if CLI supports system instructions)364- Update documentation365366**Improving synthesis?**367- Edit templates: `templates/GEMINI.md`, `templates/codex.md`368- Test with real consultations369- Measure before/after quality370371---372373## References374375### External Resources376377- **Gemini CLI**: https://ai.google.dev/gemini-api/docs/cli378- **OpenAI Codex**: https://www.npmjs.com/package/codex379- **OpenAI API**: https://platform.openai.com/docs380- **Gemini API Pricing**: https://ai.google.dev/pricing381- **OpenAI Pricing**: https://openai.com/pricing382383### Internal Files384385- **Planning docs**: `planning/multi-ai-consultant-*.md`386- **Slash commands**: `commands/*.md`387- **Templates**: `templates/*`388- **Scripts**: `scripts/*`389- **References**: `references/*.md` (5 reference files)390391---392393## License394395MIT License - See LICENSE file396397---398399**Last Updated**: 2025-11-07400**Status**: Production Ready401**Maintainer**: Claude Skills Maintainers | maintainers@example.com402403---404> Converted and distributed by [TomeVault](https://tomevault.io/claim/secondsky) — claim your Tome and manage your conversions.405<!-- tomevault:4.0:skill_md:2026-04-11 -->