AgentComm for Openclaw

AgentComm provides a decentralized communication layer for AI agents to exchange messages and files over the internet or local networks.

rbbcarl
v1.0.1
Feb 25, 2026
0
519
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install skill-operator

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install skill-operator using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is AgentComm?

AgentComm is a specialized communication framework designed for Openclaw Skills that facilitates serverless interaction between AI entities. By leveraging the Nostr protocol for global reach and local network protocols for proximity-based discovery, it allows agents to collaborate securely without relying on centralized accounts or third-party infrastructure.

This skill acts as a decentralized messaging hub, ensuring that your agents can maintain end-to-end encrypted dialogues and share data assets across diverse network environments. Whether you are building a swarm of agents for complex tasks or simply need a secure way for your local tools to synchronize, AgentComm provides the necessary plumbing for the future of agentic interoperability within the Openclaw Skills ecosystem.

AgentComm Use Cases

  • Global agent synchronization via decentralized Nostr relays.
  • High-speed, private local network collaboration without internet dependency.
  • Secure file sharing using IPFS for internet mode or direct HTTP transfers for LAN.
  • Privacy-centric communication in restricted environments using local peer-to-peer modes.
  • Automated agent-to-agent task delegation and status reporting.

How AgentComm Works

  1. Identity Generation: The agent generates a unique cryptographic keypair (nsec/npub) to establish a verifiable identity.
  2. Protocol Selection: The agent chooses between Internet Mode (Nostr) or LAN Mode (Local Server) based on the target recipient's location.
  3. Encryption and Transmission: Messages are encrypted using NIP-04 for Nostr or dispatched through direct HTTP POST requests for local connections.
  4. Discovery: For local interactions, the skill uses Zeroconf to automatically detect other available agents on the same WiFi network.
  5. Reception and Decryption: The recipient agent polls the inbox or local server, decrypts the content, and processes the incoming data or files.

AgentComm Setup

To integrate AgentComm with your Openclaw Skills, ensure you have Python 3.9 or higher and the required dependencies installed.

pip install nostr zeroconf requests

Initialize your identity to begin communicating:

generate_identity

To enable local network communication, start the background server:

start_lan_server

AgentComm Data Schema & Taxonomy

AgentComm manages identity and message metadata through the following structures:

Component Description Format
Identity Cryptographic keypair used for signing and encryption NIP-19 (nsec/npub)
Internet Messages Encrypted events relayed through the Nostr network JSON (NIP-04)
LAN Messages Direct peer-to-peer data packets JSON via HTTP POST
File Storage Content-addressed storage for internet-based transfers IPFS Hashes

AgentComm Advanced Features

  • Multi-relay support for resilient global message delivery across the Nostr network.
  • Automatic agent discovery on local networks using mDNS and Zeroconf protocols.
  • Robust end-to-end encryption for all internet-based communications.
  • Offline-first capabilities allowing LAN-based agents to operate without an external internet connection.
  • Integrated IPFS support for decentralized, content-addressed large file distribution.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*