Token导航 LogoToken导航TokenDH.com
效率external-serviceclawhub未标认证来源可访问clear审计通过

coe-consensus欧洲委员会共识

Agent Skill

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

总安装

1,623

周安装

69

GitHub Stars

公开资料未说明

下载量

569
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:coe-consensus(欧洲委员会共识)
来源仓库:https://github.com/schchit/coe-consensus
安装命令:
openclaw skills install coe-consensus
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install coe-consensus

简介

用于补充效率相关能力,适合在 OpenClaw 中承接效率任务。

  • 提供 COE 共识引擎,形成跨模型共识技能。
  • 可结合来源仓库和 README 核验具体用法。
  • 安装命令:openclaw skills install coe-consensus。
  • 安装前建议确认权限范围和维护状态。coe-consensus 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
coe-consensus
version
1.0.0
description
COE Consensus Engine — Cross-Model Consensus Skill for Shared World State Formation
author
Cognitive Emergence Lab <yuqiang@humanjudgment.org>
license
MIT
protocol
COE
tags
entrypoint
skill.api:app
host_targets
skills
description
Collect J/V events from heterogeneous agents and produce a verifiable Shared World State via configurable consensus policy
input_schema
type
object
properties
session_id
type
string
description
Unique session identifier
target
type
string
description
Target world model or scene ID to filter events
policy
type
string
enum
description
Consensus policy to apply
events
type
array
description
List of COE events (J, D, T, V primitives)
items
type
object
properties
event_id
type
string
primitive
type
string
enum
issuer
type
string
timestamp
type
string
target
type
string
assertion
type
object
verify_of
type
array
items
type
string
verification_result
type
string
enum
confidence
type
number
terminate_of
type
string
trust_weights
type
object
description
Issuer-to-weight mapping for weighted_trust policy
bft_fault_tolerance
type
integer
description
Fault tolerance parameter f for BFT policy
weighted_threshold
type
number
description
Confirmation threshold for weighted_trust policy
required
output_schema
type
object
properties
session_id
type
string
resolved
type
boolean
description
Whether consensus was reached for all active assertions
policy
type
string
sws
type
object
description
Shared World State record when resolved
properties
sws_id
type
string
target
type
string
timestamp
type
string
assertions
type
array
items
type
object
previous_sws_id
type
string
conflicts
type
array
description
Unresolved conflicts requiring additional evidence or verifications
items
type
object
message
type
string
events_processed
type
integer
events_by_issuer
type
object

COE Consensus Skill

Cross-Model Consensus Engine

Algorithm implementation based on the COE (Cognition-Oriented Emergence) Protocol (Wang, 2026).

Core Problem

When multiple agents (humans, AI models, robots) observe the same physical space, how do they reach a verifiable consensus on "what the world is"?

Consensus Policies

PolicyUse CaseRule
Simple MajoritySmall equal-trust groupsConfirmations exceed 50% of all verifications received
Weighted TrustHeterogeneous agents with different reliabilitySum of (trust_weight * confidence) exceeds threshold
BFTHigh-security with potential malicious agentsMore than f+1 confirmations out of at least 2f+1 total verifications

Shared World State (SWS)

Whenever consensus is reached, the engine produces an SWS record containing:

  • subject / predicate / value — the agreed-upon fact
  • confidence — aggregated confidence score
  • based_on — event IDs of the underlying J/V events
  • consensus_policy — policy used to reach agreement
  • confirmations — number of confirming verifications

Usage Example

Request

{
  "session_id": "warehouse-001",
  "target": "warehouse-zone-3",
  "policy": "weighted_trust",
  "events": [
    {
      "event_id": "evt-1",
      "primitive": "J",
      "issuer": "robot-A",
      "timestamp": "2026-04-19T10:30:00Z",
      "target": "warehouse-zone-3",
      "assertion": {"subject": "door_01", "predicate": "status", "value": "open"},
      "confidence": 0.95
    },
    {
      "event_id": "evt-2",
      "primitive": "V",
      "issuer": "robot-B",
      "timestamp": "2026-04-19T10:30:05Z",
      "target": "warehouse-zone-3",
      "verify_of": ["evt-1"],
      "verification_result": "confirmed",
      "confidence": 0.9
    }
  ],
  "trust_weights": {"robot-A": 0.9, "robot-B": 0.8},
  "weighted_threshold": 1.5
}

Response

{
  "session_id": "warehouse-001",
  "resolved": true,
  "policy": "weighted_trust",
  "sws": {
    "sws_id": "...",
    "target": "warehouse-zone-3",
    "timestamp": "2026-04-19T10:30:05Z",
    "assertions": [
      {
        "subject": "door_01",
        "predicate": "status",
        "value": "open",
        "confidence": 1.0,
        "based_on": ["evt-1"],
        "consensus_policy": "weighted_trust",
        "confirmations": 1
      }
    ]
  },
  "conflicts": [],
  "message": "Consensus complete. 1 assertions resolved, 0 conflicts remain.",
  "events_processed": 2,
  "events_by_issuer": {"robot-A": 1, "robot-B": 1}
}

Relationship with JEP

  • COE answers "what the world is" — cognitive consensus, ex-ante / in-situ collaboration.
  • JEP answers "who is responsible" — accountability tracing, post-hoc audit.
  • COE events may be referenced by JEP as evidence. Together they form a complete cognition-accountability dual-loop.

Cognitive Emergence Lab yuqiang@humanjudgment.org

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.61%
按下载量换算493

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills