π¦ ClawHub
Agent Comm Skill
by @404-unknow
Enables DID registration, cryptographic signing, verification, Relay connection, and end-to-end encryption for secure AI agent communication.
TERMINAL
clawhub install agent-comm-skillπ About This Skill
Agent Communication Skill (PassDeck)
This skill provides the security and networking foundation for AI Agent swarms. It handles DID (Decentralized Identity) registration, cryptographically secure signing using Ed25519, and E2EE (End-to-End Encryption) for sensitive data.
π Key Actions
agent.register
{ alias?: string }{ localId: string, did: string, publicKey: hex }message.sign
{ localId: string, payload: any }{ signature: hex }message.verify
{ publicKeyHex: string, payload: any, signatureHex: string }{ verified: boolean }network.connect
{ sessionId: string, localId: string, did: string, onUpdate: function }{ success: true }secret.encrypt / secret.decrypt
{ payload/ciphertext: any, sessionKey: string }{ ciphertext/decrypted: any }