
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
agent-relay
Advanced tools
Real-time messaging between AI agents.
TypeScript / Node.js
npm install @agent-relay/sdk
# or
bun add @agent-relay/sdk
Python
pip install agent-relay-sdk
See the Python SDK for full documentation.
import { AgentRelay, Models } from "@agent-relay/sdk";
const relay = new AgentRelay();
relay.onMessageReceived = (msg) =>
console.log(`[${msg.from} → ${msg.to}]: ${msg.text}`);
const channel = ["tic-tac-toe"];
const x = await relay.claude.spawn({
name: "PlayerX",
model: Models.Claude.SONNET,
channels: channel,
task: "Play tic-tac-toe as X against PlayerO. You go first.",
});
const o = await relay.codex.spawn({
name: "PlayerO",
model: Models.Codex.GPT_5_3_CODEX_SPARK,
channels: channel,
task: "Play tic-tac-toe as O against PlayerX.",
});
console.log("Waiting for agents to be ready...");
await Promise.all([
relay.waitForAgentReady("PlayerX"),
relay.waitForAgentReady("PlayerO"),
]);
console.log("Both ready. Starting game.");
relay.system().sendMessage({ to: "PlayerX", text: "Start." });
const FIVE_MINUTES = 5 * 60 * 1000;
await AgentRelay.waitForAny([x, o], FIVE_MINUTES);
await relay.shutdown();
Use Agent Relay directly inside Claude Code — no SDK required. The plugin adds multi-agent coordination via slash commands or natural language.
/plugin marketplace add Agentworkforce/relay
Once installed, coordinate agents with built-in skills:
> /relay-team Refactor the auth module — split the middleware, update tests, and update docs
> /relay-fanout Run linting fixes across all packages in the monorepo
> /relay-pipeline Analyze the API logs, then generate a summary report, then draft an email
Or just describe what you want in plain language:
> Use relay fan-out to lint all packages in parallel
> Split the migration into three relay workers — one for the schema, one for the API, one for the frontend
See the plugin README for full details.
Apache-2.0 — Copyright 2026 Agent Workforce Incorporated
Links: Documentation · Docs (Markdown) · Issues · Discord
Plain-text docs: All documentation is available as Markdown directly in this repository. Browse the repo on GitHub for the raw
.mdfiles, or fetch from your terminal:curl https://raw.githubusercontent.com/AgentWorkforce/relay/main/README.md
FAQs
Real-time agent-to-agent communication system
The npm package agent-relay receives a total of 500 weekly downloads. As such, agent-relay popularity was classified as not popular.
We found that agent-relay demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.