Token导航 LogoToken导航TokenDH.com
研究检索可写文件clawhub未标认证来源可访问clear审计通过

debate-research辩论研究

Agent Skill

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

总安装

3,127

周安装

129

GitHub Stars

1

下载量

1,022
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:debate-research(辩论研究)
来源仓库:https://github.com/caius-kong/debate-research
安装命令:
openclaw skills install debate-research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install debate-research

简介

针对复杂主题发起多视角结构化辩论,生成对立立场子代理交叉论证。

  • 适合深度分析争议性话题或训练批判性思维时的研究检索支持。
  • 输入主题与核心论点,系统组织正反双方推理并综合结论建议。
  • 输出为逻辑推演过程,不可直接作为事实依据,需结合多方信源验证。
  • debate-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
debate-research
description
Multi-perspective structured debate for complex topics. Spawn parallel subagents with opposing stances, cross-inject arguments for rebuttal, then synthesize via neutral judge into a consensus report with recommendations and scenario matrix. Use when: (1) user asks for deep comparison, pros/cons, or X vs Y analysis, (2) user asks for multi-angle research on a controversial or complex topic, (3) user explicitly requests debate, dialectical analysis, or adversarial research. NOT for: simple factual lookups, single-perspective deep research (use academic-deep-research), or quick opinion questions.

Debate Research

Input Parameters

Collect from user before starting. Only topic is required; all others have defaults.

ParamRequiredDefaultDescription
topicyesDebate subject
rolesnoProponent + Opponent2-4 role objects: {name, stance, model?}. Default: Proponent (argue for) and Opponent (argue against). Model inherits from global.
goalnoinferredWhat question to answer
audienceno"self"Who reads the report: self / team / public
decision_typeno"personal-choice"personal-choice / team-standardization / market-analysis
evidence_roundno"auto"false / true / auto (enable when topic is fact-dense)
confirm_plannotrueShow plan and wait for user OK before execution
modelnoinheritGlobal subagent model; role-level override takes priority
output_pathnonullFile path for report; null = return in conversation

Implicit parameter: language — inferred from the user's topic/conversation language. All subagent prompts output in this language.

Example User Prompt

  • Claude Code vs OpenCode (gpt-5.4, claude-4.6-sonnet)

Execution Pipeline

Phase 0 — Pre-flight

Step 0a: Model reachability check

Collect all unique models (global + per-role + judge). For each unique model, probe via sessions_spawn with a minimal one-sentence task (e.g. "Reply OK") and model: <target>. Do NOT use curl or external HTTP — all models route through OpenClaw's provider config.

If any probe fails:

  • If user explicitly specified the failed model → abort, report failure, suggest alternatives
  • If model was default-assigned → warn user, fall back to session default model, continue

Step 0b: Plan presentation (if confirm_plan: true)

Present to user:

  • Topic
  • Role × model assignment table
  • Evidence round: on/off/auto (with rationale if auto)
  • Estimated subagent call count
  • Goal / audience / decision_type interpretation

[STOP — wait for user confirmation]

If confirm_plan: false, skip directly to Phase 1.

Phase 1 — Stance Investigation (parallel)

Spawn one subagent per role, all in parallel.

Each agent receives a prompt built from:

  • Role name + stance
  • Topic
  • web_search: enabled

Required output format per agent:

Core arguments (3-5):
  - [argument] | confidence: 0.0-1.0 | source: [official-docs/community-feedback/personal-blog/academic-paper]
Opponent weaknesses (2-3)
Predicted counter-attacks (1-2)

Use sessions_spawn + sessions_yield to wait for all completions.

Error handling:

  • Agent timeout → mark output [INCOMPLETE], continue pipeline

Phase 2 — Cross Rebuttal (parallel)

Spawn one subagent per role, all in parallel.

Each agent receives:

  • Its original stance
  • All other roles' Phase 1 output (cross-injected)
  • web_search: disabled

Required output format per agent:

Rebuttals (one per opponent argument):
  - [rebuttal] | confidence: 0.0-1.0
Weakest premise attack:
  - Identify opponent's single weakest assumption and challenge it  ← Socratic element
New attacks (2):
  - [attack]

Word limit: 300 × number_of_opponents words per agent.

Error handling:

  • Agent timeout → mark [INCOMPLETE], continue

Phase 2.5 — Evidence Audit (optional)

Triggered when evidence_round: true, or when auto and topic involves measurable claims. Auto-enable heuristic: topic contains performance benchmarks, cost comparisons, security assessments, market data, or quantitative metrics. When in doubt with auto, skip (false positive costs more than false negative).

Spawn 1 subagent as "evidence auditor":

  • Input: all Phase 1 + Phase 2 output
  • web_search: disabled
  • Task: extract every factual claim, tag each as:

[official-docs] [community-feedback] [personal-blog] [no-source] [exaggerated]

  • Output: concise fact checklist

Phase 3 — Neutral Judgment

Spawn 1 subagent as neutral judge:

  • Input: Phase 1 + Phase 2 + Phase 2.5 (if available)
  • web_search: disabled
  • Weigh arguments by confidence scores AND source quality tags

Required output structure:

  1. Strong arguments per side
  2. Exaggerated claims per side
  3. Shared limitations (problems neither option solves)
  4. Core disagreements (value-level, not just factual)
  5. Consensus points
  6. Recommendation — explicit directional advice, adapted to decision_type
  7. Open Questions — unresolved unknowns that could change the conclusion
  8. Scenario selection matrix (table: scenario × recommendation × rationale)
  9. One-sentence summary

Phase 4 — Report Assembly

Orchestrator (main conversation) assembles all outputs into Markdown:

# [topic]: Debate Research Report

> **Date**: YYYY-MM-DD
> **Method**: Multi-agent structured debate (debate-research skill)
> **Roles**: [role1 (model)] | [role2 (model)] | ...
> **Audience**: [audience] | **Decision type**: [decision_type]
> **Completion**: [success | degraded-success | aborted]

## Core Arguments by Side
[Phase 1 output, organized by role]

## Cross Rebuttals
[Phase 2 output, organized by role]

## Evidence Audit
[Phase 2.5 output, or "Not requested"]

## Neutral Judgment
[Phase 3 sections 1-5]

## Recommendation
[Phase 3 section 6]

## Open Questions
[Phase 3 section 7]

## Scenario Matrix
[Phase 3 section 8]

> **One-line summary**: [Phase 3 section 9]

If output_path specified → write file. Otherwise → return in conversation.

Completion States

StateConditionBehavior
successAll phases completed normallyFull report
degraded-success1+ agents timed out or returned [INCOMPLETE]Report with degradation note
abortedModel pre-check failed / user cancelled planNo report; return error summary

Prompt Templates

See references/prompts.md for the exact prompt templates used in each phase. Orchestrator builds prompts dynamically from parameters + these templates.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.19%
按下载量换算768

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills