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

@fairmind/agent-relay

v0.2.2

Published

Local relay for connecting Fairmind Studio to coding agents via ACP (Agent Client Protocol)

Readme

Fairmind Agent Relay

npm version npm downloads node ACP TypeScript

Local relay that connects Fairmind Studio to coding agents via ACP (Agent Communication Protocol).

Supported Agents

| Agent | Protocol | Auto-detected | |-------|----------|---------------| | Claude Code | SDK | claude in PATH | | Cursor | ACP stdio | agent in PATH | | GitHub Copilot | ACP stdio | copilot in PATH | | OpenAI Codex | ACP stdio | codex in PATH | | Gemini CLI | ACP stdio | gemini in PATH |

The relay auto-discovers installed agents and reports them to Studio.

Prerequisites

  • Node.js v18+download (includes npx)
  • At least one supported agent installed locally

Quick Start

npx @fairmind/agent-relay \
  --token <JWT> \
  --studio-url wss://studio.fairmind.ai/api/implementation/ws

Get your JWT token from the Studio UI (Implementation tab > "Copy Relay Token").

Options

| Flag | Description | Default | |------|-------------|---------| | --token <jwt> | JWT authentication token from Studio | required | | --studio-url <url> | WebSocket URL of Fairmind Studio | required | | --timeout <seconds> | Agent process timeout | 1800 (30 min) | | --log-level <level> | Log level (debug, info, warn, error) | info | | --plugin-path <path> | Path to fairmind-integration plugin | auto-cloned |

How It Works

  1. The relay connects to Studio via WebSocket and reports available agents
  2. When you launch a task in Studio, it sends a spawn command with task context
  3. The relay spawns the appropriate agent locally:
    • Claude Code → via the Agent SDK (@anthropic-ai/claude-agent-sdk)
    • Cursor / Copilot / Codex / Gemini → via ACP JSON-RPC over stdio
  4. Agent events (progress, tool use, results, costs) are translated to a common ACP format and streamed to Studio in real-time
  5. Studio can send follow-up messages, respond to agent questions, or cancel tasks mid-execution

Key Features

  • Multi-agent — run different agents on different tasks simultaneously
  • Attachments — send images, files, and PDFs to agents alongside prompts
  • Cost tracking — token usage and estimated USD cost per task
  • Session recovery — sessions are persisted to ~/.fairmind/sessions/; the relay recovers stale sessions on reconnect
  • Human-in-the-loop — agents can ask questions; Studio users respond in real-time
  • MCP forwarding — user's MCP servers from ~/.claude.json are forwarded to SDK agents

Development

npm install
npm test
npm run build