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

@ghostcomplex/isotopes

v0.1.0

Published

Lightweight, self-hostable AI agent framework

Readme

Isotopes

A lightweight, self-hostable AI agent framework for multi-agent collaboration across chat platforms.

Quick Start

# Install globally from npm
npm install -g @ghostcomplex/isotopes

# Generate ~/.isotopes/isotopes.yaml (interactive: pick LLM provider + channel)
isotopes init

# Run
export ANTHROPIC_API_KEY=sk-ant-...
isotopes

# Or run as daemon
isotopes start
isotopes status
isotopes stop

From source

git clone https://github.com/GhostComplex/isotopes.git
cd isotopes
pnpm install
pnpm build

node dist/cli.js init
node dist/cli.js

CLI

isotopes                           Run in foreground (default)
isotopes init [--force]            Generate ~/.isotopes/isotopes.yaml (interactive)
isotopes start [--config path]     Start as background daemon
isotopes stop                      Stop the running daemon
isotopes status                    Show daemon status
isotopes restart [--config path]   Restart the daemon
isotopes reload [agentId]          Reload workspace (hot-reload)

isotopes tui [--agent id] [--message "text"]
                                   Interactive TUI chat with an agent

isotopes sessions list             List all sessions
isotopes sessions show <id>        Show session details
isotopes sessions delete <id>      Delete a session
isotopes sessions reset <id>       Reset session history

isotopes cron list                 List scheduled jobs
isotopes cron add <spec> <task>    Add a cron job
isotopes cron remove <id>          Remove a cron job
isotopes cron enable/disable <id>  Enable or disable a job
isotopes cron run <id>             Run a job now

isotopes logs [--lines N] [--level LEVEL] [-f]
                                   View daemon logs

isotopes service install           Install as system service (launchd/systemd)
isotopes service uninstall         Remove system service
isotopes service enable/disable    Enable or disable auto-start on boot

Options:
  -h, --help       Show help
  -v, --version    Show version
  -c, --config     Path to config file
  --agent          Agent ID for tui command
  --message        Send an initial message in TUI mode
  --json           Output as JSON (sessions, cron commands)
  --lines          Number of log lines (default: 50)
  --level          Filter logs by level (debug/info/warn/error)
  -f, --follow     Follow log output

Configuration

# ~/.isotopes/isotopes.yaml

provider:
  type: anthropic                    # anthropic | openai | openai-proxy | anthropic-proxy
  model: claude-opus-4.6
  apiKey: ${ANTHROPIC_API_KEY}

tools:
  cli: false                         # Shell execution (default: off)
  fs:
    workspaceOnly: true              # Restrict file tools to workspace

agents:
  - id: main
    # tools:                         # Per-agent tool overrides
    #   cli: true
    # compaction:
    #   mode: safeguard              # off | safeguard | aggressive
    # sandbox:
    #   mode: non-main              # off | non-main | all

channels:
  discord:
    accounts:
      main:
        token: ${DISCORD_TOKEN}
        defaultAgentId: main
        dmAccess:
          policy: disabled           # disabled (default) | allowlist
          # allowlist:
          #   - "123456789012345678"
        groupAccess:
          policy: allowlist          # disabled | allowlist (default) | open
          # guildAllowlist:
          #   - "guild-id"
          # channelAllowlist:
          #   - "channel-id"

# See isotopes.example.yaml for full options including:
# - Agent bindings (channel + account + peer routing)
# - Feishu transport
# - Cron jobs
# - Sandbox/Docker config

See isotopes.example.yaml for all options.

Running Multiple Instances

Run two isotopes instances on the same machine (e.g., so agents on one instance can fix the code of another). Each instance needs its own bot token, data directory, and API port:

# Instance A
ISOTOPES_HOME=~/.isotopes-a ISOTOPES_PORT=2712 DISCORD_TOKEN=<token-a> isotopes

# Instance B (separate terminal)
ISOTOPES_HOME=~/.isotopes-b ISOTOPES_PORT=2713 DISCORD_TOKEN=<token-b> isotopes

Each instance gets its own config, sessions, logs, and PID file under its ISOTOPES_HOME. Discord connections are outbound WebSockets, so no port conflicts — ISOTOPES_PORT only controls the REST API.

License

MIT