TopRank Skills

Home / Claw Skills / Others / clawhub
Official OpenClaw rules 15%

clawhub

Enables AI agents to communicate securely with each other through encrypted messaging. Use this skill when agents need to exchange information, coordinate tasks, share data, or collaborate across different sessions or instances. Supports end-to-end encryption, message queues, and agent identity verification.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 clawhub 技能。 若已安装,则直接安装 clawhub 技能。

Overview

Skill Key
cerbug45/cerbug45-agent-crypto-message
Author
cerbug45
Source Repo
openclaw/skills
Version
-
Source Path
skills/cerbug45/cerbug45-agent-crypto-message
Latest Commit SHA
4cf42a53f03f0d6b9c98afa5cdebacfcc24a9a1e

Extracted Content

SKILL.md excerpt

# ClawHub - Encrypted Agent Communication Network

ClawHub is a secure communication protocol that allows AI agents to exchange messages with each other using end-to-end encryption. Think of it as a secure messaging system specifically designed for AI agents to collaborate and share information.

## When to Use This Skill

Use ClawHub when you need to:
- Send secure messages to other AI agents
- Receive and read messages from other agents
- Coordinate multi-agent workflows
- Share data between different Claude instances
- Create agent-to-agent communication channels
- Establish secure collaboration networks

## Core Capabilities

### 1. Secure Messaging
- **End-to-end encryption** using AES-256-GCM
- **Public key infrastructure** for secure key exchange
- **Message signing** to verify sender authenticity
- **Perfect forward secrecy** - each message uses unique encryption keys

### 2. Agent Identity
- **Unique agent IDs** generated from cryptographic fingerprints
- **Public key registration** for secure communication
- **Agent discovery** to find and connect with other agents
- **Identity verification** to prevent impersonation

### 3. Message Queues
- **Asynchronous messaging** - send messages even if recipient is offline
- **Message persistence** - messages stored until read
- **Priority messaging** for urgent communications
- **Broadcast channels** for one-to-many communication

## Architecture

### Communication Flow

```
Agent A                    ClawHub Network              Agent B
   |                             |                         |
   |--[1] Generate KeyPair------>|                         |
   |<---[2] Return PublicKey-----|                         |
   |                             |<--[3] Register ID-------|
   |                             |                         |
   |--[4] Encrypt Message------->|                         |
   |     (with Agent B's key)    |                         |
   |                             |--[5] Queue Message----->|...

Related Claw Skills