Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

debatedebate 搜索

Agent Skill

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

总安装

321

周安装

13

GitHub Stars

37

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

debate用于处理GitHub仓库、Issue、Pull Request和代码协作信息。

  • 它适合围绕仓库状态、代码变更或协作事项进行整理,提升开发流程透明度。
  • 可通过npx skills add命令从GitHub仓库安装,具体用法需结合原始README进一步确认。
  • 安装前请核实权限范围、维护状态及是否涉及联网或文件操作。
  • debate 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Debate

"No single story is true — but the ensemble approximates actionable wisdom."

Structured deliberation that forces genuine exploration through adversarial dialogue.


Why Debate?

Traditional LLM chat gives you the statistical center — the most likely answer averaged across all training data. This misses:

  • Outlier perspectives that might matter most
  • Hidden assumptions embedded in the "obvious" answer
  • Genuine trade-offs between competing values
  • The shape of the possibility space

Debate fixes this by simulating multiple perspectives that must defend their positions against cross-examination.


The Debate Card

# debate.card — the master ensemble card
card:
  name: "Structured Debate"
  type: ensemble
  emoji: "🎭"

  # Data flow components
  components:
    generators:
      CREATE_TOPIC:
        description: "Define what we're debating"
        params:
          question: required
          context: optional
          stakes: optional
        outputs: [topic_stream]

      CREATE_SIDE:
        description: "Create a position with advocates"
        params:
          name: required
          position: required
          advocates: "1-3 personas"
        outputs: [arguments, rebuttals]

    transformers:
      CREATE_MODERATOR:
        description: "Facilitate fair debate"
        params:
          style: ["roberts_rules", "oxford", "informal"]
          strictness: ["strict", "moderate", "loose"]
        inputs: [arguments, rebuttals, motions]
        outputs: [moderated_stream]
        behavior: |
          Enforce turn-taking
          Recognize speakers
          Time contributions
          Call votes when appropriate

      CREATE_CLOCK:
        description: "Control timing"
        params:
          round_duration: "time expression"
          rebuttal_duration: "time expression"
        inputs: [any]
        outputs: [timed_stream]

    consumers:
      CREATE_AUDIENCE:
        description: "Observers who react and score"
        params:
          count: number
          expertise: list
          scoring: ["rubric", "impression", "vote"]
        inputs: [moderated_stream]
        outputs: [reactions, scores, verdict]

      CREATE_TRANSCRIPT:
        description: "Record everything"
        inputs: [all_streams]
        outputs: [TRANSCRIPT.md]

      CREATE_EVALUATOR:
        description: "Independent assessment (no debate context)"
        params:
          rubric: required
        inputs: [final_positions]
        outputs: [evaluation.yml]

  # Wiring instructions (natural language)
  wiring: |
    Topic feeds context to all Sides.
    Sides produce Arguments that flow to Moderator.
    Moderator interleaves fairly and routes to Audience.
    Clock controls round transitions via Moderator.
    Transcript captures the full moderated stream.
    Evaluator receives only final positions, not debate process.

  # Activation advertisements
  advertisements:
    SETUP:
      description: "Configure a new debate"
      score: 80

    START:
      description: "Begin the debate"
      score_if: "topic AND sides.length >= 2"
      score: 90

    PAUSE:
      description: "Pause for reflection or recess"
      score: 50

    CONCLUDE:
      description: "End debate, call for verdict"
      score_if: "rounds_completed >= min_rounds"
      score: 70

Debate Session State

# debates/microservices-001/DEBATE.yml
debate:
  id: microservices-001
  topic:
    question: "Should we migrate to microservices?"
    context: "Legacy monolith, 50 engineers, growing pains"
    stakes: "Architecture decision affects next 5 years"

  sides:
    pro:
      position: "Microservices enable team autonomy and scaling"
      advocates:
        - maya: "Focus on organizational benefits"
        - frankie: "Emphasize future flexibility"
      arguments_made: 7

    con:
      position: "Monolith is simpler, faster, cheaper"
      advocates:
        - vic: "Demand evidence of problems"
        - tammy: "Trace second-order effects"
      arguments_made: 6

    pragmatic:
      position: "Modular monolith as middle path"
      advocates:
        - joe: "Preserve what works"
      arguments_made: 4

  moderator:
    style: roberts_rules
    current_speaker: maya
    queue: [vic, frankie, tammy]

  clock:
    round: 2
    total_rounds: 3
    round_time_remaining: "4:30"

  audience:
    - id: architect-1
      expertise: system_design
      leaning: pragmatic
      confidence: 0.7
    - id: ops-1
      expertise: deployment
      leaning: con
      confidence: 0.8
    - id: dev-1
      expertise: implementation
      leaning: pro
      confidence: 0.5

  status: in_progress

  # Verdict (populated after conclusion)
  verdict: null

Debate Flow

# Debate session structure
debate_flow:
  topic: "Should we adopt microservices?"

  sides:
    pro:
      advocates: [Maya, Frankie]
    con:
      advocates: [Vic, Tammy]
    pragmatic:
      advocates: [Joe]

  moderator:
    style: "Robert's Rules"
    controls: [turn-taking, timing]

  outputs:
    audience: "scores"
    transcript: "records"
    evaluator: "independent (no context)"

  verdict:
    winner: "pragmatic (modular monolith)"
    confidence: 60%

Commands

Setup Commands

CommandEffect
DEBATE [topic]Quick-start: creates topic, 2 sides, moderator
CREATE_TOPIC [question]Define what we're debating
CREATE_SIDE [name] position="..."Add a position
CREATE_MODERATOR style=[style]Add facilitation
CREATE_AUDIENCE count=[n]Add observers
START_DEBATE rounds=[n]Begin

