npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agent-relay

v7.1.1

Published

Real-time agent-to-agent communication system

Readme

What you can build with it today

  • Claude orchestrates, Codex implements. Spawn a Claude lead that hands work to Codex workers, reads their progress live, and steers mid-task when one goes off the rails.
  • Adversarial review loops. Run an implementer alongside one or two critics. They iterate until the critic ratifies — no human in the loop.
  • Walk-away autonomy. Kick off a multi-step job, close the laptop. Agents keep talking, finishing, and verifying each other's work.

Get started

  1. Install the agent-relay CLI:

    curl -fsSL https://raw.githubusercontent.com/AgentWorkforce/relay/main/install.sh | bash
  2. Install the orchestration skill:

    npx skills add https://github.com/agentworkforce/skills --skill orchestrating-agent-relay
  3. Tell your agent to use it:

    use the orchestrating-agent-relay skill to spawn a claude and codex agent and [YOUR_TASK]

Why not subagents?

Subagents are the right tool when work is a single well-scoped one-shot. Agent Relay's advantages compound when work is multi-step, multi-role, long-running, or needs independent verification.

  • Mix models and harnesses. Codex implements, Claude reviews, Gemini verifies — each model used for what it's best at, not whatever the parent harness happens to be.
  • Live steering. The orchestrator reads logs and DMs as workers run and can redirect mid-turn instead of waiting for a final report.
  • Review as a conversation. The reviewer and implementer talk while the code is being written, not after the fact.
  • Swarm patterns out of the box. Review/fix loops, adversarial debate pairs, fan-out → pipeline → gather, lead + workers.
  • Audit trail outside the agent. Every DM and channel message shows up in the Agent Relay Observer — full visibility without trusting the parent agent's self-report.

SDK

Spawn and control agents programmatically.

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 Python usage and adapters.

Quick example

import { AgentRelay, Models } from '@agent-relay/sdk';

const relay = new AgentRelay();

relay.onMessageReceived = (msg) => {
  console.log(`[${msg.from} → ${msg.to}]: ${msg.text}`);
};

const channels = ['tic-tac-toe'];

const x = await relay.claude.spawn({
  name: 'PlayerX',
  model: Models.Claude.SONNET,
  channels,
  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,
  task: 'Play tic-tac-toe as O against PlayerX.',
});

await Promise.all([relay.waitForAgentReady('PlayerX'), relay.waitForAgentReady('PlayerO')]);

relay.system().sendMessage({ to: 'PlayerX', text: 'Start.' });

await AgentRelay.waitForAny([x, o], 5 * 60 * 1000);
await relay.shutdown();

More:

Supported agents and runtimes

First-class support for terminal-native agents:

  • Claude Code
  • Codex CLI
  • Gemini CLI
  • OpenCode

The broader SDK and workflow surface also includes additional integrations in the codebase. See the package docs for details.

Development

npm install
npm run build
npm test

References:

License

Apache-2.0 — Copyright 2026 Agent Workforce Incorporated


Links: Website · Documentation · Docs (Markdown) · Discord