ARP: Stateless WebSocket Relay for Autonomous Agent Communication

ARP (Agent Relay Protocol) is a stateless WebSocket relay designed for communication between autonomous agents. The protocol provides a lightweight infrastructure layer for agents to exchange messages without maintaining persistent server-side state.
Technical Specifications
The protocol implements several specific technical features:
- Ed25519 identity: Uses Ed25519 digital signatures for agent authentication and identity verification
- HPKE encryption: Implements Hybrid Public Key Encryption as defined in RFC 9180 for secure message transmission
- Binary TLV framing: Uses Type-Length-Value binary framing for efficient message structure
- 33 bytes overhead per message: Minimal protocol overhead for efficient communication
Deployment and Usage
The system requires no accounts or registration process. Developers can immediately start using it by:
- Generating a cryptographic keypair
- Connecting to the WebSocket relay endpoint
For developers working with autonomous agents, stateless relays like ARP provide a practical solution for agent-to-agent communication without the complexity of managing persistent connections or server-side session state. The combination of modern cryptographic standards (Ed25519 and HPKE) with minimal overhead makes this suitable for performance-sensitive agent applications.
The project is available at arp.offgrid.ing with source code on GitHub.
📖 Read the full source: r/openclaw
👀 See Also

Super Claude browser extension makes Claude.ai UI fully customizable
A developer built a browser extension that lets users customize every aspect of Claude.ai's interface — colors, fonts, layout, plus usage tracking and token counting. The extension works on Chrome and Firefox and was developed using Claude itself.

Open Brain: Open-source MCP server adds persistent memory with auto-graph and semantic search to Claude
Open Brain is an open-source MCP server that gives Claude persistent memory across sessions with automatic entity extraction, semantic deduplication, and auto-graphing of connections between thoughts. It uses Supabase with pgvector and Deno Edge Functions, is self-hostable, and includes 16 MCP tools for graph traversal, entity browsing, and weekly review synthesis.

Reduce AI Coding Session Costs by 90% with Graph-Based Code Indexing
A developer built a local graph database that indexes a codebase using LLM-generated summaries, cutting Claude Code session costs from $6-10 to cents by avoiding redundant file re-reads.

Pali v0.1: Open Source Memory Infrastructure for LLMs with Reproducible Benchmarks
Pali is an open source memory infrastructure for LLMs built in Go as a single binary with multi-tenant APIs, hybrid retrieval, and plug-and-play extensions. The v0.1 release includes a benchmark suite with reproducible results showing performance metrics for different configurations.