Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计异常

multi-ai-consultant多 AI 顾问

Agent Skill

multi-ai-consultant 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,806

周安装

157

GitHub Stars

128

下载量

1,243
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:multi-ai-consultant(多 AI 顾问)
来源仓库:https://github.com/secondsky/claude-skills
仓库路径:skills/multi-ai-consultant
安装命令:
npx skills add https://github.com/secondsky/claude-skills --skill multi-ai-consultant
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/secondsky/claude-skills --skill multi-ai-consultant

简介

用于查找和筛选相关信息。multi-ai-consultant 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 使用时需提供明确搜索目标以提高准确性。
  • 安装前应确认是否触发联网或文件读写操作。
  • 建议结合原始 README 核验功能边界和调用方式。

SKILL.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:

  1. 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?"

  1. 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..."

  1. Security changes

- Authentication logic - Authorization rules - Cryptography - Input validation - → Auto-consult: "Consulting Gemini to verify security approach..."

  1. 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

AIToolWhen to UseSpecial FeaturesCost
Gemini 2.5 Progemini CLIWeb research, latest docs, thinkingGoogle Search, extended reasoning, grounding~$0.10-0.50
OpenAI GPT-4codex CLIRepo-aware analysis, code reviewAuto-scans directory, OpenAI reasoning~$0.05-0.30
Fresh ClaudeTask toolQuick second opinion, budget-friendlySame capabilities, fresh perspectiveFree

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):

  1. 🤖 My Analysis - Claude's original reasoning and attempts
  2. 💎/🔷/🔄 Other AI's Analysis - External AI's complete response
  3. 🔍 Key Differences - Agreement, divergence, what each AI caught/missed
  4. ⚡ Synthesis - Combined perspective, root cause, trade-offs
  5. ✅ 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:

  1. Install CLIs: bun add -g @google/generative-ai-cli (Gemini), bun add -g codex (Codex, optional)
  2. Set API keys: export GEMINI_API_KEY="...", export OPENAI_API_KEY="..."
  3. Install skill: Symlink to ~/.claude/skills/multi-ai-consultant
  4. Copy templates: GEMINI.md, codex.md, .geminiignore to project root
  5. 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:

  1. JWT authentication bug (saved ~30 min, found platform-specific issue)
  2. State management choice (informed decision with 2025 patterns)
  3. Refactoring review (found 3 consistency issues)
  4. Security validation (found 2 critical issues via OWASP 2025)
  5. 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):

  1. GEMINI.md - System instructions for Gemini (enforces 5-part format, web search)
  2. codex.md - System instructions for Codex (enforces repo-aware analysis)
  3. .geminiignore - Privacy exclusions beyond .gitignore
  4. 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:

  1. CLI not installed: gemini: command not found → Fix: bun add -g @google/generative-ai-cli
  2. API key invalid: Authentication failed → Fix: export GEMINI_API_KEY="..."
  3. Context too large: Token limit exceeded → Fix: Use specific files, not entire repo
  4. Privacy leak: .env file sent → Fix: Add to .gitignore and .geminiignore
  5. Skill not discovered: Not working → Fix: Check ~/.claude/skills/multi-ai-consultant

Token Efficiency

Without This Skill

Typical scenario (stuck on bug):

  1. Try approach 1 (~4k tokens)
  2. Research CLI syntax (~3k tokens)
  3. Try approach 2 (~4k tokens)
  4. Research documentation (~3k tokens)
  5. Try approach 3 (~4k tokens)

Total: ~20k tokens, 30-45 minutes

With This Skill

Same scenario:

  1. Try approach 1 (~4k tokens)
  2. Execute /consult-gemini (~1k tokens)
  3. Gemini finds issue (<5k tokens, billed separately)
  4. 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)?

AspectMCP ServerCLI Approach
Setup time4-6 hours60-75 minutes
ComplexityHigh (MCP protocol)Low (bash + CLIs)
MaintenanceUpdate MCP SDKUpdate CLI (rare)
FlexibilityLocked to AIsAny AI with CLI
DebuggingMCP protocolStandard bash
DependenciesMCP SDK, npmJust 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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

48.57%
按下载量换算604

Cursor

30.58%
按下载量换算380

Codex

13.8%
按下载量换算172

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills