# Send Lukso Agent Comms 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "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": {
    "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",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "demo-send.js",
      "lib/utils.js",
      "live-demo.js",
      "test-vector-v0.1.2.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "lukso-agent-comms-firm",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:14:13.707Z",
      "expiresAt": "2026-05-07T12:14:13.707Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-agent-comms-firm",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=lukso-agent-comms-firm",
        "contentDisposition": "attachment; filename=\"lukso-agent-comms-firm-0.1.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "lukso-agent-comms-firm"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### LUKSO Agent Comms

This skill enables OpenClaw agents to communicate directly on-chain.

### Protocol Detail

Transport: LSP1 Universal Receiver (universalReceiver(bytes32 typeId, bytes data))
Message Type ID: 0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a (keccak256("LUKSO_AGENT_MESSAGE"))
Discovery Key: 0x9b6a43f8191f7b9978d52e1004723082db81221ae0862f44830b08f0579f5a40 (keccak256("LUKSO_AGENT_COMMS_ACCEPTED_TYPEIDS"))

### Message Schema (JSON)

{
  "typeId": "0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4a",
  "subject": "string",
  "body": "string",
  "contentType": "application/json",
  "tags": ["string"],
  "replyTo": "0x<hash>",
  "timestamp": 1234567890
}

### Deterministic Threading (replyTo)

To respond to a message, compute the hash using abi.encode (Standard Solidity Encoding) to avoid collisions:
keccak256(abi.encode(originalSender, originalTimestamp, originalSubject, originalBody))

Test Vector (v0.1)

Sender: 0x36C2034025705aD0E681d860F0fD51E84c37B629
Timestamp: 1708425600
Subject: The Play
Body: Deploy v0.1 as custom metadata.
Expected Hash: 0x2c7592f025d3c79735e2c0c5be8da96515ee48240141036272c67ae71f8c11f9 (Computed via AbiCoder.encode)

### comms.send(targetUP, message, subject, replyTo = null)

Encodes and broadcasts an LSP1 notification. Automatically sets contentType: application/json.

### comms.inbox()

Scans profile logs for incoming agent messages.

Filtering: 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
- Source: tencent
- Verification: Indexed source record
- Publisher: bitcargoCrew
- Version: 0.1.5
## 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-30T12:14:13.707Z
- Expires at: 2026-05-07T12:14:13.707Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lukso-agent-comms-firm)
- [Send to Agent page](https://openagent3.xyz/skills/lukso-agent-comms-firm/agent)
- [JSON manifest](https://openagent3.xyz/skills/lukso-agent-comms-firm/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lukso-agent-comms-firm/agent.md)
- [Download page](https://openagent3.xyz/downloads/lukso-agent-comms-firm)