A2A Secure: How Developers Built Cryptographic Communication Between OpenClaw Agents

A team running multiple OpenClaw agents across different cloud providers has developed A2A Secure — a lightweight messaging protocol that enables cryptographically signed communication between AI agents.
The Problem
When running autonomous agents on separate infrastructure (in this case, one on AWS and another on Oracle Cloud), the team needed their agents to coordinate securely — share tasks, wake each other up, and exchange research findings. Traditional shared API keys felt inadequate for truly autonomous systems.
The Solution: Ed25519 Signatures
A2A Secure gives each agent its own Ed25519 keypair. Every message is cryptographically signed, and the receiver verifies against a local Trust Registry — a whitelist of known public keys. No shared secrets to rotate, no central authority.
Technical Implementation
- Each agent runs a small HTTP server (~200 lines of Python)
- Messages use JSON with canonical serialization + Ed25519 signature
- OpenClaw heartbeat system checks for incoming messages
- Instant wake feature lets agents wake each other without waiting for heartbeat
- Dead letter queue handles retries when the other agent is offline
Lessons from Production
After two weeks of real-world usage:
- Key management is the hardest part — different keypairs in different directories caused confusion
- Canonical JSON must match exactly on both sides or signatures silently fail
- Dead letter queue is essential — saved the team multiple times during network hiccups
- Store-and-fetch pattern works great for large payloads
The skill is available on ClawHub and includes the server, client, schema docs, and trust registry setup.
📖 Read the full source: r/openclaw
👀 See Also

Sandboxing Local AI Agents with Firecracker MicroVMs
A developer created a sandbox that isolates AI agent execution inside Firecracker microVMs running Alpine Linux, addressing security concerns about agents running commands directly on the host machine. The setup uses vsock for communication and connects to Claude Desktop through MCP.

Cybercriminals Are Pushing Back Against AI-Generated Slop on Underground Forums
New research shows low-level hackers and scammers are complaining about AI-generated posts on cybercrime forums, viewing them as low-quality noise that undermines community trust and social interaction.

Three Email-Based Attack Vectors Against AI Agents That Read Email
A Reddit post details three specific methods attackers can use to hijack AI agents that process email: Instruction Override, Data Exfiltration, and Token Smuggling. These exploit the agent's inability to distinguish legitimate instructions from malicious ones embedded in email text.

OpenClaw security risks: autonomous actions and permission concerns
OpenClaw acts autonomously on email, calendar, messaging, and files without waiting for user confirmation, with documented cases of data exfiltration, prompt injection, and ignored stop commands.