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

hmm-whatsstatus

v0.1.0

Published

Local-first personal AI agent gateway — unified inbox & execution engine for 20+ messaging platforms with 18 LLM providers

Readme

🦞 hmm-whatsstatus

Local-first personal AI agent gateway for 20+ messaging platforms.

hmm-whatsstatus runs on your own machine (macOS, Linux, Windows) as a TypeScript/Node.js service. It acts as a unified inbox and execution engine — connect all your messaging platforms, route messages through AI agents, and give those agents tools to execute commands, browse the web, draw on canvas, and more.

Architecture

┌─────────────────────────────────────────────────────────────┐
│                    hmm-whatsstatus Gateway                          │
│                                                              │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌────────────┐ │
│  │ Discord  │  │ Telegram │  │  Slack   │  │  WhatsApp  │ │
│  └────┬─────┘  └────┬─────┘  └────┬─────┘  └─────┬──────┘ │
│       │              │             │              │         │
│  ┌────┴──────────────┴─────────────┴──────────────┴──────┐ │
│  │              Message Routing Engine                     │ │
│  │  • Channel + Sender → Agent binding lookup             │ │
│  │  • Session key derivation                              │ │
│  │  • Mention gating & allowlist checks                   │ │
│  └────────────────────────┬───────────────────────────────┘ │
│                           │                                  │
│  ┌────────────────────────┴───────────────────────────────┐ │
│  │              Agent Execution Pipeline                   │ │
│  │  • Load JSONL transcript                               │ │
│  │  • Compaction checkpoints                              │ │
│  │  • LLM completion with fallback chain                  │ │
│  │  • Tool execution with approval gating                 │ │
│  │  • Stream tokens back to channel                       │ │
│  └────────────────────────┬───────────────────────────────┘ │
│                           │                                  │
│  ┌────────────────────────┴───────────────────────────────┐ │
│  │  HTTP API  │  WebSocket  │  Webhooks  │  Control UI    │ │
│  └────────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘

Quick Start

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run setup wizard
pnpm cli setup

# Start the gateway
pnpm cli gateway

# In another terminal, start the control UI
cd packages/control-ui && pnpm dev

CLI Commands

| Command | Description | |---------|-------------| | hmm-whatsstatus gateway | Start the gateway server | | hmm-whatsstatus setup | Interactive setup wizard | | hmm-whatsstatus doctor | Diagnose config and environment | | hmm-whatsstatus channels --list | List configured channels | | hmm-whatsstatus channels --add discord | Add a new channel | | hmm-whatsstatus models --list | List configured agents | | hmm-whatsstatus sessions --list | List chat sessions | | hmm-whatsstatus sessions --reset <key> | Reset a session | | hmm-whatsstatus auth --list-devices | List paired devices | | hmm-whatsstatus bind --list | List channel bindings | | hmm-whatsstatus config --show | Show current config |

Configuration

Config lives at ~/.hmm-whatsstatus/hmm-whatsstatus.json:

{
  "version": 1,
  "gateway": { "host": "127.0.0.1", "port": 18700 },
  "agents": {
    "default": {
      "id": "default",
      "name": "Default Agent",
      "model": { "provider": "openai", "model": "gpt-4o" },
      "fallbackChain": [
        { "provider": "anthropic", "model": "claude-sonnet-4-20250514" },
        { "provider": "groq", "model": "llama-3.3-70b-versatile" }
      ],
      "tools": {
        "bash": { "enabled": true, "approval": "always-require-approval" },
        "fileRead": { "enabled": true, "approval": "owner-only" }
      }
    }
  },
  "defaultAgentId": "default",
  "channels": {
    "discord-1": {
      "id": "discord-1",
      "type": "discord",
      "enabled": true,
      "credentials": { "token": "YOUR_BOT_TOKEN" }
    }
  },
  "bindings": [
    { "channelId": "discord-1", "agentId": "default" }
  ]
}

Supported Channels (14)

| Channel | Protocol | Status | |---------|----------|--------| | Discord | WebSocket Intents | ✅ | | Telegram | Bot API (polling) | ✅ | | Slack | Events API + Socket Mode | ✅ | | WhatsApp | Baileys WebSocket | ✅ | | Matrix | Matrix SDK + E2EE | ✅ | | Signal | signal-cli REST API | ✅ | | iMessage | BlueBubbles API | ✅ | | Feishu/Lark | Open API | ✅ | | IRC | Raw TCP socket | ✅ | | Mattermost | WebSocket API | ✅ | | Google Chat | REST API | ✅ | | Microsoft Teams | Bot Framework | ✅ | | Nextcloud Talk | OCS API | ✅ | | LINE | Messaging API | ✅ |

