CLI quick start
Use the npm CLI when you want a headless VibeAround daemon, a terminal first setup, or a remote machine without the desktop app. The CLI runs the same server and uses the same /.vibearound/ data directory as the deskt...
Use the npm CLI when you want a headless VibeAround daemon, a terminal-first setup, or a remote machine without the desktop app. The CLI runs the same server and uses the same ~/.vibearound/ data directory as the desktop build.
1. Install the CLI
npm i -g @vibearound/cli
va --helpIf you already run the desktop app, you can still install the CLI. It will talk to the same local daemon when the desktop app is running.
2. Start the daemon
va serveThe daemon binds to 127.0.0.1:12358, creates ~/.vibearound/settings.json on first run, and writes a fresh local auth token to ~/.vibearound/auth.json.
In another terminal:
va status
va doctorva status prints the dashboard URL, runtime state, channels, tunnels, and active sessions. va doctor checks auth, endpoint reachability, and server health.
3. Open the TUI or browser dashboard
va tuiThe TUI is the fastest terminal surface for checking runtime state. For the browser dashboard, use the authenticated URL from va status; it opens the same Web Chat, Web Terminal, live previews, workspace list, profiles, and runtime controls as the desktop app.
4. Add a workspace and agent
va workspace add ~/dev/my-app
va workspaces
va agentsAgents must still be installed and authenticated in their own native way first: Claude Code, Codex CLI, Gemini CLI, OpenCode, and similar tools should work from a plain terminal before VibeAround hosts or launches them.
5. Launch or chat
Launch a native agent CLI in your own terminal:
va launch --profile my-codex-profileOr send a single hosted Web Chat prompt:
va chat send "look at ~/dev/my-app and summarize the project"For long-lived interactive work, use Web Chat, the Web Terminal, an IM channel, or the TUI. The full command list is in the CLI reference.
Source anchors: src/cli/src/args.rs (CLI command surface), src/server/src/lib.rs (daemon), src/core/src/config.rs (settings/auth paths).
Last verified: v0.7.12
Quick tour
Fifteen minutes, three "aha" moments: chat with a local agent in the browser, do the same from an IM app, then move one conversation between surfaces. Prerequisite: VibeAround installed with at least one agent enabled...
Desktop app guide
The desktop app (Tauri) is the management shell around the daemon: it embeds the same server the CLI runs, adds GUI screens for everything configurable, and keeps the runtime alive from the tray. If the daemon is the...