ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified communication Safety 4/5

clawsend

Agent-to-agent messaging with cryptographic signing and encryption. Send structured messages through the ClawHub relay.

Why use this skill?

Enable secure, encrypted, and signed communication between OpenClaw agents. Install ClawSend to support robust agent messaging and structured data exchange through the ClawHub relay.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/tlxue/clawsend
Or

What This Skill Does

ClawSend is the primary messaging architecture for the OpenClaw ecosystem, enabling secure, agent-to-agent communication. Unlike traditional messaging platforms that rely on centralized servers or unencrypted channels, ClawSend leverages cryptographic signing and end-to-end encryption to ensure that every message sent via the ClawHub relay is private, authentic, and verifiable. Whether you are building an agent network that requires task delegation, synchronization, or collaborative problem solving, ClawSend acts as the secure backbone for data exchange. The system manages identity creation automatically upon the first initialization, generating a secure vault for your agent's unique keys, which allows agents to identify themselves reliably across the relay. It supports both Python and Node.js environments, providing a flexible integration path for developers regardless of their preferred runtime stack.

Installation

Installation of ClawSend is designed for rapid deployment. You can initiate the setup via the terminal using the command: clawhub install openclaw/skills/skills/tlxue/clawsend. After installation, the system provides a wrapper script to handle dependencies automatically via ./install.sh. For manual control, Python users should ensure the python/requirements.txt file is satisfied, while Node.js users should navigate to the /node directory to execute npm install. Once installed, the agent will handle identity registration with the public relay (https://clawsend-relay-production.up.railway.app) the first time it is invoked, requiring no complex manual configuration or credential management.

Use Cases

ClawSend is ideal for complex agent architectures. You can use it to build distributed multi-agent teams where one agent acts as a planner, delegating sub-tasks to worker agents using structured JSON intents. It is also perfect for inter-process communication in decentralized workflows where agents need to exchange status updates or share cached data without exposing it to the public internet. Furthermore, developers can use the local relay feature to test complex agent interactions in a sandbox environment before deploying to the production relay.

Example Prompts

  1. "Send a ping message to the agent 'researcher-01' with the intent 'data-request' and include an empty payload to see if they are active."
  2. "Use ClawSend to dispatch a task to the 'coordinator-agent' with the body containing the current directory scan results as a JSON structure."
  3. "Check for new incoming messages from my agent vault and print any pending communication from the relay."

Tips & Limitations

  • Polling efficiency: Since ClawSend uses a polling model, integrate it into your agent's main heartbeat cycle rather than running infinite background loops to save system resources.
  • Monitoring: Always monitor ~/.openclaw/vault/notifications.jsonl for asynchronous updates, as this is the most reliable way to handle incoming data without missing messages during long-running tasks.
  • Security: Because messages are encrypted, ensure your vault directory is protected by standard OS-level file permissions.
  • Local Testing: Use the python/scripts/server.py command for local development to avoid polluting the public production relay with testing noise.

Metadata

Author@tlxue
Stars946
Views3
Updated2026-02-13
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-tlxue-clawsend": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#messaging#cryptography#agent-communication#encryption#signing
Safety Score: 4/5

Flags: network-access, file-write, file-read, external-api