Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

model-council模范委员会

Agent Skill

model-council 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

10

下载量

141
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/michaelboeding/skills --skill model-council

简介

model-council 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。

  • 适用于模型开发、算法优化或 AI 工程化场景。
  • 支持模型性能评估和迭代改进建议生成。
  • 安装前建议确认权限范围和维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Model Council: Multi-Model Consensus

Run the same problem through multiple AI models in parallel, collect their analysis only, then Claude Code synthesizes and decides the best approach.

Unlike code-council (which uses one model with multiple approaches), model-council leverages different model architectures for true ensemble diversity.

Critical: Analysis Only Mode

IMPORTANT: External models provide analysis and recommendations ONLY. They do NOT make code changes.

  • External models: Analyze, suggest, reason, compare options
  • Claude Code: Synthesizes all inputs, makes final decision, implements changes

This ensures:

  1. Claude Code remains in control of the codebase
  2. No conflicting changes from multiple sources
  3. Best ideas from all models, unified execution

Why Multi-Model?

Different models have different:

  • Training data and knowledge cutoffs
  • Reasoning patterns and biases
  • Strengths (math, code, creativity, etc.)

When multiple independent models agree → High confidence the answer is correct.

Execution Modes

Mode 1: CLI Agents (Uses Your Existing Accounts)

Call CLI tools that use your logged-in accounts - leverages existing subscriptions!

CLI ToolModelStatus
claudeClaude (this session)✅ Already running
codexOpenAI CodexRequires setup
geminiGoogle GeminiRequires setup
aiderMulti-modelRequires setup

CLI Setup Instructions

OpenAI Codex CLI:

# Install via npm
npm install -g @openai/codex

# Login (uses browser auth)
codex auth

# Verify
codex --version

Google Gemini CLI:

# Install via npm
npm install -g @anthropic-ai/gemini-cli

# Or use gcloud with Vertex AI
gcloud auth application-default login

# Verify
gemini --version

Aider (Multi-model, Recommended):

# Install via pip
pip install aider-chat

# Configure with your API keys
export OPENAI_API_KEY="sk-..."
export ANTHROPIC_API_KEY="sk-ant-..."

# Run with specific model
aider --model gpt-4o --message "analyze this code"

Check What's Installed:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/model-council/scripts/detect_clis.py

Mode 2: API Calls (Pay per token)

Direct API calls - more reliable, works without CLI setup, but costs money.

Required environment variables:

Configuration

User Model Selection

Users can specify models inline:

model council with claude, gpt-4o, gemini: solve this problem

model council (claude + codex): fix this bug

model council all: use all available models

Default Models

If not specified, use all available:

  1. Check which CLI tools are installed
  2. Check which API keys are set
  3. Use what's available

Config File (Optional)

Users can create ~/.model-council.yaml:

# Preferred models (in order)
models:
  - claude      # Use Claude Code CLI (current session)
  - codex       # Use Codex CLI if installed
  - gemini-cli  # Use Gemini CLI if installed

# Fallback to APIs if CLIs not available
fallback_to_api: true

# API models to use when falling back
api_models:
  anthropic: claude-sonnet-4-20250514
  openai: gpt-4o
  google: gemini-2.0-flash
  xai: grok-3

# Timeout per model (seconds)
timeout: 120

# Run in parallel or sequential
parallel: true

Workflow

Step 1: Parse Model Selection

Determine which models to use:

  1. Check user's inline specification (e.g., "with claude, gpt-4o")
  2. If none specified, check config file
  3. If no config, detect available CLIs and APIs

Step 2: Prepare the Prompt

Format the problem for each model with analysis-only instructions:

Analyze the following problem and provide your recommendations.
DO NOT output code changes directly.
Instead, provide:
1. Your analysis of the problem
2. Recommended approach(es)
3. Potential issues or edge cases to consider
4. Trade-offs between different solutions

