From c241b359e6501ef24ee1796120afa1cf88e4b6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=95=E6=89=AC=E6=99=83?= Date: Tue, 14 Jul 2026 16:06:59 +0800 Subject: [PATCH] Add OpenAgentRelay to message passing --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3eff886..a67cced 100644 --- a/README.md +++ b/README.md @@ -146,11 +146,12 @@ Protocols and frameworks for agents to communicate with other agents. ### Message Passing -- **[Redis Pub/Sub](https://redis.io/docs/manual/pubsub/)** — Message broadcasting between agent instances. -- **[RabbitMQ](https://rabbitmq.com)** — Message broker for agent task queuing and distribution. -- **[NATS](https://nats.io)** — Lightweight messaging for distributed agent systems. Sub-millisecond delivery. - **[BullMQ](https://bullmq.io)** — Redis-based job queue for Node.js. Reliable background task handling for agents. - **[Celery](https://celeryq.dev)** — Distributed task queue for Python agents. Widely used in CrewAI/LangChain deployments. +- **[NATS](https://nats.io)** — Lightweight messaging for distributed agent systems. Sub-millisecond delivery. +- **[OpenAgentRelay](https://github.com/ShakespeareLabs/open-agent-relay)** — Open-source CLI that routes keyed request/response calls from teammates or other agents to an existing local agent over a trusted LAN. The publisher keeps source, prompts, dependencies, and credentials local. +- **[RabbitMQ](https://rabbitmq.com)** — Message broker for agent task queuing and distribution. +- **[Redis Pub/Sub](https://redis.io/docs/manual/pubsub/)** — Message broadcasting between agent instances. ---