English · 简体中文
Your coding agent hub. Across your machines. Within reach anywhere.
Explore the live workspace · Connect a machine · Read the docs · Self-host
Very Happy is an open-source hub for your coding agents and connected machines. Bring sessions from your workstation, laptop, and servers into one Web/PWA workspace. Start work on the machine and agent you choose, then follow its conversation, terminal, files, and progress from a computer, phone, or tablet. Your machines do the work; you stay connected wherever you are.
Use structured conversations with supported agent integrations, or open a real terminal for your local tools. Each integration exposes its own capabilities; ordinary terminal access does not imply identical structured support for every agent. Connect each machine once, keep its daemon online, and use the same workspace for a single conversation or a coordinated team.
Run very-happy install-pi-tools once, then launch pi directly inside a Very Happy terminal to load terminal naming, clipboard and file preview tools. very-happy pi --terminal remains available for temporary loading. Each conversation and terminal has a Copy and preview history disclosure for reopening files and copying earlier content. Tool setup and retention limits.
Very Happy Teams brings Claude Code, Codex, and pi together around a goal. A lead breaks it down, teammates work in parallel, and results come back for review. Teams builds on the same conversations and machine controls you already use, with a shared view of assignments and results.
“Review this project, find worthwhile improvements, form a team to work on them in parallel, and bring back results I can review.”
- Set the goal. Open Teams → New team and describe what you want done. Recent computer and Git project choices are shown below the message; expand them to change the computer, project, or agent.
- Let the lead organize. Very Happy starts the lead with official collaboration instructions. It can delegate independent tasks; teammates can further divide their own assignments.
- Follow parallel work. Open member conversations from the team overview and inspect progress, submitted results, and code changes.
- Review the result. Accept or return work for changes. Cleanup preserves unmerged code; a stopped process does not count as completed work.
New teams default to No approvals for the lead and newly delegated members. Change the mode in team settings when needed; existing teams and running sessions retain their permissions.
Teams requires an enabled account and a compatible online daemon. No manual skill installation is needed when creating a team in the app. An existing managed conversation can also become a team from its More menu. Each team currently runs on one computer within one account, with configurable agent, model, and concurrent work defaults. Ordinary chats and terminals keep working as before. Automatic cross-machine routing is not available.
Start using Teams · Explore the architecture · Connect your first machine
Tip
Use the Web/PWA as your daily workspace. Install the CLI once to pair a machine and start its background daemon. Return to the CLI for diagnostics, automation, recovery, or an intentional local launch—not because you need to live in a second interface. The daemon remains required: Web-first is a UX choice, not a browser-only architecture.
Note
Choose the deployment that fits your work. Very Happy Cloud gives you the fastest multi-device setup; self-hosting gives you control of the operator, access policy, storage, and backups. See the privacy and security model for sensitive environments.
| Follow messages, tools, diffs, permissions, usage, and resume state without living inside terminal chrome. Claude Code is the deepest structured integration today. | Run ordinary xterm-256color-compatible text processes inside a tmux-owned TTY. Reconnect to the same process, keep scrollback, search it, browse files, and use touch-first terminal controls. A coding agent is optional. | Use the responsive Web/PWA as the default surface. Start at a desk, check progress on a phone, and return without rebuilding the project state in your head. An optional Claude-only mirror can move between a hand-started TUI and structured conversation. |
The terminal is the compatibility layer. It forwards a real TTY and does not
care which brand—or category—of process is on the other side. A tool working in
a terminal does not automatically expose Claude-style structured events.
Durable terminals require
tmux; the optional Claude mirror requires tmux 3.2 or newer. Without tmux,
Web terminals use a non-persistent direct-shell fallback.
The browser terminal advertises TERM=xterm-256color and renders through
xterm.js. Common text TUIs are the compatibility target; sixel/Kitty graphics
and other terminal-specific extensions are not guaranteed.
AUTHENTIC PRODUCT UI CONTRACTS · SANITIZED DATA · SIDEBAR + TERMINAL + FILE PREVIEW
Paste a screenshot or drag a file straight into a Very Happy browser terminal.
The daemon receives it on the selected machine under
~/.happy/uploads/terminal/, then Very Happy pastes a path quoted for the
daemon's default shell at the terminal cursor. The chosen Cloud or self-hosted
server is the trusted relay for this bounded transfer.
It never presses Enter for you.
Native Windows insertion requires the current daemon so the Web client can
distinguish cmd from PowerShell.
phone / laptop clipboard ── chosen deployment ──> selected machine
dragged file or screenshot ~/.happy/uploads/terminal/…
│
╰─> shell-quoted path at cursor
PASTE OR DROP · BOUNDED MACHINE RPC · ATOMIC TARGET FILE · NO AUTO-RUN
Terminal handoffs are capped at 8 MB, transferred in bounded chunks, and shown with progress/error feedback. Older daemons retain the previous small-file path; update the CLI and restart the daemon for larger files. Files pass through the selected deployment on their way to the machine; choose Cloud or self-hosting according to your environment.
| The friction | What carries it for you |
|---|---|
| “This goal has several independent pieces of work.” | A lead can delegate to Claude Code, Codex, and pi teammates, with progress and submitted results in one team view. |
| “My agents and terminals are scattered across several machines.” | One account sidebar and task board aggregate their sessions and attention state; start new work on the machine and agent you choose. |
| “Structured chat is pleasant, but sometimes I need the actual tool.” | Keep SDK-backed Claude and drop into a durable, unmodified agent TTY/TUI when necessary. |
| “I left my desk, so the work stopped being legible.” | A responsive Web/PWA workspace keeps conversations, terminals, files, tasks, notifications, and decisions within reach. |
| “Remote control must fit my operating model.” | Start with Very Happy Cloud for the fastest setup, or deploy the same open-source stack under your control. |
The philosophy is straightforward: stay high-level when that is faster, drop to the raw machine when it is necessary, and make the interface carry as much operational overhead as possible. The sections above show the supporting detail: ordinary text TUIs remain compatible, the command palette preserves keyboard speed, and bounded file handoff moves a local file to the selected machine without auto-running a command.
On macOS or Linux, the hosted Cloud path can install the CLI, run diagnostics, open the one-time browser approval, and start the detached daemon in one command:
(
set -eu
vh_installer=$(mktemp)
trap 'rm -f "$vh_installer"' \
EXIT HUP INT TERM
curl -fsSL \
https://veryhappy.dev/install.sh \
-o "$vh_installer"
sh "$vh_installer"
)The bootstrap still needs Node.js because the CLI and daemon run on Node. If
node or npm is missing, install a supported Node.js release from the
official download page—npm is included—then
run the same command again. The script stops with this guidance instead of
invoking sudo or silently changing the system runtime.
The bootstrap is intentionally boring where trust matters. It:
- verifies a supported Node.js runtime;
- resolves the npm
latesttag once, validates it, and installs that exactvery-happy-cliversion; - runs
very-happy doctorwithout intentionally reading provider credential values (review all diagnostic output before sharing it); - opens the normal short-lived Web approval flow; and
- runs
very-happy daemon startso the machine actually appears online.
The command downloads the complete script to a random temporary file before it
runs and removes it afterward. It never invokes sudo, installs tmux, writes
provider credentials, enables Claude hooks, or hides the trusted-relay warning.
Hosted bytes can change with a Web release: for the auditable path, download the
version-controlled script, compare it,
then run the local file. Its offline no-mutation preview is:
sh ./install.sh --dry-runThe script can connect terminal-based agents without a Claude credential. For structured Claude, configure a supported provider credential in the daemon's startup environment. If you add it after the bootstrap has started the daemon, reload that environment with:
very-happy daemon stop && very-happy daemon startPrefer the fully manual path?
npm install --global very-happy-cli
very-happy doctor
very-happy auth login
very-happy daemon startApprove only a machine request you just initiated. Then open veryhappy.dev, choose the connected machine, and create your first session.
| Requirement | Status | Why |
|---|---|---|
| Node.js 20.19+ within 20.x, 22.13+ within 22.x, or 24+, with npm | Required | Runs the CLI and daemon |
| Agent provider/runtime | Per agent | Structured Claude uses the bundled Agent SDK plus provider credentials; native terminals and other adapters need their local command or gateway |
tmux |
Recommended | Keeps real Web terminals alive across browser disconnects |
tmux 3.2+ |
Optional Claude mirror | Provides the create-time environment markers used by terminal → structured handoff |
For the first structured Claude session, configure ANTHROPIC_API_KEY or a
supported Bedrock, Vertex AI, or Foundry environment for the same OS user and
startup environment that runs the daemon. very-happy doctor reports only the
credential source category. See
configuration.
Provider credentials stay local by default. very-happy connect is a separate,
explicit flow that stores a selected OpenAI, Anthropic, or Gemini OAuth
credential on your chosen deployment so Web-launched integrations can use it;
it is currently used primarily by the Gemini path.
Deploy the relay first, use HTTPS, then keep all three endpoint variables in the environment that starts the daemon:
export HAPPY_HOME_DIR="$HOME/.very-happy-relay.example.com"
export HAPPY_SERVER_URL=https://relay.example.com
export HAPPY_WEBAPP_URL=https://relay.example.com
npm install --global very-happy-cli
very-happy doctor
very-happy auth login
very-happy daemon startUse a separate HAPPY_HOME_DIR for each relay. Tokens and machine IDs belong to
the relay that issued them. The supported public self-host path is the pinned
repository Docker build—not the upstream-owned happy-server-self-host npm
package. See Self-hosting.
⌘ K / Ctrl K command palette · ⌘ 1–9 / Ctrl 1–9 switch visible work · ⌘ J / Ctrl J notes
The production command palette searches actions, chats, and terminals. Saved
prompts use Command/Ctrl+.; mobile users open the same command surface from
the sidebar Search control.
Very Happy preserves terminal muscle memory: on macOS, Ctrl+K/J/N/R stay with
readline and the real TUI. Browser-reserved new/close chords work only where the
platform delivers them to an installed PWA; normal tabs use the explicit
Alt+N and Alt+W fallbacks. See the precise
keyboard and touch reference.
| Adapter | Status | Experience |
|---|---|---|
| Claude Code | Shipped · deepest integration | Bundled Agent SDK structured sessions; native Claude TUI; optional Claude-only terminal mirror |
| Codex | Shipped | Dedicated Codex session path plus native terminal access |
| Gemini | Beta · implemented | Agent Client Protocol backend and preset |
| OpenCode | Beta · implemented | ACP-compatible preset over local stdio |
| Custom ACP command | Beta · implemented | Generic runner for a compatible Agent Client Protocol stdio endpoint |
| OpenClaw | Shipped | Its own local gateway adapter—not ACP |
| Pi / provider-aware routing | Roadmap | Candidate adapters and cross-provider subtask coordination, not shipped claims |
Agent Client Protocol is distinct from the older Agent Communication Protocol that shares the ACP acronym. Support for a terminal-backed agent does not imply structured parity with Claude.
- Structured Claude conversations with tool calls, diffs, permissions, usage, attachments, and resume.
- Real tmux browser terminals with reconnect, scrollback, search, mobile input, archived sessions, file access, and automatic recovery.
- A machine file browser with previews for text, Markdown, images, PDFs, and Excel/CSV worksheets. Download original files (up to 50 MiB), copy text or paths, and pin clickable previews from agent output to the workspace. Workbook previews run locally in a browser worker (10 MiB; up to 50 sheets, 500 rows and 100 columns per sheet).
- Clipboard and drag/drop handoff into a target-machine terminal, with an 8 MB limit, bounded chunking, upload feedback, and quoted-path insertion without auto-execution.
- Task board, todo-provider commands, notes, notifications, Web Push, and HTTPS webhooks.
- A Claude-powered coordinator with text entry, session awareness, and dispatch on its selected machine; voice entry is available when a compatible voice service is configured.
- Passwordless email-code and Google sign-in, optional password compatibility, configurable signup/capacity controls, a hosted public relay, and production-oriented self-hosting.
- A mobile-friendly, proactively installable PWA—no app store required.
Optional Claude terminal mirroring is explicit and reversible:
very-happy install-terminal-hooks
# Remove only Very Happy's entries later:
very-happy install-terminal-hooks --removeThis modifies ~/.claude/settings.json (or
$CLAUDE_CONFIG_DIR/settings.json) without deleting foreign hooks. Normal
SDK-backed Claude sessions do not require it.
Very Happy injects a small MCP surface into managed sessions so an agent can do more than print another line: it can hand text to your browser clipboard, open a produced file in the Web preview, keep the session title useful, and report progress. The exact tools deliberately follow the runner:
| Runtime path | MCP tools shipped today |
|---|---|
| Base managed Claude session | change_title, copy_to_clipboard, open_preview, report_progress |
| Managed Codex / Gemini / ACP bridge | change_title, copy_to_clipboard, open_preview |
| Assistant/meta-agent variant additions | sessions_list, session_read, session_send, session_spawn, session_kill, session_archive, terminals_list, terminal_read, terminal_send, memory_update, journal_append |
User-scoped plain claude, after opt-in |
copy_to_clipboard only |
Enable the narrow plain-terminal bridge with:
claude mcp add --scope user very-happy-clipboard -- very-happy mcpThat registration applies to every Claude session for the same OS user, not only processes inside a Very Happy terminal. It needs the local daemon. The assistant-only additions can read and mutate sessions, terminals, memory, and journals; treat that variant and its prompt/tool permissions as a high-privilege machine control surface. This is not a universal MCP or provider-routing claim. See the exact integration contracts.
| Capability | Setup |
|---|---|
| External Todo list | Add todoProvider to the machine's ~/.happy/settings.json; copy the provider contract and example. |
| Account webhook | Open Settings → Channels, save one HTTPS endpoint, and select completion / permission events. |
| Dispatch other sessions | Select an Assistant machine in Settings → Voice & Assistant, open Assistant (/assistant), and review its high-privilege permission setting. See the Assistant setup. |
| Script / IM adapter | Run very-happy spawn, send and sessions on the daemon machine — start work, message it, then list / read / stop / archive what you started. |
Very Happy is an execution surface, not a closed automation platform. The
coordinator, the roles it dispatches and the policy around them belong in your
adapter; what this project owns is the execution surface underneath. Generic
webhooks plus the CLI's automation commands are that
contract: spawn starts work (with an origin tag, a permission mode and an
agent of your choosing), send continues it, and sessions lets the adapter
see and steer what it started instead of dispatching blind. That is enough to
connect an issue tracker, scheduler, chat system, or a coordinator of your own
without teaching the core about any of them.
The adapter must own sender authorization, fixed workspace policy, deduplication, rate limits, and least-privilege execution. Incoming messages are input, never authorization by themselves.
MACHINE-SCOPED RPC · RUNNER-SPECIFIC NORMALIZATION · DURABLE MULTI-BROWSER CONVERGENCE
The account/database server can stay central while latency-sensitive terminal bytes, machine/session RPC, and structured-message delivery use operator-configured regional relays. Each daemon probes the healthy candidates in parallel and anchors to the lowest measured RTT; the browser follows that machine assignment with a short-lived, machine-scoped token. The active relay and browser-to-relay RTT are visible in the terminal header.
This is measured routing, not a GeoIP guess, and relays do not need database credentials. If discovery or a regional relay fails, current clients fall back to the compatible control-server path. Self-hosted operators decide which relay regions exist; hosted PoP availability is an operational fact, not an implied global SLA. A future WebRTC direct path can use the same transport seam, with regional relays remaining the fallback.
Structured input is persisted by the session runner before agent execution; structured output receives its authoritative central id/seq before the relay push. The control/data server therefore remains the recovery and history source, while the regional plane shortens live delivery. It does not add token-level Claude streaming by itself.
The control/data server synchronizes workspace state; the regional plane routes latency-sensitive machine/session RPC, structured delivery, and terminal traffic. Encrypted envelopes inherited from Happy remain defense in depth, but the Very Happy server can recover account keys. Transport/storage encryption does not make the relay zero knowledge. Read Architecture and Security.
The roadmap moves toward more agent adapters, provider-aware subtask routing, durable project/task memory, and a meta-agent that brings users decisions rather than activity. The long-term visual concept is a multi-agent virtual office— possibly pixel-art—where work, handoffs, and requests for attention become spatially legible.
Those are roadmap concepts, not shipped features. The philosophy already ships: work anywhere, keep the thread, and reduce the amount of operational state a human has to hold. See the roadmap.
- Documentation index
- Getting started
- Self-hosting
- Configuration
- Upgrading and rollback
- Troubleshooting
- Development
- Contributing
- Security policy
The production frontend is packages/happy-web-v2. The upstream Expo/Tauri
packages/happy-app is retained as an experimental seed for a possible future
desktop client; it is currently excluded from the pnpm workspace, production,
and the supported Very Happy client/security scope.
Very Happy is a friendly, deeply modified fork of slopus/happy and retains upstream copyright and MIT terms. See LICENSE and NOTICE. Claude Code, Codex, Gemini, OpenCode, OpenClaw, and other named agents are products or projects of their respective owners. Very Happy is independent and is not affiliated with them.
Open Help & getting started in the workspace to connect another computer, choose chat or a terminal, and find Teams, files and todos. The guide also links the official team installer, Todos → My todos → Let AI use my todos, and the external todo-provider skill. App-created teams receive their instructions automatically; terminal skill installation does not attach an unmanaged terminal or grant account access.