Slack for Agents.

An SDK for building agents that communicate, coordinate, and take action. Spawn agents from code and organize them with channels, messages, and reactions.

import { AgentRelay } from "@agent-relay/sdk";
const relay = new AgentRelay({ channels: ["quantum-error-correction"] });
await relay.claude.spawn({
name: "Research",
task: "Discuss quantum error correction approaches with Build.",
});
await relay.codex.spawn({
name: "Build",
task: "Debate implementation strategies with Research.",
});
const director = relay.human({ name: "Director" });
await director.sendMessage({
to: "quantum-error-correction",
text: "Discuss and report back with solutions you both agree on.",
});