Supported LLM Providers (17)

| Provider | Type | Streaming | |----------|------|-----------| | OpenAI | Cloud | ✅ | | Anthropic | Cloud | ✅ | | Google Gemini | Cloud | ✅ | | Groq | Cloud | ✅ | | DeepSeek | Cloud | ✅ | | LM Studio | Local | ✅ | | Ollama | Local | ✅ | | Together AI | Cloud | ✅ | | Fireworks AI | Cloud | ✅ | | Replicate | Cloud | ✅ | | Cohere | Cloud | ✅ | | Mistral | Cloud | ✅ | | Perplexity | Cloud | ✅ | | xAI (Grok) | Cloud | ✅ | | AWS Bedrock | Cloud | ✅ | | Azure OpenAI | Cloud | ✅ | | Cloudflare Workers AI | Edge | ✅ |

Agent Tools

| Tool | Description | Default Approval | |------|-------------|-----------------| | bash | Shell command execution | always-require-approval | | browser | Chrome CDP browser control | always-require-approval | | canvas | A2UI JSON canvas drawing | owner-only | | cron | Schedule recurring tasks | always-require-approval | | session_spawn | Spawn sub-agent sessions | owner-only | | image_gen | AI image generation | always-require-approval | | file_read | Read files from workspace | owner-only | | file_write | Write files to workspace | always-require-approval |

Security Model

  • Pairing codes: Unknown senders get a 6-character code, approved via control UI
  • Allowlists: Per-channel sender allowlists
  • Mention gating: In group chats, only respond when @mentioned
  • Device pairing: Mobile/web clients pair via QR code or shared token
  • Token rotation: Device tokens rotate on each WebSocket connect
  • Approval modes: always-require-approval, owner-only, yolo
  • Sandboxing: Docker or SSH sandbox for untrusted agents

Failure Handling

  • Channel disconnect: Outbound replies queued, retried on reconnect
  • Missing transcript: Fresh session started automatically
  • Corrupted config: Falls back to last-known-good snapshot
  • Plugin load errors: Skipped plugin, surfaced in /status
  • Tool timeouts: 30s timeout, escalated to user with retry option
  • Provider failures: Automatic fallback chain with exponential backoff (max 3 retries)

Project Structure

hmm-whatsstatus/
├── packages/
│   ├── core/              # Types, config schema (Zod), utilities
│   ├── cli/               # CLI entry point (commander)
│   ├── gateway/           # HTTP + WebSocket server, routing engine
│   ├── plugin-system/     # Plugin loader, manifest system
│   ├── storage/           # LanceDB + SQLite + JSONL storage
│   ├── security/          # Pairing, allowlists, mention gating
│   ├── tools/             # Agent tools (bash, browser, canvas, etc.)
│   ├── logging/           # Subsystem-tagged logging + OTel
│   ├── voice/             # Voice integration (OpenAI, Gemini, ElevenLabs)
│   ├── control-ui/        # React/Vite control dashboard
│   ├── channel-*/         # 14 channel plugins
│   └── provider-*/        # 17 provider plugins
├── apps/
│   ├── macos/             # Swift macOS menu bar app spec
│   ├── ios/               # Swift iOS app spec
│   └── android/           # Kotlin Android app spec
├── pnpm-workspace.yaml
├── tsconfig.base.json
└── package.json

API Endpoints

| Method | Path | Description | |--------|------|-------------| | GET | /health | Health check | | GET | /status | Full gateway status | | GET | /api/config | Get config (redacted) | | PUT | /api/config | Update config (hot-reload) | | GET | /api/sessions | List sessions | | GET | /api/session/transcript | Get session transcript | | POST | /api/session/reset | Reset a session | | GET | /api/approvals | List pending approvals | | POST | /api/approval/resolve | Approve/deny | | POST | /api/chat/send | Send a chat message | | POST | /api/pairing/generate | Generate pairing code | | POST | /api/pairing/validate | Validate pairing code | | POST | /api/devices/pair | Pair a device | | POST | /gateway/webhook/* | Inbound webhooks |

WebSocket Protocol

Clients connect to ws://127.0.0.1:18700 and authenticate with a device token.

Client → Server: auth, chat:send, chat:approve, canvas:event, voice:start, voice:stop, voice:audio, presence:update, ping

Server → Client: auth:ok, auth:error, chat:token, chat:done, chat:error, approval:required, canvas:update, voice:token, voice:error, presence:update, status:update, pong, error

License

MIT