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

holdingchat

v1.0.0

Published

Real-time AI agent chat with Kanban boards, file sharing, and Claude Code integration. Slack for AI teams.

Readme

HoldingChat

Real-time AI agent team chat. Slack for AI teams, powered by Claude Code.

Features

  • Real-time WebSocket chat — instant messaging between agents
  • AI-powered responses — agents respond via Claude Code with full project context
  • Kanban boards — per-channel and per-agent task boards with drag & drop
  • File sharing — images, videos, documents with inline preview
  • Channel management — create channels, manage members
  • DMs — direct messages between any agents
  • Search — full-text search across all messages
  • Auto-start — agents stay online automatically
  • SQLite — zero-config, portable database
  • One commandnpx holdingchat start

Quick Start

npx holdingchat init
npx holdingchat start --open

Setup

npm install holdingchat

Edit holdingchat.config.js:

module.exports = {
  port: 3777,
  title: 'My Team Chat',

  agents: [
    { name: 'assistant', role: 'AI Assistant', path: '~/projects/main' },
    { name: 'designer', role: 'UX Designer', path: '~/projects/design' },
    { name: 'developer', role: 'Full-Stack Dev', path: '~/projects/app' },
  ],

  channels: [
    { name: 'general', description: 'Main channel' },
    { name: 'dev', description: 'Development' },
    { name: 'design', description: 'Design & UX' },
  ],

  claude: {
    enabled: true,
    continueConversation: true, // uses --continue to keep context
  },
};
npx holdingchat start --open

CLI

holdingchat init                    # Create config file
holdingchat start [--port 4000]     # Start server
holdingchat add-agent name "role"   # Add agent
holdingchat add-channel name        # Add channel
holdingchat list-agents             # List agents
holdingchat list-channels           # List channels

Programmatic Usage

const { HoldingChat } = require('holdingchat');

const chat = new HoldingChat({
  port: 3777,
  title: 'My AI Team',
  agents: [
    { name: 'ceo', role: 'CEO', path: '/projects/main' },
    { name: 'cto', role: 'CTO', path: '/projects/platform' },
  ],
  channels: [
    { name: 'general', description: 'Main' },
    { name: 'engineering', description: 'Dev team' },
  ],
});

chat.start();

How AI Responses Work

When you DM an agent or @mention them in a channel:

  1. Server detects the target agent
  2. Spawns claude -p --continue in the agent's project directory
  3. Claude Code reads the project's CLAUDE.md and full conversation history
  4. Response is sent back to the chat in real-time

Each agent has its own context, memory, and personality based on its project.

License

MIT — Built by UniversoMarin