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

@lovenyberg/ove

v0.3.0

Published

Your grumpy but meticulous dev companion. AI coding agent for Slack, WhatsApp, Telegram, Discord, GitHub, HTTP API, and CLI.

Readme


Talk to Ove from Slack, WhatsApp, Telegram, Discord, GitHub issues, a Web UI, or the terminal — he'll grumble about it, but he'll review your PRs, fix your issues, run your tests, brainstorm ideas, and scaffold new projects. Properly.

Just chat. You don't need to memorize commands. Talk to Ove like you'd talk to a colleague — ask questions, describe what you need, paste error messages, think out loud. He understands natural language. The commands below are shortcuts, not requirements.

Quick Start

npm install -g @lovenyberg/ove
ove init    # interactive setup — creates config.json and .env
ove start

Prerequisites

Usage

Talk to Ove the way you'd talk to a teammate. These all work:

"can you check what's failing in the auth tests on my-app?"
"the login page is broken, users get a 500 after submitting"
"how does the payment webhook work in my-app?"
"refactor the user service, it's getting messy"

Ove figures out the intent, picks the right repo, and gets to work. For common tasks, there are also shorthand commands:

review PR #N on <repo>      Code review with inline comments
fix issue #N on <repo>      Read issue, implement fix, create PR
simplify <path> in <repo>   Reduce complexity, create PR
validate <repo>             Run tests and linter
discuss <topic>             Brainstorm ideas (no code changes)
create project <name>       Scaffold a new project

Scheduling:
<task> every day at <time>   Schedule a recurring task
list schedules              See your scheduled tasks
remove schedule #N          Remove a scheduled task

Task management:
tasks                       List running and pending tasks
cancel <id>                 Kill a running or pending task

Meta:
status                      Queue stats
history                     Recent tasks
clear                       Reset conversation

Deployment

Three ways to run Ove. Pick what fits. See the full guide for details.

Local

npm install -g @lovenyberg/ove
ove init
ove start

Requires Bun, Claude Code CLI (or Codex CLI), and GitHub CLI on your machine.

Docker

ove init                    # generate config locally
docker compose up -d        # start container
docker compose logs -f      # watch logs

The image includes Bun, git, and Claude CLI (install Codex CLI separately if needed). Mounts config.json, .env, repos/, and SSH keys from the host.

VM

Ove runs well on a small VM (2 CPU, 4 GB RAM). Install Bun, Claude Code (or Codex CLI), and GitHub CLI, then run as a systemd service:

git clone [email protected]:jacksoncage/ove.git && cd ove
bun install
ove init
sudo cp deploy/ove.service /etc/systemd/system/ove.service
sudo systemctl enable --now ove

Transport Setup

Slack

  1. Create app at api.slack.com/apps
  2. Enable Socket Mode → generate App-Level Token (xapp-...)
  3. Bot scopes: chat:write, channels:history, groups:history, im:history, mpim:history, app_mentions:read
  4. Event subscriptions: message.im, app_mention
  5. App Home → Messages Tab → "Allow users to send messages"
  6. Install to workspace → copy Bot Token (xoxb-...)

Telegram

  1. Message @BotFather/newbot
  2. Copy the bot token
  3. Set TELEGRAM_BOT_TOKEN=<token> in .env

Discord

  1. Create app at discord.com/developers
  2. Bot → enable Message Content Intent
  3. Copy bot token
  4. Invite bot to server with bot scope + Send Messages, Read Message History
  5. Set DISCORD_BOT_TOKEN=<token> in .env

HTTP API + Web UI

  1. Set HTTP_API_PORT=3000 and HTTP_API_KEY=<your-secret> in .env
  2. Open http://localhost:3000 for the Web UI
  3. Or call the API directly: curl -X POST http://localhost:3000/api/message -H "X-API-Key: <key>" -H "Content-Type: application/json" -d '{"text": "validate my-app"}'

GitHub (issue/PR comments)

  1. Set GITHUB_POLL_REPOS=owner/repo1,owner/repo2 in .env
  2. Optionally set GITHUB_BOT_NAME=ove (default) and GITHUB_POLL_INTERVAL=30000
  3. Mention @ove in an issue or PR comment to trigger a task
  4. Ove replies with a comment when the task completes

WhatsApp

  1. Set WHATSAPP_ENABLED=true in .env
  2. Scan the QR code printed in the terminal on first start

Config

{
  "repos": {
    "my-app": {
      "url": "[email protected]:org/my-app.git",
      "defaultBranch": "main"
    }
  },
  "users": {
    "slack:U0ABC1234": { "name": "alice", "repos": ["my-app"] },
    "telegram:123456789": { "name": "alice", "repos": ["my-app"] },
    "discord:987654321": { "name": "alice", "repos": ["my-app"] },
    "github:alice": { "name": "alice", "repos": ["my-app"] },
    "http:anon": { "name": "alice", "repos": ["my-app"] },
    "cli:local": { "name": "alice", "repos": ["my-app"] }
  },
  "claude": { "maxTurns": 10 },
  "runner": { "name": "claude" },
  "cron": [
    {
      "schedule": "0 9 * * 1-5",
      "repo": "my-app",
      "prompt": "Run lint and tests.",
      "userId": "slack:U0ABC1234"
    }
  ]
}

Runner Selection

By default Ove uses Claude Code CLI. To use OpenAI Codex instead, set the runner field globally or per-repo:

{
  "runner": { "name": "codex", "model": "o3" },
  "repos": {
    "my-app": {
      "runner": { "name": "claude" }
    }
  }
}

Per-repo runner overrides the global default. Supported runners: "claude" (default), "codex".

Static cron jobs go in config.json. Users can also create schedules via chat — these are stored in SQLite and managed with list schedules / remove schedule #N.

Testing

bun test    # 150 tests

How It Works

  1. Message arrives via any transport (Slack, WhatsApp, Telegram, Discord, CLI, HTTP API, or GitHub comment)
  2. Chat adapters use handleMessage, event adapters use handleEvent
  3. Router parses intent and extracts repo/args
  4. Task gets queued in SQLite (one per repo at a time, different repos run in parallel)
  5. Worker loop picks up tasks concurrently (up to 5 parallel tasks across different repos)
  6. Each task gets an isolated git worktree
  7. Runs the configured agent runner (claude -p or codex exec) with streaming JSON output
  8. Status updates stream back (chat: edits a message, HTTP: SSE, GitHub: single comment)
  9. Result sent back, worktree cleaned up

See example conversations for all flows.

License

MIT