Skip to main content

Local-first agent runtime for Slack - run AI coding agents from your chat

Project description

Vibe Remote

Vibe Remote

Your AI agent army, commanded from Slack, Discord, WeChat & Lark.

No laptop. No IDE. Just vibes.

GitHub Stars Python License

Vibe Remote - Code from your phone — AI agents in your chat app | Product Hunt

English | 中文

Supported Platforms

Slack Discord WeChat Lark

Supported Agents

Claude Code OpenCode Codex


Banner

The Pitch

You're at the beach. Phone buzzes — production's on fire.

Old you: Panic. Find WiFi. Open laptop. Wait for IDE. Lose your tan.

Vibe Remote you: Open Slack, Discord, or WeChat. Type "Fix the auth bug in login.py". Watch Claude Code fix it in real-time. Approve. Sip margarita.

AI works. You live.

Install in 10 Seconds

curl -fsSL https://raw.githubusercontent.com/cyhhao/vibe-remote/master/install.sh | bash && vibe

That's it. Browser opens -> Follow the wizard -> Done.

Windows?

We recommend the WSL setup on Windows because it has the best compatibility.

If you are new to WSL, this guide explains:

  • where to install WSL
  • which terminal window to use
  • where to run the Vibe Remote install command
  • how to launch Ubuntu and open the Web UI

Why This Exists

Problem Solution
Claude Code is amazing but needs a terminal Slack/Discord/WeChat/Lark IS your terminal now
Context-switching kills flow Stay in one app
Start on desktop, continue on phone Resume the exact agent session from the current project in seconds
Can't code from phone Yes you can
Multiple agents, multiple setups One chat app, any agent

Supported Agents:

  • Claude Code — Deep reasoning, complex refactors
  • OpenCode — Fast, extensible, community favorite
  • Codex — OpenAI's coding model

Why Vibe Remote over OpenClaw?

Vibe Remote OpenClaw
Setup One command + web wizard. Done in 2 minutes. Gateway + channels + JSON config. Expect an afternoon.
Security Local-first. Socket Mode / WebSocket only. No public endpoints, no inbound ports, minimal attack surface. Gateway exposes ports. More moving parts, more attack surface.
Token cost Thin transport layer — relays messages between your IM and agent. Zero LLM overhead from the middleware itself. Every message carries a long system context for maintaining agent persona, IM tooling, and orchestration plumbing. Tokens burn on overhead before your actual task even starts.

OpenClaw is a personal AI assistant — great for casual chat, but its always-on agent loop makes it expensive for real productivity workloads. Vibe Remote is not an agent framework. It's a remote control — a minimal bridge between your chat app and whatever AI agent you already use. It adds no extra intelligence layer, no extra token spend, and no extra attack surface. Every token goes straight to your task.


Highlights

Setup Wizard

One-command install, guided configuration. No manual token juggling.

Setup Wizard

Dashboard

Real-time status, health monitoring, and quick controls.

Dashboard

Channel Routing

Per-channel agent configuration. Different projects, different agents.

Channels

Instant Notifications

Get notified the moment your AI finishes. Like assigning tasks to employees — delegate, go do something else, and come back when the work is done. No need to babysit.

Thread = Session

Each Slack/Discord/WeChat/Lark thread is an isolated workspace. Open 5 threads, run 5 parallel tasks. Context stays separate.

Resume Anywhere

Laptop closed. Commute started. Production still needs you.

Vibe Remote lets you reopen real agent sessions from your current working directory across Claude Code, OpenCode, and Codex. Pick the latest session, jump from desktop to mobile, and keep going without re-explaining the task, hunting for an old thread, or losing the thread of thought.

Interactive Prompts

When your agent needs input — file selection, confirmation, options — your chat app pops up buttons or a modal. Full CLI interactivity, zero terminal required.

Interactive Prompts


How It Works

┌──────────────┐             ┌──────────────┐             ┌──────────────┐
│     You      │   Slack     │              │   stdio     │  Claude Code │
│  (anywhere)  │   Discord   │ Vibe Remote  │ ──────────▶ │  OpenCode    │
│              │   WeChat    │  (your Mac)  │ ◀────────── │  Codex       │
│              │   Lark      │              │             │              │
└──────────────┘             └──────────────┘             └──────────────┘
  1. You type in Slack/Discord/WeChat/Lark: "Add dark mode to the settings page"
  2. Vibe Remote routes to your configured agent
  3. Agent reads your codebase, writes code, streams back
  4. You review in your chat app, iterate in thread

