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

multi-model-critique多模型批判

Agent Skill

multi-model-critique 用于处理图像、截图、视觉识别或图片素材相关工作,适合在 OpenClaw 中需要让 Agent 分析图片、整理视觉素材或辅助图像流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,956

周安装

479

GitHub Stars

公开资料未说明

下载量

3,870
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install multi-model-critique

简介

在起草、交叉批评、修订和综合的 4 个步骤周期中使用多个模型,为复杂、高风险的查询生成更高质量的答案。

SKILL.md

name
multi-model-critique
description
Run complex prompts through a multi-model deliberation pipeline with structured self-improvement. Use when the user sets a complex flag (e.g., complex=true/complex) or asks for high-stakes, ambiguous, or long-form reasoning where one model is not enough. Produces outputs by: (1) parallel model runs, (2) cross-critique, (3) critique-driven revision, and (4) final synthesized answer with uncertainties and evidence notes.
metadata
{"openclaw":{"emoji":"🧠"}}

Multi-Model Critique

Overview

Use this skill only for complex tasks. Route multiple models through the same 4-step loop (Plan -> Execute -> Review -> Improve), then run cross-critique and synthesis to produce a higher-quality final answer than any single-model draft.

Trigger rule

Enable this skill only when the request explicitly sets complex to true (or equivalent wording such as “this is complex/deep”).

If complex is false, skip this skill and respond with normal single-model behavior.

Inputs

Collect or confirm these inputs before execution:

  • complex: boolean flag (must be true)
  • question: user request
  • models: list of ACP agentId values (typically 3)
  • constraints: output format, language, length, deadlines, forbidden assumptions
  • ops: optional runtime controls (timeoutSec, maxRetries, maxRounds, budgetUsd)

File map (what each file does)

  • SKILL.md (this file): orchestration policy, trigger conditions, and execution sequence.
  • references/prompt-templates.md: reusable prompts for draft, critique, revision, and final synthesis (includes scoring rubric usage).
  • references/orchestration-template.md: practical OpenClaw orchestration flow using sessions_spawn, sessions_send, and sessions_history.
  • references/output-schema.md: machine-parseable JSON output schema for final result and per-model scoring.
  • scripts/build_round_prompts.py: utility to generate per-model prompt files for repeated runs.
  • scripts/run_orchestration.py: local helper that builds a run plan JSON (model mapping, round prompts, runtime settings).

Workflow

Step 1) Parallel draft round

Spawn one ACP session per model with the same task and constraints.

Per-model requirements:

  • Follow the exact internal sequence: Plan -> Execute -> Review -> Improve
  • Print all four sections explicitly
  • End with Draft Answer

Use sessions_spawn with runtime:"acp" and explicit agentId.

Step 2) Cross-critique round

Share peer Draft Answer outputs with each model and require structured critique:

  • Strengths
  • Weaknesses
  • Missing assumptions/data
  • Hallucination and confidence risks
  • Concrete fix suggestions

Also require ranking of peer drafts with rationale.

Step 3) Revision round

Send critique feedback back to each original model and request revision:

  • Keep Plan -> Execute -> Review -> Improve
  • Include Changes from Critique
  • End with Revised Answer

Step 4) Final synthesis round

Integrate revised answers into one user-facing output:

  • Best final answer
  • Why the synthesis is stronger than individual drafts
  • Remaining uncertainties
  • Optional next actions

Scoring rubric (required in critique + synthesis)

Score each draft on a 1-5 scale:

  • accuracy: factual correctness and internal consistency
  • coverage: completeness against user request and constraints
  • evidence: quality of assumptions and support
  • actionability: usefulness for concrete decision/action

Default weighted score: 0.40 * accuracy + 0.25 * coverage + 0.20 * evidence + 0.15 * actionability

Use this score to justify rankings and the final selected direction.

Prompting resources

  • Use references/prompt-templates.md for canonical prompts.
  • Use scripts/build_round_prompts.py when you need file-based prompt generation for repeated or batched runs.
  • Use scripts/run_orchestration.py to generate a deterministic run-plan artifact for reproducible execution.
  • Use references/orchestration-template.md for concrete OpenClaw tool-call flow.

Required user-facing output shape

  1. Final Answer
  2. Key Improvements from Critique
  3. Uncertainties
  4. Next Steps (optional)

When machine consumption is needed, return JSON matching references/output-schema.md.

Do not expose private chain-of-thought. Provide concise reasoning summaries only.

Failure handling

  • One model fails: continue with remaining models and note reduced diversity.
  • Two or more models fail: ask whether to retry or switch to single-model mode.
  • Strong disagreement remains: present competing hypotheses and state what evidence would resolve them.

Runtime defaults (recommended)

  • timeoutSec: 180 per round per model
  • maxRetries: 1 per failed model turn
  • maxRounds: fixed at 4 (draft, critique, revision, synthesis)
  • budgetUsd: optional hard stop when cost-sensitive

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.7%
按下载量换算3,200

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills