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

reeboot

v2.5.0

Published

Personal AI agent running locally, reachable via WhatsApp, Signal, or WebChat

Readme

reeboot

Your personal AI agent. Runs locally. Talks to you from anywhere.


Install

npm install -g reeboot

Requires Node.js ≥ 22.


First Run

reeboot init

Run reeboot init once after installing. The setup wizard walks you through:

  1. Provider — local-first: Ollama, llama.cpp, LM Studio, Custom endpoint, or cloud: Anthropic, OpenAI, Google, Groq, Mistral, xAI, OpenRouter
  2. API key — for cloud providers (skipped for local)
  3. Model — fetched live from the provider API, with a static fallback list; every menu has an "Enter custom value..." escape hatch
  4. Agent name — defaults to Reeboot
  5. Channels — optionally link WhatsApp or Signal inline
  6. Web search — choose a search backend (DuckDuckGo, Brave, Tavily, Serper, Exa, SearXNG, or none)
  7. Start now? — optionally launch the agent immediately after setup

Config is saved to ~/.reeboot/config.json. If you exit early, nothing is saved.

Note: reeboot and reeboot start will error if no config exists — run reeboot init first.

To re-run setup at any time:

reeboot setup

Minimal Config

~/.reeboot/config.json — all fields are optional; these are the most common:

{
  "agent": {
    "name": "Reeboot",
    "model": {
      "authMode": "own",
      "provider": "anthropic",
      "id": "claude-sonnet-4-5",
      "apiKey": "sk-ant-..."
    }
  },
  "channels": {
    "web": { "enabled": true, "port": 3000 },
    "whatsapp": { "enabled": false },
    "signal": {
      "enabled": false,
      "phoneNumber": "+15551234567",
      "apiPort": 8080
    }
  },
  "search": {
    "provider": "duckduckgo"
  },
  "capabilities": {
    "externalToolCap": 50
  }
}

Full configuration reference → docs/configuration/reference.md


CLI Reference

reeboot init              First-run setup wizard (run this once after installing)
reeboot                   Start agent (errors if no config — run `reeboot init` first)
reeboot start             Start the agent server
reeboot start --daemon    Run as a background service (launchd / systemd)
reeboot stop              Stop the running daemon
reeboot setup             Re-run the setup wizard
reeboot status            Show agent and channel status
reeboot doctor            Pre-flight diagnostics
reeboot reload            Hot-reload extensions and skills
reeboot restart           Gracefully restart the agent

reeboot logs              Tail the log file
reeboot logs --follow     Live-stream logs (SSE)
reeboot logs --level warn Minimum log level to show

reeboot install <pkg>     Install a pi-compatible package
reeboot uninstall <name>  Uninstall a package
reeboot packages list     List installed packages

reeboot skills list       List all bundled skills

reeboot channels list                    List channels and status
reeboot channels login whatsapp          Link WhatsApp (shows QR code)
reeboot channels login signal            Link Signal
reeboot channels logout <ch>             Disconnect a channel
reeboot channels setup owner-whatsapp    Capture owner WhatsApp identity

reeboot contexts list     List contexts (coming soon)
reeboot contexts create <name>   Create a context (coming soon)

reeboot sessions list     List recent sessions (coming soon)

reeboot tasks due         List overdue scheduled tasks

Channels

WebChat

Open http://localhost:3000 after starting the agent. No setup required.

docs/channels/webchat.md

WhatsApp

  1. Set "whatsapp": { "enabled": true } in config
  2. Run reeboot channels login whatsapp
  3. Scan the QR code with WhatsApp → Settings → Linked Devices

docs/channels/whatsapp.md

Signal

  1. Run the Signal CLI Docker container
  2. Link your device via the QR URL
  3. Set "signal": { "enabled": true, "phoneNumber": "+1...", "apiPort": 8080 } in config

docs/channels/signal.md


Key Capabilities

| Capability | Docs | |---|---| | Personal memory | capabilities/memory.md | | Domain knowledge / RAG | capabilities/domain-knowledge.md | | Scheduled tasks | capabilities/scheduling.md | | Web search | capabilities/web-search.md | | MCP tool servers | capabilities/mcp-tools.md | | Token budget | capabilities/token-budget.md | | Proactive agent | capabilities/proactive-agent.md | | Sandbox & security | security/sandbox.md | | Observability & logs | observability/logging.md | | Resilience & recovery | deployment/resilience.md | | Extensions & skills | extending/extensions.md |

Tool discovery: The agent discovers all registered tools automatically via the capabilities extension. Bundled (internal) tools are always advertised. External tools from MCP servers or user extensions are capped at 50 by default (configurable via capabilities.externalToolCap). If memory or other tools are not working, check that the feature is enabled in config.json and the capabilities_injected event appears in the observability stream.


Development

cd reeboot
npm install
npm test          # vitest — full test suite
npm run build     # compile TypeScript → dist/

Docker

For deployments on bare machines with nothing but Docker installed — a separate, CLI-independent deployment path:

git clone <repo>
cd reeboot
cp config.example.json ./data/config.json
# edit config.json with your provider, model, and API key
docker compose up -d

The full stack includes reeboot, SearXNG (web search), and Signal CLI. Caddy is available (commented out) for automatic HTTPS when you have a domain. See the root README Docker section for details.

Links


License

MIT