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

@kybernesis/arp

v0.10.4

Published

ARP CLI (`arpc`) — one command to connect local agents (KyberBot, OpenClaw, Hermes, etc.) to ARP Cloud. Auto-detects each framework + handoff. Includes a daemon supervisor for running many agents in one background process.

Readme

@kybernesis/arp

arpc — one CLI to connect local AI agents to ARP Cloud.

The bin is arpc (not arp) so it doesn't collide with macOS's built-in /usr/sbin/arp network tool.

Install

npm install -g @kybernesis/arp

…or use it without installing via npx (longer to type, but no global state):

npx @kybernesis/arp <command>

Quick start — one agent (background, recommended)

arpc host add ~/atlas    # tell the supervisor about your agent folder
arpc host start          # daemonise — runs in background, no terminal needed
arpc host status         # confirm
arpc host stop           # graceful shutdown

The daemon logs to ~/.arp/host.log. Each agent's bridge auto-restarts on crash with exponential backoff. Stops cleanly with arpc host stop.

Quick start — many agents

arpc host add ~/atlas
arpc host add ~/nova
arpc host add ~/samantha
arpc host start

One process holds all the bridges. The supervisor reads each folder's arp.json manifest (or legacy identity.yaml for kyberbot) so adding an agent is just arpc host add <folder>.

One agent in foreground (debugging)

cd ~/atlas
arpc           # attaches stdio, Ctrl-C to stop
arpc doctor    # show what would connect, don't actually do it
arpc init      # create / overwrite arp.json (interactive)

Per-agent manifest — arp.json

Each agent folder declares its framework + handoff:

{
  "framework": "kyberbot",            // kyberbot | openclaw | hermes | generic-http
  "handoff": "./arp-handoff.json",    // optional; auto-detected
  "kyberbot": { "root": "." }
}

For a custom agent that exposes any HTTP endpoint:

{
  "framework": "generic-http",
  "handoff": "./arp-handoff.json",
  "generic-http": {
    "url": "http://127.0.0.1:8080/arp",
    "token": "${MY_AGENT_TOKEN}"      // ${ENV_VAR} substitution
  }
}

arpc init will create this for you interactively (or --yes for defaults).

Subcommands cheatsheet

arpc                       connect this folder's agent (foreground)
arpc init [--yes]          create arp.json
arpc doctor                show what would connect; don't open WS
arpc host                  foreground supervisor — runs all agents
arpc host start            daemonise the supervisor
arpc host stop             stop the daemon
arpc host status           daemon + agent list
arpc host list             print configured agents
arpc host add <folder>     add an agent
arpc host remove <folder>  remove an agent
arpc version
arpc help