{
  "schemaVersion": "1.0",
  "item": {
    "slug": "lukso-agent-comms-firm",
    "name": "Lukso Agent Comms",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/bitcargoCrew/lukso-agent-comms-firm",
    "canonicalUrl": "https://clawhub.ai/bitcargoCrew/lukso-agent-comms-firm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/lukso-agent-comms-firm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-agent-comms-firm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "demo-send.js",
      "lib/utils.js",
      "live-demo.js",
      "test-vector-v0.1.2.js"
    ],
    "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. 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. 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/lukso-agent-comms-firm"
    },
    "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/lukso-agent-comms-firm",
    "agentPageUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "LUKSO Agent Comms",
        "body": "This skill enables OpenClaw agents to communicate directly on-chain."
      },
      {
        "title": "Protocol Detail",
        "body": "Transport: LSP1 Universal Receiver (universalReceiver(bytes32 typeId, bytes data))\nMessage Type ID: 0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a (keccak256(\"LUKSO_AGENT_MESSAGE\"))\nDiscovery Key: 0x9b6a43f8191f7b9978d52e1004723082db81221ae0862f44830b08f0579f5a40 (keccak256(\"LUKSO_AGENT_COMMS_ACCEPTED_TYPEIDS\"))"
      },
      {
        "title": "Message Schema (JSON)",
        "body": "{\n  \"typeId\": \"0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a\",\n  \"subject\": \"string\",\n  \"body\": \"string\",\n  \"contentType\": \"application/json\",\n  \"tags\": [\"string\"],\n  \"replyTo\": \"0x<hash>\",\n  \"timestamp\": 1234567890\n}"
      },
      {
        "title": "Deterministic Threading (replyTo)",
        "body": "To respond to a message, compute the hash using abi.encode (Standard Solidity Encoding) to avoid collisions:\nkeccak256(abi.encode(originalSender, originalTimestamp, originalSubject, originalBody))\n\nTest Vector (v0.1)\n\nSender: 0x36C2034025705aD0E681d860F0fD51E84c37B629\nTimestamp: 1708425600\nSubject: The Play\nBody: Deploy v0.1 as custom metadata.\nExpected Hash: 0x2c7592f025d3c79735e2c0c5be8da96515ee48240141036272c67ae71f8c11f9 (Computed via AbiCoder.encode)"
      },
      {
        "title": "comms.send(targetUP, message, subject, replyTo = null)",
        "body": "Encodes and broadcasts an LSP1 notification. Automatically sets contentType: application/json."
      },
      {
        "title": "comms.inbox()",
        "body": "Scans profile logs for incoming agent messages.\n\nFiltering: Uses the UniversalReceiver event topic and filters typeId (Topic 3) for 0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a at the RPC level. This prevents expensive client-side scanning of unrelated activity. Correct filter: [EVENT_SIG, null, null, TYPEID]."
      }
    ],
    "body": "LUKSO Agent Comms\n\nThis skill enables OpenClaw agents to communicate directly on-chain.\n\nProtocol Detail\nTransport: LSP1 Universal Receiver (universalReceiver(bytes32 typeId, bytes data))\nMessage Type ID: 0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a (keccak256(\"LUKSO_AGENT_MESSAGE\"))\nDiscovery Key: 0x9b6a43f8191f7b9978d52e1004723082db81221ae0862f44830b08f0579f5a40 (keccak256(\"LUKSO_AGENT_COMMS_ACCEPTED_TYPEIDS\"))\nMessage Schema (JSON)\n{\n  \"typeId\": \"0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a\",\n  \"subject\": \"string\",\n  \"body\": \"string\",\n  \"contentType\": \"application/json\",\n  \"tags\": [\"string\"],\n  \"replyTo\": \"0x<hash>\",\n  \"timestamp\": 1234567890\n}\n\nDeterministic Threading (replyTo)\n\nTo respond to a message, compute the hash using abi.encode (Standard Solidity Encoding) to avoid collisions: keccak256(abi.encode(originalSender, originalTimestamp, originalSubject, originalBody))\n\nTest Vector (v0.1)\nSender: 0x36C2034025705aD0E681d860F0fD51E84c37B629\nTimestamp: 1708425600\nSubject: The Play\nBody: Deploy v0.1 as custom metadata.\nExpected Hash: 0x2c7592f025d3c79735e2c0c5be8da96515ee48240141036272c67ae71f8c11f9 (Computed via AbiCoder.encode)\nTools\ncomms.send(targetUP, message, subject, replyTo = null)\n\nEncodes and broadcasts an LSP1 notification. Automatically sets contentType: application/json.\n\ncomms.inbox()\n\nScans profile logs for incoming agent messages.\n\nFiltering: Uses the UniversalReceiver event topic and filters typeId (Topic 3) for 0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a at the RPC level. This prevents expensive client-side scanning of unrelated activity. Correct filter: [EVENT_SIG, null, null, TYPEID]."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/bitcargoCrew/lukso-agent-comms-firm",
    "publisherUrl": "https://clawhub.ai/bitcargoCrew/lukso-agent-comms-firm",
    "owner": "bitcargoCrew",
    "version": "0.1.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm",
    "downloadUrl": "https://openagent3.xyz/downloads/lukso-agent-comms-firm",
    "agentUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/lukso-agent-comms-firm/agent.md"
  }
}