Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计提醒

council-of-llms法学硕士理事会

Agent Skill

council-of-llms 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,702

周安装

240

GitHub Stars

1

下载量

1,997
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:council-of-llms(法学硕士理事会)
来源仓库:https://github.com/wahajahmed010/council-of-llms
安装命令:
openclaw skills install council-of-llms
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install council-of-llms

简介

council-of-llms实现真正的多模型理事会审议机制,生成并行子代理进行分析。

  • 使用kimi-k2.6、deepseek-v4-pro、gemma4:31b等不同模型进行交叉验证。
  • 通过投票机制而非协调者意见得出最终结论,提高分析客观性。
  • 需配置多个模型API密钥并确保网络连接稳定。
  • 建议根据具体任务选择合适的模型组合策略。

SKILL.md

name
council-of-llms
description
Real multi-model council deliberation for OpenClaw subagents. Spawns 3 parallel subagents with different LLMs (kimi-k2.6, deepseek-v4-pro, gemma4:31b) and distinct analytical perspectives (Strategy, Analysis, Creativity), then synthesizes their independent outputs into a unified verdict with consensus points, disagreements, and action items. Fixes the single-model roleplay anti-pattern that causes context overflow and shallow analysis. Requires the subagent-orchestration skill for base spawning patterns. Triggers on: council, deliberate, debate, review, stress-test, multi-model, decision, verdict, analysis, perspectives.
tags

Council of LLMs

Overview

A real council spawns 3 parallel subagents, each with a different model and perspective, then synthesizes their outputs into a unified verdict. This is NOT one model roleplaying 3 experts — it's genuinely different models providing independent analysis.

Models

Read from ~/.openclaw/council-config.json:

{
  "council_models": [
    "ollama/kimi-k2.6:cloud",
    "ollama/deepseek-v3.2:cloud",
    "ollama/gemma4:31b-cloud"
  ],
  "default_timeout": 900,
  "max_tokens": 8192
}

Perspectives

Each model gets a different lens:

ModelPerspectiveRole
kimi-k2.6StrategosBig-picture strategy, business impact, feasibility
deepseek-v4-proAnalyticosData quality, technical correctness, edge cases
gemma4:31bCreativosCreative alternatives, user experience, novel approaches

How to Run a Council

Step 1: Prepare the Context

Gather all relevant data BEFORE spawning. Council agents cannot browse the web or access your conversation history. Paste everything they need inline.

Step 2: Spawn 3 Parallel Subagents

sessions_spawn(
  runtime: "subagent",
  mode: "run",
  model: "ollama/kimi-k2.6:cloud",
  label: "Council-Strategos",
  lightContext: true,
  runTimeoutSeconds: 900,
  task: "You are Strategos, a strategic analyst. [PASTE CONTEXT HERE]
  
  Analyze from a STRATEGIC perspective:
  - Business impact and feasibility
  - Market positioning and competitive advantage
  - Resource requirements and ROI
  - Strategic risks and opportunities
  
  Return your analysis as a structured review with: verdict, conditions, risks, recommendations."
)

sessions_spawn(
  runtime: "subagent",
  mode: "run",
  model: "ollama/deepseek-v4-pro:cloud",
  label: "Council-Analyticos",
  lightContext: true,
  runTimeoutSeconds: 900,
  task: "You are Analyticos, a data and logic analyst. [PASTE CONTEXT HERE]
  
  Analyze from an ANALYTICAL perspective:
  - Data quality and completeness
  - Technical correctness and edge cases
  - Statistical validity and sample sizes
  - Logical consistency and contradictions
  
  Return your analysis as a structured review with: verdict, conditions, risks, recommendations."
)

sessions_spawn(
  runtime: "subagent",
  mode: "run",
  model: "ollama/gemma4:31b-cloud",
  label: "Council-Creativos",
  lightContext: true,
  runTimeoutSeconds: 900,
  task: "You are Creativos, a creative and UX thinker. [PASTE CONTEXT HERE]
  
  Analyze from a CREATIVE perspective:
  - User experience and usability
  - Novel alternatives and unconventional approaches
  - Design and presentation improvements
  - What's missing that no one else would think of
  
  Return your analysis as a structured review with: verdict, conditions, risks, recommendations."
)

Step 3: Synthesize

When all 3 return, merge their verdicts:

  1. Consensus points — where all 3 agree
  2. Disagreements — where they differ and why
  3. Blind spots — what none of them caught
  4. Final verdict — weighted synthesis with conditions
  5. Action items — concrete next steps

Write the synthesis to council-review-[topic].md.

Critical Rules

  1. Paste ALL context inline — agents have no conversation history
  2. Keep task descriptions under 2000 words — longer = context overflow = failure
  3. Use lightContext: true — always, to prevent context bloat
  4. Set runTimeoutSeconds: 900 — councils need time
  5. Don't spawn with too much data — if pasting 10k+ words, summarize first
  6. Wait for ALL 3 to complete — don't synthesize with 2/3 results
  7. Never re-spawn — if one model times out, note it in the synthesis

Common Failure Modes

SymptomCauseFix
All 3 return emptyGateway overloadKill zombie subagents, wait, retry
One model times outSlow model + complex taskIncrease timeout or simplify task
Context overflow (300k+ tokens)Too much data pastedSummarize to <2000 words
Shallow analysisVague task descriptionBe specific about what to analyze
All 3 say the same thingNot enough perspective differentiationMake perspective prompts more distinct

Anti-Patterns

  • ❌ Spawning one subagent and asking it to "be 3 experts" — that's roleplay, not a council
  • ❌ Pasting 10k+ words of raw data — summarize first
  • ❌ Using the same model for all 3 perspectives — defeats the purpose
  • ❌ Synthesizing before all 3 complete — wait for everyone
  • ❌ Ignoring disagreements — disagreements are the most valuable output

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.81%
按下载量换算1,474

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install council-of-llms 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills