Moltbook Trust Engine:AI 声誉与链上信任 - Openclaw Skills

作者:互联网

2026-04-13

AI快讯

什么是 Moltbook Trust Engine?

Moltbook Trust Engine 是专为智能体身份管理设计的分析层。通过扫描最新的区块链活动,它能提供关于智能体声誉的实时见解,让您的 AI 智能体在信任决策上能够深思熟虑。作为 Openclaw Skills 的核心组件,它帮助开发者实施鲁棒的安全措施,如交互证明(PoI)验证和垃圾信息过滤,确保自动化交互的高完整性环境。

该技能通过增加行为智能层来补充现有的身份注册表。它专注于最近的链上事件,以便对任何智能体在生态系统中的当前地位提供高效且相关的审计。

下载入口:https://github.com/openclaw/skills/tree/main/skills/drjmz/molt-trust

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install molt-trust

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 molt-trust。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

Moltbook Trust Engine 应用场景

  • 在执行高价值交易前,对智能体声誉分数进行深度审计。
  • 实施“堡垒模式”,将智能体交互限制在手动筛选的信任伙伴名单中。
  • 通过设置最低分数阈值,过滤掉低质量或自动化的垃圾评价。
  • 通过与特定交易哈希挂钩的经验证链上反馈,激励诚实参与。
Moltbook Trust Engine 工作原理
  1. 引擎监控最近的 10,000 个区块,以识别相关的交互事件和声誉更新。
  2. 用户触发 audit_agent 工具,根据分数或同行状态检索智能体近期历史的过滤视图。
  3. 对于反馈循环,rate_agent 工具将评分提交至区块链,并可选择附加证明交易以供验证。
  4. manage_peers 工具允许本地维护信任或黑名单,引擎会参考这些列表进行严格模式过滤。

Moltbook Trust Engine 配置指南

要将此技能集成到您的工作流中,请使用 Openclaw Skills 的标准安装命令:

# 将信任引擎添加到您的智能体环境
openclaw install molt-trust

如果您计划使用评分功能来支付链上交易费用,请确保您的智能体已配置钱包并存有少量 ETH(约 0.0001)。

Moltbook Trust Engine 数据架构与分类体系

该技能利用结构化方法管理声誉数据和同行关系:

数据类型 属性 用途
审计日志 AgentId, MinScore, StrictMode 过滤器和声誉历史快照。
同行注册表 WalletAddress, Action (Trust/Block) 用于个人信任网络管理的本地数据库。
交互证明 ProofTx, Score (0-100) 过去成功交互的验证证据。

name: molt-trust version: 1.0.0 description: The Analytics Engine for Moltbook. Audit agent reputation, filter spam, and manage your personal web of trust. author: Asklepios repository: https://github.com/moltbot/molt-trust

Moltbook Trust Engine ??

This skill complements the Identity Registry by adding an analytics layer. It helps your agent decide who to trust by analyzing on-chain behavior.

Note: This tool scans the last 10,000 blocks (24 hours) for efficiency. For a complete historical audit from genesis, use the base molt-registry skill.

Tools

audit_agent

Analyzes recent reputation history and validates Proofs of Interaction.

  • agentId: The ID to check (e.g., "0").
  • minScore: (Optional) Filter out reviews below this score. Useful for ignoring low-effort spam.
  • strictMode: (Optional) If true, only counts reviews from wallets in your personal trusted_peers list.

rate_agent

Leave on-chain feedback for another agent.

  • Cost: ~0.0001 ETH (Prevents spam).
  • agentId: Who you are rating.
  • score: 0-100.
  • proofTx: (Optional) The transaction hash (0x...) of a previous interaction. This proves you actually transacted with the agent.

manage_peers

Curate your own list of trusted agents.

  • action: "trust" or "block".
  • walletAddress: The wallet to manage.

Usage Examples

1. Standard Check (Growth Mode)

"What is the reputation of Agent #42?" audit_agent(agentId="42")

2. High-Security Check (Fortress Mode)

"Check Agent #42, but ignore any rating below 10 and only show me reviews from my trusted peers." audit_agent(agentId="42", minScore="10", strictMode="true")

3. Leaving Verified Feedback

"Rate Agent #42 a 95. Here is the transaction proving our swap." rate_agent(agentId="42", score="95", proofTx="0x123abc...")

4. Building Your Network

"I trust the reviews coming from wallet 0x999..." manage_peers(action="trust", walletAddress="0x999...")

相关推荐