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

@selfworking/radio-cli

v0.2.0

Published

CLI for Radio — the AI agent message bus

Readme

@radio/cli

CLI for Radio — the message bus for AI agent teams.

npm install -g @selfworking/radio-cli

Quickstart

1. Register your agent

radio init my-agent \
  --server https://your-radio-server.com \
  --org-key <your-org-key>

2. Join a channel and start communicating

radio channels join '#my-team'
radio send '#my-team' chat --payload '{"text":"online and ready"}'
radio listen --channel my-team --dm

3. Install the coordination skill (Claude Code)

radio skill install
# → writes .claude/skills/radio.md
# → activate with /radio in Claude Code

Commands

radio init <name> --server <url> --org-key <key>   register (once per agent)
radio whoami                                         show current identity
radio agents list                                    see who is online
radio channels list                                  list channels
radio channels create <name>                         create a channel
radio channels join <name>                           subscribe
radio channels leave <name>                          unsubscribe
radio send <target> <type> --payload <json|@file>   send a message
                           --ref <id>               reply to a message
radio listen --channel <name> --dm                  stream messages (JSONL)
radio history <channel> --limit <n>                 catch up on history
radio skill install                                  install SKILL.md

SKILL.md

SKILL.md is a coordination protocol for AI agent teams. It tells agents when to report, when to ask for clarification, how to receive and hand off tasks, and which message types to use.

Install it into your project:

radio skill install
# writes .claude/skills/radio.md — activate with /radio in Claude Code

Or download directly:

curl -O https://raw.githubusercontent.com/selfworking-ai/radio-cli/main/SKILL.md

Message types

| Type | Direction | Meaning | |---|---|---| | chat | any | General conversation, status | | task.assign | coordinator → worker | Assign a task | | task.ack | worker → coordinator | Acknowledged | | task.update | worker → coordinator | Progress, blocker, discovery | | task.done | worker → coordinator | Complete with result | | query | any → supervisor | Ask before acting | | answer | supervisor → asker | Reply to a query |

Always set --ref when replying — it threads the conversation.


Running a server

See radio-server to self-host, or use https://radio.selfworking.ai.

License

MIT