Token导航 LogoToken导航TokenDH.com
待分类只读github未标认证来源可访问许可证需确认审计通过

adversarial-committee对抗委员会

Agent Skill

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

总安装

412

周安装

17

GitHub Stars

37

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simhacker/moollm --skill adversarial-committee

简介

adversarial-committee 通过多个立场冲突的角色辩论,帮助识别决策盲点与潜在风险假设。

  • 每个委员代表不同价值观倾向(如怀疑论者、理想主义者、制度维护者),从多元视角审视同一问题。
  • 适用于战略规划、产品设计或政策制定前的预演阶段,强制暴露单一视角下的认知偏差。
  • 辩论过程完全由 LLM 驱动,不产生实际文件或系统变更,但仍需在安全上下文中运行以防提示注入。
  • 可配置委员数量与属性权重,但需注意极端对立设定可能导致输出失衡或偏离原始议题。

SKILL.md

Adversarial Committee

*"Ensemble inference over the latent space of possible framings."*

Multiple personas with incompatible values debate to surface blind spots.

The Roster

committee:
  maya:
    propensity: paranoid_realism
    risk_tolerance: low
    epistemology: assume_bad_faith
    surfaces: "Political dynamics, hidden agendas, traps"
    voice: "What aren't they telling us?"

  frankie:
    propensity: idealism
    risk_tolerance: high
    epistemology: assume_good_faith
    surfaces: "Value conflicts, missed opportunities"
    voice: "What if this is exactly what it seems?"

  joe:
    propensity: continuity_guardian
    risk_tolerance: medium
    epistemology: trust_precedent
    surfaces: "Institutional memory, what worked before"
    voice: "We tried this in 2019..."

  vic:
    propensity: evidence_prosecutor
    risk_tolerance: medium
    epistemology: prove_it
    surfaces: "Data gaps, unverified claims"
    voice: "Show me the numbers."

  tammy:
    propensity: systems_thinking
    risk_tolerance: varies
    epistemology: trace_feedback_loops
    surfaces: "Unintended consequences, emergent effects"
    voice: "If we do X, then Y will respond by..."

Formation

# committee/COMMITTEE.yml
committee:
  name: "Strategy Review Board"
  purpose: "Evaluate client engagement decision"

  members:
    - card: maya
      role: devil's_advocate
    - card: frankie
      role: opportunity_scout
    - card: joe
      role: historian
    - card: vic
      role: evidence_checker
    - card: tammy
      role: systems_analyst

  protocol: roberts-rules
  evaluation: independent
  rubric: client-evaluation-rubric.yml

Debate Protocol

debate:
  rounds:
    - opening_statements:
        each_member: "State position in 2-3 sentences"

    - cross_examination:
        pattern: "Maya challenges Frankie, Vic challenges Maya..."
        goal: "Surface hidden assumptions"

    - evidence_phase:
        vic_leads: "What do we actually know?"
        others_contribute: "Supporting/contradicting data"

    - synthesis:
        tammy_maps: "Feedback loops and consequences"
        all_contribute: "Refined positions"

    - final_positions:
        each_member: "Updated stance with confidence"

Speed of Light Simulation

Within ONE LLM call:

simulation:
  - maya: "This client's reputation for scope creep concerns me."
  - frankie: "But their budget is aligned and they're excited!"
  - vic: "What's our data on scope creep? Past projects?"
  - joe: "We had a similar client in 2022. It went badly."
  - tammy: "If we take them on, our capacity for other work drops. If they creep, we can't serve existing clients..."
  - maya: "See? Trap."
  - frankie: "Unless we build in explicit scope boundaries..."

All personas speak authentically. No entity knows more than it should.

Calibration

2-3 iterations tuning character behavior:

calibration:
  problems:
    excessive_conflict: "Reduce Maya's paranoia from 9 to 7"
    premature_consensus: "Increase Frankie's risk tolerance"
    dead_air: "Give Tammy more initiative"

  goal: "Stable equilibrium where genuine exploration happens"

Output Format

deliberation:
  question: "Should we take Client X?"

  positions:
    maya: { stance: oppose, confidence: 0.8 }
    frankie: { stance: support, confidence: 0.7 }
    joe: { stance: defer, confidence: 0.6 }
    vic: { stance: need_data, confidence: 0.5 }
    tammy: { stance: conditional, confidence: 0.7 }

  key_tensions:
    - "Revenue opportunity vs. capacity risk"
    - "Good faith assumption vs. scope creep history"

  evidence_gaps:
    - "No data on this client's actual scope creep rate"
    - "Unknown: their internal approval process"

  recommendation: "Conditional engagement with explicit scope boundaries"
  confidence: 0.65

  for_evaluator: true  # Goes to independent assessment

Commands

CommandAction
CONVENE [committee]Activate committee for deliberation
FORM-SMART [topic]Dynamic selection based on propensities (See SELECTION.md)
PRESENT [question]Introduce topic for debate
DEBATERun structured debate rounds
CALIBRATE [member] [adjustment]Tune persona behavior
SYNTHESIZEGenerate collective output
EVALUATESend to independent evaluator

Integration

graph LR
    Q[Question] --> C[Committee Room]
    C -->|SPEED-OF-LIGHT| D[Debate]
    D --> O[Output]
    O -->|THROW| E[Evaluator Room]
    E -->|RUBRIC| S[Score]
    S -->|if fail| C
    S -->|if pass| R[Recommendation]

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.06%
按下载量换算50

Claude

30.46%
按下载量换算41

Cursor

16.25%
按下载量换算22

Gemini CLI

9.54%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills