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

@aliceljy/agent-nexus

v0.1.0

Published

One-click installer for RecallNest + telegram-ai-bridge. Shared memory + TG remote for CC/Codex/Gemini.

Readme

agent-nexus

One Command. All Your AI Agents United.

Shared memory + Telegram remote control for Claude Code, Codex, and Gemini CLI -- installed in 60 seconds.

MIT License Bun npm version

English | 简体中文


The Problem

You have Claude Code, Codex, maybe Gemini CLI. They're powerful individually. But right now:

  • They don't share memory. Tell Claude your coding style, Codex has no idea.
  • They can't be controlled remotely. Step away from your desk? Your agents are unreachable.
  • Setting up shared infrastructure is painful. Clone this, configure that, edit three different config files...

You could spend an afternoon installing RecallNest for shared memory, telegram-ai-bridge for remote control, and manually wiring MCP configs for each tool.

Or:

npm i -g @aliceljy/agent-nexus && agent-nexus init

What Happens When You Run init

$ agent-nexus init

  Detecting environment...
  ✅ Bun
  ✅ Claude Code
  ✅ Codex CLI
  ⬚ Gemini CLI (not installed, skipping)

  📝 Credentials

  Telegram Bot Token: ********
  Your Telegram User ID: 123456
  Jina API Key: jina_****

  🔌 Configuring MCP...

  📋 Backed up ~/.claude.json
  ✅ Claude Code MCP configured
  ✅ Codex MCP configured
  ✅ Bridge config generated

  ✅ agent-nexus setup complete!
  Run: agent-nexus start

That's it. Your Claude Code and Codex now share one brain. Your phone is now the remote.

Before / After

| | Before agent-nexus | After agent-nexus | |---|---|---| | Memory | Each agent starts from zero every session | All agents share persistent memory via RecallNest | | Remote control | Must be at your desk | Full control from Telegram on your phone | | Setup time | 30+ min (clone, configure, debug MCP paths...) | 60 seconds | | Config files to edit | 3-5 (per tool, per service) | 0 (auto-injected) | | Processes to manage | Start each service manually | agent-nexus start / stop |

Install

npm i -g @aliceljy/agent-nexus

Requires Bun >= 1.3 and at least one of: Claude Code, Codex CLI, or Gemini CLI.

Usage

agent-nexus init      # Interactive wizard -- detects tools, collects keys, writes all configs
agent-nexus start     # Start RecallNest + Telegram bridge in background
agent-nexus stop      # Stop all services
agent-nexus status    # Health check with memory stats

How It Works

                    agent-nexus init
                         |
          +--------------+--------------+
          |              |              |
     ~/.claude.json  ~/.codex/     ~/.gemini/
     (MCP injected)  config.toml   settings.json
          |              |              |
          v              v              v
     Claude Code     Codex CLI    Gemini CLI
          |              |              |
          +------+-------+------+------+
                 |              |
            RecallNest    telegram-ai-bridge
            (memory)      (remote control)
                 |              |
            LanceDB         Telegram
          (your brain)    (your phone)

agent-nexus doesn't replace anything. It's the glue that makes your existing tools work as a team.

What Gets Installed

| Component | What It Does | Already Have It? | |-----------|-------------|-----------------| | RecallNest | Shared memory across all agents (MCP + HTTP API) | Keeps yours, adds if missing | | telegram-ai-bridge | Telegram remote control for AI agents | Keeps yours, adds if missing | | MCP configs | RecallNest auto-registered in each tool | Non-destructive merge (backup first) |

Prerequisites

Config

All configuration lives in one place: ~/.agent-nexus/config.json

{
  "telegram": { "botToken": "...", "ownerId": 123456 },
  "memory": { "jinaApiKey": "...", "dbPath": "~/.recallnest/data/lancedb" },
  "agents": { "claude": true, "codex": true, "gemini": false }
}

Ecosystem

agent-nexus is the installer for a larger ecosystem of AI agent tools:

| Project | Role | Stars | |---------|------|-------| | RecallNest | Shared memory layer (LanceDB + hybrid retrieval) | GitHub stars | | telegram-ai-bridge | Telegram remote control + multi-agent orchestration | GitHub stars | | Claude Code Studio | Multi-session collaboration platform for Claude Code | GitHub stars |

License

MIT