@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.
Maintainers
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 startPrerequisites
- Claude Code CLI installed and authenticated (default runner)
- Or OpenAI Codex CLI installed and authenticated (alternative runner)
- GitHub CLI (
gh) installed and authenticated - SSH access to your git repos
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 conversationDeployment
Three ways to run Ove. Pick what fits. See the full guide for details.
Local
npm install -g @lovenyberg/ove
ove init
ove startRequires 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 logsThe 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 oveTransport Setup
Slack
- Create app at api.slack.com/apps
- Enable Socket Mode → generate App-Level Token (
xapp-...) - Bot scopes:
chat:write,channels:history,groups:history,im:history,mpim:history,app_mentions:read - Event subscriptions:
message.im,app_mention - App Home → Messages Tab → "Allow users to send messages"
- Install to workspace → copy Bot Token (
xoxb-...)
Telegram
- Message @BotFather →
/newbot - Copy the bot token
- Set
TELEGRAM_BOT_TOKEN=<token>in.env
Discord
- Create app at discord.com/developers
- Bot → enable Message Content Intent
- Copy bot token
- Invite bot to server with
botscope +Send Messages,Read Message History - Set
DISCORD_BOT_TOKEN=<token>in.env
HTTP API + Web UI
- Set
HTTP_API_PORT=3000andHTTP_API_KEY=<your-secret>in.env - Open
http://localhost:3000for the Web UI - 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)
- Set
GITHUB_POLL_REPOS=owner/repo1,owner/repo2in.env - Optionally set
GITHUB_BOT_NAME=ove(default) andGITHUB_POLL_INTERVAL=30000 - Mention
@ovein an issue or PR comment to trigger a task - Ove replies with a comment when the task completes
- Set
WHATSAPP_ENABLED=truein.env - 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 testsHow It Works
- Message arrives via any transport (Slack, WhatsApp, Telegram, Discord, CLI, HTTP API, or GitHub comment)
- Chat adapters use
handleMessage, event adapters usehandleEvent - Router parses intent and extracts repo/args
- Task gets queued in SQLite (one per repo at a time, different repos run in parallel)
- Worker loop picks up tasks concurrently (up to 5 parallel tasks across different repos)
- Each task gets an isolated git worktree
- Runs the configured agent runner (
claude -porcodex exec) with streaming JSON output - Status updates stream back (chat: edits a message, HTTP: SSE, GitHub: single comment)
- Result sent back, worktree cleaned up
See example conversations for all flows.
License
MIT