Robert's Rules Commands

CommandEffect
MOTION [text]Propose something for vote
SECONDSecond a motion
DEBATEOpen floor for discussion
CALL_QUESTIONEnd debate, move to vote
VOTE [yea/nay/abstain]Cast vote
POINT_OF_ORDERChallenge procedure
YIELDGive up remaining time

Flow Commands

CommandEffect
ARGUMENT [text]Make an argument for your side
REBUTTAL [text]Counter an argument
EVIDENCE [citation]Introduce supporting evidence
QUESTION [target]Direct question to opponent
CONCEDE [point]Acknowledge opponent's point
CONCLUDEEnd debate, generate verdict

Side Definition

# Each side is a generator with advocates
side:
  name: pro
  position: "Microservices enable team autonomy and independent deployment"

  advocates:
    maya:
      persona: "Paranoid realist"
      focus: "What could go wrong with NOT changing"
      style: "Surface hidden risks of status quo"

    frankie:
      persona: "Optimistic idealist"
      focus: "Future possibilities"
      style: "Paint vision of success"

  strategy: |
    Lead with organizational benefits (Maya).
    Follow with technical flexibility (Frankie).
    Anticipate complexity objections.
    Have concrete migration plan ready.

  constraints:
    - "Must acknowledge operational complexity"
    - "Cannot dismiss monitoring challenges"

  arguments:
    - id: arg-001
      claim: "Team autonomy increases velocity"
      evidence: "Case studies from Amazon, Netflix"
      rebuttals_received: [reb-001, reb-003]

    - id: arg-002
      claim: "Independent deployment reduces coordination"
      evidence: "Current deploy queue is 2 weeks"
      rebuttals_received: []

Transcript Format

# Debate: Should We Adopt Microservices?

**Date:** 2026-01-05
**Moderator:** Roberts-Rules-Bot
**Rounds:** 3

---

## Opening Statements

### Pro (Maya)

> The question isn't whether microservices add complexity — they do.
> The question is whether our current monolith's hidden complexity
> is already killing us. Our deploy queue is 2 weeks. Our teams
> step on each other constantly. The pain is real and growing.

### Con (Vic)

> Show me the data. "Teams step on each other" — how often?
> What's the actual cost? I've seen microservice migrations
> that took 3 years and delivered negative value. The grass
> is always greener until you're debugging distributed traces
> at 3am.

### Pragmatic (Joe)

> What if we don't have to choose? A modular monolith gives us
> team boundaries without network calls. We can always extract
> services later when we have evidence they're needed.

---

## Round 1: Arguments

**Moderator:** Maya has the floor.

**Maya (Pro):**
> I move that we consider deployment independence as the primary
> benefit. [MOTION]

**Tammy (Con):**
> Second, for purposes of debate. [SECOND]

**Moderator:** Motion seconded. Floor is open.

**Frankie (Pro):**
> ARGUMENT: Our current deploy process requires full regression
> because any change could affect any part of the system.
> With service boundaries, teams deploy independently.
> ```yaml
> evidence:
>   current_deploy_time: "2 weeks"
>   microservice_target: "< 1 day per service"
>   source: "internal metrics"
> ```

**Vic (Con):**
> REBUTTAL: You're trading deploy coordination for runtime
> coordination. Now every service call can fail. Your "1 day
> deploys" will be offset by distributed debugging.

---

## Verdict

**Audience Scores:**
| Audience | Leaning | Confidence |
|----------|---------|------------|
| architect-1 | pragmatic | 0.8 |
| ops-1 | con | 0.7 |
| dev-1 | pragmatic | 0.6 |

**Independent Evaluator:**

evaluation: winner: pragmatic reasoning: | Pro made strong organizational arguments but didn't address operational complexity sufficiently. Con's evidence demands were valid but position was purely defensive. Pragmatic offered concrete middle path with lower risk and clear upgrade path. confidence: 0.7 dissenting_view: "Pro's velocity argument deserves more weight"


**Final Verdict:** Modular monolith (pragmatic position)

Integration with Other Skills

With adversarial-committee

Debate IS an adversarial committee in action. The sides are the committee members with opposing propensities.

With roberts-rules

The moderator can enforce full parliamentary procedure:

moderator:
  style: roberts_rules
  enforces:
    - motions_require_second
    - debate_before_vote
    - point_of_order_interrupts
    - two_thirds_for_closure

With rubric

Audience and evaluator can use explicit rubrics:

rubric:
  criteria:
    - name: evidence_quality
      weight: 0.3
      levels: [anecdotal, case_study, systematic]

    - name: addresses_counterarguments
      weight: 0.25
      levels: [ignores, acknowledges, refutes]

    - name: practical_feasibility
      weight: 0.25
      levels: [theoretical, plausible, demonstrated]

    - name: risk_assessment
      weight: 0.2
      levels: [ignores, mentions, quantifies]

With speed-of-light

The entire debate can happen in ONE LLM call:

# One epoch simulates multiple rounds of debate
speed_of_light:
  characters: 5  # Maya, Frankie, Vic, Tammy, Joe
  rounds: 3
  arguments_per_round: 6
  total_simulated: 18 exchanges
  llm_calls: 1

Protocol Symbols

SymbolMeaning
DEBATEInvoke this skill
MOTIONPropose for vote
SECONDSupport a motion
REBUTTALCounter an argument
VERDICTFinal decision
ADVERSARIAL-COMMITTEEThe underlying pattern

Dovetails With


*"The map is not the territory. The story is not the reality. But the ensemble of stories, cross-examined, might just be useful."*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.12%
按下载量换算37

Claude

31.96%
按下载量换算32

Cursor

18.2%
按下载量换算18

Gemini CLI

8.98%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills