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

dexter-ai

v2026.2.22

Published

Dexter — Personal AI assistant with web-based setup wizard

Readme

Dexter — Personal AI Assistant

Dexter is a personal AI assistant you run on your own machine. It answers you on the channels you already use (WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, iMessage, Microsoft Teams, WebChat), plus extension channels like BlueBubbles, Matrix, Zalo, and Zalo Personal. It can speak and listen on macOS/iOS/Android, and can render a live Canvas you control.

Based on OpenClaw, Dexter adds a web-based setup wizard — no terminal needed to get started.

What's different from OpenClaw?

  • Web Setup Wizard — run the gateway in setup mode and a browser-based wizard walks you through API key entry, model selection, and channel configuration. No CLI wizardry required.
  • Auto-opens in browserdexter gateway --setup starts the server and opens the wizard in your default browser.
  • Masked API key input — sensitive fields are rendered as password inputs.
  • Model picker — choose your preferred OpenAI model during setup instead of getting a hardcoded default.
  • Security hardened — setup mode is loopback-only, refuses to run on already-configured gateways without --force, and logs an audit warning.

Install

Runtime: Node >= 22.

Option 1: One-line install (recommended)

curl -fsSL https://raw.githubusercontent.com/Aidendev0x32-lang/Dexter-ai/main/install.sh | bash

This clones, builds, and links the CLI. Installs to ~/.dexter by default.

Option 2: npm

npm install -g dexter-ai@latest
# or
pnpm add -g dexter-ai@latest

Option 3: From source

git clone https://github.com/Aidendev0x32-lang/Dexter-ai.git dexter
cd dexter

pnpm install
pnpm ui:build   # builds the Control UI + setup wizard
pnpm build

Quick start

Option A: Web setup wizard (recommended for first-time setup)

dexter gateway run --setup --port 18789

Your browser opens automatically. The wizard guides you through:

  1. OpenAI API key (masked input)
  2. Model selection
  3. Channel configuration (Telegram, etc.)

Once complete, restart the gateway normally:

dexter gateway run --port 18789

Option B: CLI setup (classic)

dexter onboard --install-daemon
dexter gateway --port 18789 --verbose

How it works

WhatsApp / Telegram / Slack / Discord / Signal / iMessage / Teams / WebChat
               │
               ▼
┌───────────────────────────────┐
│         Dexter Gateway        │
│        (control plane)        │
│      ws://127.0.0.1:18789     │
└──────────────┬────────────────┘
               │
               ├─ Pi agent (RPC)
               ├─ CLI (dexter …)
               ├─ WebChat UI
               ├─ Control UI Dashboard
               ├─ macOS app
               └─ iOS / Android nodes

Highlights

  • Local-first Gateway — single control plane for sessions, channels, tools, and events.
  • Multi-channel inbox — WhatsApp, Telegram, Slack, Discord, Google Chat, Signal, BlueBubbles (iMessage), Microsoft Teams, Matrix, Zalo, WebChat.
  • Multi-agent routing — route inbound channels/accounts/peers to isolated agents.
  • Voice Wake + Talk Mode — always-on speech for macOS/iOS/Android with ElevenLabs.
  • Live Canvas — agent-driven visual workspace with A2UI.
  • First-class tools — browser, canvas, nodes, cron, sessions.
  • Skills platform — bundled, managed, and workspace skills.
  • Web Setup Wizard — browser-based onboarding, no terminal required.

Models

Works with any OpenAI-compatible model. During web setup, you pick your preferred model. After setup, configure models via the Control UI or ~/.openclaw/openclaw.json.

Recommended: Anthropic Claude Opus 4.6 or OpenAI GPT-5.1 for long-context strength.

Security defaults

Dexter connects to real messaging surfaces. Treat inbound DMs as untrusted input.

  • DM pairing (default): unknown senders receive a pairing code; the bot does not process their message until approved.
  • Setup mode: binds to loopback only, auth disabled on 127.0.0.1, refuses to start on non-loopback interfaces.
  • Run dexter doctor to surface risky/misconfigured DM policies.

Chat commands

Send in WhatsApp/Telegram/Slack/WebChat:

| Command | Description | |---------|-------------| | /status | Session status (model + tokens) | | /new or /reset | Reset the session | | /compact | Compact session context | | /think <level> | off|minimal|low|medium|high|xhigh | | /verbose on\|off | Toggle verbose mode | | /usage off\|tokens\|full | Per-response usage footer | | /model <name> | Switch model mid-session | | /mesh <goal> | Auto-plan + run a multi-step workflow | | /restart | Restart the gateway |

Configuration

Config lives at ~/.openclaw/openclaw.json:

{
  "models": {
    "default": "openai/gpt-5.1",
    "allowlist": ["openai/*"]
  },
  "gateway": {
    "port": 18789,
    "auth": { "mode": "token", "token": "your-token-here" }
  },
  "channels": {
    "telegram": { "enabled": true, "token": "BOT_TOKEN" }
  }
}

Full config reference: Configuration

Development

# Dev loop (auto-reload on TS changes)
pnpm gateway:watch

# Run tests
pnpm test

# Type-check
npx tsc --noEmit

# Build UI only
pnpm ui:build

Apps (optional)

The Gateway alone delivers a great experience. All companion apps are optional:

  • macOS — Menu bar control, Voice Wake, push-to-talk, WebChat.
  • iOS — Canvas, Voice Wake, camera, screen recording via node pairing.
  • Android — Canvas, Talk Mode, camera, screen recording via node pairing.

Credits

Dexter is built on top of OpenClaw, an MIT-licensed personal AI assistant platform. All original credit goes to the OpenClaw team.

License

MIT