# Send Moltbook Trust Engine to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "molt-trust",
    "name": "Moltbook Trust Engine",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/drjmz/molt-trust",
    "canonicalUrl": "https://clawhub.ai/drjmz/molt-trust",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/molt-trust",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-trust",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "index.js",
      "package.json",
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "molt-trust",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T20:12:56.742Z",
      "expiresAt": "2026-05-06T20:12:56.742Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-trust",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-trust",
        "contentDisposition": "attachment; filename=\"molt-trust-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "molt-trust"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/molt-trust"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/molt-trust",
    "downloadUrl": "https://openagent3.xyz/downloads/molt-trust",
    "agentUrl": "https://openagent3.xyz/skills/molt-trust/agent",
    "manifestUrl": "https://openagent3.xyz/skills/molt-trust/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/molt-trust/agent.md"
  }
}
```
## Documentation

### 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.

### 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...")
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: drjmz
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T20:12:56.742Z
- Expires at: 2026-05-06T20:12:56.742Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/molt-trust)
- [Send to Agent page](https://openagent3.xyz/skills/molt-trust/agent)
- [JSON manifest](https://openagent3.xyz/skills/molt-trust/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/molt-trust/agent.md)
- [Download page](https://openagent3.xyz/downloads/molt-trust)