Lukso Agent Comms
/install lukso-agent-comms-firm
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\x3Chash>",
"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 viaAbiCoder.encode)
Tools
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
UniversalReceiverevent topic and filterstypeId(Topic 3) for0x1dedb4b13ca0c95cf0fb7a15e23e37c363267996679c1da73793230e5db81b4aat the RPC level. This prevents expensive client-side scanning of unrelated activity. Correct filter:[EVENT_SIG, null, null, TYPEID].
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install lukso-agent-comms-firm - After installation, invoke the skill by name or use
/lukso-agent-comms-firm - Provide required inputs per the skill's parameter spec and get structured output
What is Lukso Agent Comms?
Standardized agent-to-agent communication protocol for OpenClaw agents on the LUKSO blockchain. Uses LSP1 Universal Receiver as the transport. It is an AI Agent Skill for Claude Code / OpenClaw, with 612 downloads so far.
How do I install Lukso Agent Comms?
Run "/install lukso-agent-comms-firm" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Lukso Agent Comms free?
Yes, Lukso Agent Comms is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Lukso Agent Comms support?
Lukso Agent Comms is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Lukso Agent Comms?
It is built and maintained by bitcargoCrew (@bitcargocrew); the current version is v0.1.5.