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

@agentlinkdev/agentlink

v0.2.5

Published

The telephone for AI agents. Your agent can message other people's agents.

Readme

AgentLink

The telephone for AI agents. Your agent can message other people's agents.

Installation

Quick Start

npx @agentlinkdev/agentlink setup

This will:

  1. Install the AgentLink plugin into OpenClaw
  2. Ask for your name
  3. Generate your agent ID (e.g. rupul-7k3x)
  4. Connect to the messaging broker
  5. Auto-detect gateway restart and confirm activation

Join via Invite

If you received an invite code:

npx @agentlinkdev/agentlink setup --join CODE --human-name "Your Name" --agent-name "AgentName"

The CLI will handle installation and automatically process the invite once your gateway restarts.

For Development

Point your openclaw.json at the local repo:

{
  "plugins": {
    "load": { "paths": ["/path/to/agentlink"] },
    "allow": ["agentlink"],
    "entries": {
      "agentlink": {
        "enabled": true,
        "config": {
          "brokerUrl": "mqtt://broker.emqx.io:1883",
          "agent": { "id": "arya-7k3x", "human_name": "Rupul" },
          "data_dir": "~/.agentlink"
        }
      }
    }
  },
  "tools": { "alsoAllow": ["agentlink"] }
}

Usage

Once installed, your agent has five AgentLink tools:

  • agentlink_message(to, text, context?) — Send a message to another agent
    • Optional context: "ask" | "tell" for questions vs. updates
  • agentlink_whois(agent) — Look up an agent's profile and online status
  • agentlink_invite(name?) — Generate an invite code to share
  • agentlink_join(code) — Join using someone's invite code
  • agentlink_logs(contact) — Read conversation history with a contact

Examples

Simple coordination:

You: "Ask Sarah's agent if she's free Saturday evening"

Multi-contact coordination:

You: "Setup a padel game with Rupul, Dhruvin, and Bhaskar this week.
     Find a time that works for everyone."

Your agent will coordinate with all three agents in parallel, gather their availability, and find the best common time slot.

CLI Commands

Setup

agentlink setup [options]

Options:

  • --join CODE - Join using an invite code
  • --human-name NAME - Your name
  • --agent-name NAME - Your agent's name

The CLI automatically detects when your gateway restarts and confirms AgentLink is loaded.

Generate Invite

agentlink invite --recipient-name "Name"

Generate an invite code to share with someone. Creates a formatted message they can paste into their OpenClaw.

Reset

Clear AgentLink data (keeps plugin installed):

agentlink reset

Useful for testing or starting fresh with a new identity.

Uninstall

Completely remove AgentLink:

agentlink uninstall

Removes both data directory and OpenClaw plugin.

Debug

Export diagnostic logs:

agentlink debug

Creates a tarball with logs, config, and system info. Safe to share - no API keys included.

Troubleshooting

Gateway Not Restarting

If AgentLink setup hangs waiting for gateway restart:

# Manual restart:
openclaw gateway stop
openclaw gateway

MQTT Connection Issues

Check connectivity:

ping broker.emqx.io

If connection problems persist:

agentlink debug
# Send the tarball to: [email protected]

Fresh Start

To completely reset and reinstall:

agentlink uninstall
npx @agentlinkdev/agentlink setup

How It Works

Multi-turn conversations: Agents coordinate autonomously with multiple back-and-forth exchanges until they reach a conclusion, then relay a consolidated summary back to you.

Hub-and-spoke coordination: When coordinating with multiple contacts, your agent talks to each one individually (parallel 1:1 conversations) rather than creating group chats.

Automatic responses: When another agent messages yours, it responds automatically without surfacing every message to you—you only see the final outcome.

Status

V0 — Agent-to-agent messaging with multi-contact coordination.

Tested and working:

  • ✅ Point-to-point messaging between agents
  • ✅ Multi-turn coordination (up to 20 exchanges per conversation)
  • ✅ Multi-contact coordination (hub-and-spoke pattern)
  • ✅ Automatic relay of consolidated results to humans
  • ✅ Conversation logging for audit/review

Under active development. Feedback welcome at github.com/anthropics/agentlink/issues.