Problem:
[user's problem here]

Key rules:

  • Keep the core problem identical across models
  • Explicitly request analysis, not implementation
  • Include relevant context (code snippets, error messages)

Step 3: Execute in Parallel

Use the API council script to query multiple models:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/model-council/scripts/api_council.py \
  --prompt "Analyze this problem and recommend solutions (do not implement): [problem]" \
  --models "claude-sonnet,gpt-4o,gemini-flash"

Available models:

  • claude-sonnet, claude-opus - Anthropic
  • gpt-4o, gpt-4-turbo, o1 - OpenAI
  • gemini-flash, gemini-pro - Google
  • grok - xAI

List all models:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/model-council/scripts/api_council.py --list-models

Step 4: Collect Responses

Gather all model responses with metadata:

  • Model name and version
  • Response time
  • Token usage (if available)
  • Full response

Step 5: Analyze Consensus

Compare responses looking for:

  • Agreement: Do models produce the same answer/approach?
  • Unique insights: Does one model catch something others missed?
  • Disagreements: Where do models differ and why?

Step 6: Claude Code Synthesizes and Decides

Claude Code (this session) uses ultrathink to:

  1. Evaluate each model's analysis
  2. Identify the strongest reasoning and recommendations
  3. Note where models agree (high confidence) vs disagree (investigate further)
  4. Make the final decision on approach
  5. Implement the solution - only Claude Code makes code changes

This is the key difference from just asking one model:

  • Multiple perspectives inform the decision
  • Claude Code remains the single source of truth for implementation
  • No conflicting changes from different models

Step 7: Deliver Results

Provide:

  1. Final synthesized answer (best combined solution)
  2. Consensus score (how many models agreed)
  3. Individual responses (for transparency)
  4. Insights (what each model contributed)

CLI Detection

To check available CLIs:

python3 ${CLAUDE_PLUGIN_ROOT}/skills/model-council/scripts/detect_clis.py

This checks for:

  • claude - Claude Code CLI
  • codex - OpenAI Codex CLI
  • gemini - Gemini CLI
  • aider - Aider (multi-model)
  • cursor - Cursor AI (if applicable)

Comparison: code-council vs model-council

Aspectcode-councilmodel-council
Models usedClaude onlyMultiple (Claude, GPT, Gemini, etc.)
Diversity sourceDifferent approachesDifferent architectures
CostFree (uses current session)Free (CLIs) or paid (APIs)
SpeedFast (single model)Slower (parallel calls)
Best forQuick iterationsHigh-stakes decisions

When to Use Each

Use code-council when:

  • You want fast iterations
  • The problem is well-defined
  • You trust Claude's reasoning

Use model-council when:

  • High-stakes code (production, security)
  • You want architectural diversity
  • Models might have different knowledge
  • You want to verify Claude's answer

Error Handling

CLI not found: Skip that model, log warning, continue with others.

API key missing: Skip that provider, try CLI fallback if available.

Timeout: Return partial results, note which models timed out.

No models available: Error with setup instructions.

Example Output

## Model Council Analysis Results

### Consensus: HIGH (3/3 models agree on approach)

### Summary of Recommendations:
All models recommend using a hash map for O(1) lookup.
Key considerations raised:
- Handle null/empty input (Claude, GPT-4o)
- Consider memory vs speed tradeoff (Gemini)
- Add input validation (all models)

### Individual Analyses:

#### Claude Sonnet (API)
Analysis: The bug is caused by off-by-one error in the loop boundary.
Recommendation: Change `i <= len` to `i < len`
Edge cases noted: Empty array, single element
Confidence: High

#### GPT-4o (API)
Analysis: Loop iterates one element past array bounds.
Recommendation: Fix loop condition, add bounds check
Additional insight: Could also use forEach to avoid index errors
Confidence: High

#### Gemini Flash (API)
Analysis: Array index out of bounds on final iteration.
Recommendation: Adjust loop termination condition
Reference: Similar to common off-by-one patterns
Confidence: High

### Claude Code Decision:
Based on consensus, implementing fix with:
- Loop condition change (i < len)
- Added null check for robustness
- Unit test for edge cases

[Claude Code now implements the solution]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.76%
按下载量换算49

Claude

27.42%
按下载量换算39

Cursor

18.9%
按下载量换算27

Gemini CLI

9.9%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills