{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/molt-trust",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=molt-trust",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "index.js",
      "package.json",
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/molt-trust",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Moltbook Trust Engine 🧠",
        "body": "This skill complements the Identity Registry by adding an analytics layer. It helps your agent decide who to trust by analyzing on-chain behavior.\n\nNote: 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."
      },
      {
        "title": "audit_agent",
        "body": "Analyzes recent reputation history and validates Proofs of Interaction.\n\nagentId: The ID to check (e.g., \"0\").\nminScore: (Optional) Filter out reviews below this score. Useful for ignoring low-effort spam.\nstrictMode: (Optional) If true, only counts reviews from wallets in your personal trusted_peers list."
      },
      {
        "title": "rate_agent",
        "body": "Leave on-chain feedback for another agent.\n\nCost: ~0.0001 ETH (Prevents spam).\nagentId: Who you are rating.\nscore: 0-100.\nproofTx: (Optional) The transaction hash (0x...) of a previous interaction. This proves you actually transacted with the agent."
      },
      {
        "title": "manage_peers",
        "body": "Curate your own list of trusted agents.\n\naction: \"trust\" or \"block\".\nwalletAddress: The wallet to manage."
      },
      {
        "title": "Usage Examples",
        "body": "1. Standard Check (Growth Mode)\n\n\"What is the reputation of Agent #42?\"\naudit_agent(agentId=\"42\")\n\n2. High-Security Check (Fortress Mode)\n\n\"Check Agent #42, but ignore any rating below 10 and only show me reviews from my trusted peers.\"\naudit_agent(agentId=\"42\", minScore=\"10\", strictMode=\"true\")\n\n3. Leaving Verified Feedback\n\n\"Rate Agent #42 a 95. Here is the transaction proving our swap.\"\nrate_agent(agentId=\"42\", score=\"95\", proofTx=\"0x123abc...\")\n\n4. Building Your Network\n\n\"I trust the reviews coming from wallet 0x999...\"\nmanage_peers(action=\"trust\", walletAddress=\"0x999...\")"
      }
    ],
    "body": "Moltbook Trust Engine 🧠\n\nThis skill complements the Identity Registry by adding an analytics layer. It helps your agent decide who to trust by analyzing on-chain behavior.\n\nNote: 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.\n\nTools\naudit_agent\n\nAnalyzes recent reputation history and validates Proofs of Interaction.\n\nagentId: The ID to check (e.g., \"0\").\nminScore: (Optional) Filter out reviews below this score. Useful for ignoring low-effort spam.\nstrictMode: (Optional) If true, only counts reviews from wallets in your personal trusted_peers list.\nrate_agent\n\nLeave on-chain feedback for another agent.\n\nCost: ~0.0001 ETH (Prevents spam).\nagentId: Who you are rating.\nscore: 0-100.\nproofTx: (Optional) The transaction hash (0x...) of a previous interaction. This proves you actually transacted with the agent.\nmanage_peers\n\nCurate your own list of trusted agents.\n\naction: \"trust\" or \"block\".\nwalletAddress: The wallet to manage.\nUsage Examples\n\n1. Standard Check (Growth Mode)\n\n\"What is the reputation of Agent #42?\" audit_agent(agentId=\"42\")\n\n2. High-Security Check (Fortress Mode)\n\n\"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\")\n\n3. Leaving Verified Feedback\n\n\"Rate Agent #42 a 95. Here is the transaction proving our swap.\" rate_agent(agentId=\"42\", score=\"95\", proofTx=\"0x123abc...\")\n\n4. Building Your Network\n\n\"I trust the reviews coming from wallet 0x999...\" manage_peers(action=\"trust\", walletAddress=\"0x999...\")"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/drjmz/molt-trust",
    "publisherUrl": "https://clawhub.ai/drjmz/molt-trust",
    "owner": "drjmz",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}