Your code never leaves your machine. Vibe Remote runs locally and connects via Slack Socket Mode, Discord Gateway, WeChat polling, or Lark WebSocket.


Commands

In chat What it does
@Vibe Remote /start Open control panel
/stop Kill current session
Just type Talk to your agent
Reply in thread Continue conversation

Pro tip: Each thread = isolated session. Start multiple threads for parallel tasks.


Instant Agent Switching

Need a different agent mid-conversation? Just prefix your message:

Plan: Design a new caching layer for the API

That's it. No menus, no commands. Type AgentName: and your message routes to that agent instantly.


Per-Channel Routing

Different projects, different agents:

#frontend    → OpenCode (fast iteration)
#backend     → Claude Code (complex logic)  
#prototypes  → Codex (quick experiments)

Configure in web UI → Channels.


CLI

vibe          # Start everything
vibe status   # Check if running
vibe stop     # Stop everything
vibe doctor   # Diagnose issues

Prerequisites

You need at least one coding agent installed:

OpenCode (Recommended)
curl -fsSL https://opencode.ai/install | bash

Required: Add to ~/.config/opencode/opencode.json to skip permission prompts:

{
  "permission": "allow"
}
Claude Code
npm install -g @anthropic-ai/claude-code
Codex
npm install -g @openai/codex

Security

  • Local-first — Vibe Remote runs on your machine
  • Socket Mode / WebSocket — No public URLs, no webhooks
  • Your tokens — Stored in ~/.vibe_remote/, never uploaded
  • Your code — Stays on your disk, sent only to your chosen AI provider

Uninstall

vibe stop && uv tool uninstall vibe-remote && rm -rf ~/.vibe_remote

Roadmap

  • Slack support
  • Discord support
  • WeChat support
  • Lark (Feishu) support
  • Web UI setup wizard & dashboard
  • Per-channel agent routing
  • Interactive prompts (buttons, modals)
  • File attachments
  • SaaS Mode
  • Vibe Remote Coding Agent (one agent to rule them all)
  • Skills Manager
  • Best practices & multi-workspace guide

Docs

  • CLI Reference — Command-line usage and service lifecycle
  • Slack Setup Guide — Detailed setup with screenshots
  • Discord Setup Guide — Detailed setup with screenshots
  • WeChat Setup Guide — Follow the in-app wizard (vibe → choose WeChat)
  • Lark Setup Guide — Follow the in-app wizard (vibe → choose Lark)

Remote Server Tip (SSH)

If you run Vibe Remote on a remote server, keep the Web UI bound to 127.0.0.1:5123 and access it via SSH port forwarding:

ssh -NL 5123:localhost:5123 user@server-ip

See: CLI Reference (search for "Remote Web UI Access")


Stop context-switching. Start vibe coding.

Install Now · Setup Guide · Report Bug · Follow @alex_metacraft


Built for developers who code from anywhere.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vibe_remote-2.2.7.tar.gz (1.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vibe_remote-2.2.7-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

File details

Details for the file vibe_remote-2.2.7.tar.gz.

File metadata

  • Download URL: vibe_remote-2.2.7.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vibe_remote-2.2.7.tar.gz
Algorithm Hash digest
SHA256 21d91836621ce49569da92439f52ab8944c85384580b63f107c1f5fa951bde41
MD5 10d283b7c4fe5d3fa39afa4189cb39c1
BLAKE2b-256 4e49a624a44692a0d2d7dcf9ea4ab21e93b641826f4dfddacd59ea2a148229d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for vibe_remote-2.2.7.tar.gz:

Publisher: publish.yml on cyhhao/vibe-remote

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file vibe_remote-2.2.7-py3-none-any.whl.

File metadata

  • Download URL: vibe_remote-2.2.7-py3-none-any.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for vibe_remote-2.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 ba570fb0af1fc2a3af308a7df43e32be02a124819acd4200b56ceb74bcc00e85
MD5 e5fb54486ef3f84c7affc248fd45a767
BLAKE2b-256 c24012db2c288285121a0e2de54b76cf7a6c34ba4b504fa197141b3fb1692acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for vibe_remote-2.2.7-py3-none-any.whl:

Publisher: publish.yml on cyhhao/vibe-remote

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page