diff --git a/website/docs/developer-guide/worktree-ui-dev.md b/website/docs/developer-guide/worktree-ui-dev.md
new file mode 100644
index 000000000000..4f3ab1f847b4
--- /dev/null
+++ b/website/docs/developer-guide/worktree-ui-dev.md
@@ -0,0 +1,145 @@
+---
+sidebar_position: 5
+title: "TUI & Desktop from Worktrees"
+description: "Run the Ink TUI and Electron desktop app from a git worktree without a full npm install per checkout"
+---
+
+# TUI & Desktop from Worktrees
+
+The Python core runs fine from any [git worktree](../user-guide/git-worktrees.md) — `cd` in and `hermes` just works. The two TypeScript surfaces do not: `ui-tui/` and `apps/desktop/` each need a populated `node_modules`, and a fresh `npm ci` per worktree is slow and duplicates gigabytes across every branch you have checked out.
+
+`htui` and `hgui` are two shell helpers that close that gap. Each launches its surface **from the current worktree** while borrowing `node_modules` from one canonical checkout — so a throwaway branch costs a symlink, not an install.
+
+They're developer conveniences, not shipped commands. Drop them in `~/.zshrc`; adapt paths to taste.
+
+## The deps-sharing model
+
+One checkout is the **deps checkout** — the one place you actually run `npm install`. Every other worktree links against it, and only re-installs locally when its lockfile diverges (a branch that bumps a dependency must not silently run against stale packages).
+
+```mermaid
+flowchart TD
+ A[htui / hgui in a worktree] --> B{package-lock.json
matches deps checkout?}
+ B -- yes --> C[symlink node_modules
from deps checkout]
+ B -- no --> D[local npm ci
in this worktree]
+ C --> E[launch surface]
+ D --> E
+```
+
+Two env vars name the canonical checkout:
+
+| Variable | Meaning |
+|----------|---------|
+| `HERMES_MAIN_CHECKOUT` | The deps checkout — where `node_modules` really lives, and whose `.venv/bin/python` runs the backend. |
+| `HERMES_GUI_DEPS_CHECKOUT` | Where the desktop deps (`apps/desktop/node_modules`) live. Defaults to `HERMES_MAIN_CHECKOUT`; override only if you keep desktop deps elsewhere. |
+
+Neither is read by Hermes itself — they're private to these helpers. The variables Hermes *does* read are covered in [Environment Variables](../reference/environment-variables.md).
+
+## `htui` — TUI from the worktree
+
+The Ink TUI has a dev path already: `hermes --tui --dev` runs the TypeScript sources via `tsx` instead of the prebuilt bundle. `htui` is a one-liner over it that also points the run at the current worktree's `ui-tui/`:
+
+```bash
+htui() {
+ local root
+ root="$(_hermes_root)" || { echo "htui: not in a Hermes checkout" >&2; return 1; }
+ ( cd "$root" && PYTHONPATH="$root" \
+ "$HERMES_MAIN_CHECKOUT/.venv/bin/python" -m hermes_cli.main --tui --dev "$@" )
+}
+```
+
+`--dev` compiles from source, so it links `ui-tui/node_modules` from `HERMES_MAIN_CHECKOUT` when the root lockfile matches and installs locally otherwise (see [`_hermes_root` / linking helpers](#shared-helpers)).
+
+:::warning `--dev` and `HERMES_TUI_DIR` are mutually exclusive
+`HERMES_TUI_DIR` points Hermes at a *prebuilt* bundle (Nix, system packages), which has no source to hot-reload. If it's set in your shell, `hermes --tui --dev` exits with an error. Run `unset HERMES_TUI_DIR` before `htui`.
+:::
+
+## `hgui` — desktop app from the worktree
+
+The desktop app is heavier: it needs `node_modules` at both the repo root and `apps/desktop/`, a Vite dev server pinned to port `5174`, and a Python backend. `hgui` wires all of it against the current worktree:
+
+```bash
+hgui() {
+ local root deps desktop
+ root="$(_hermes_root)" || { echo "hgui: not in a Hermes checkout" >&2; return 1; }
+ deps="${HERMES_GUI_DEPS_CHECKOUT:-$HERMES_MAIN_CHECKOUT}"
+ desktop="$root/apps/desktop"
+
+ # Borrow deps when locks match; otherwise install locally in the worktree.
+ if cmp -s "$root/package-lock.json" "$deps/package-lock.json"; then
+ _hermes_link_deps "$desktop" "$deps/apps/desktop"
+ _hermes_link_deps "$root" "$deps"
+ else
+ ( cd "$root" && npm ci ) || return 1
+ fi
+
+ # Vite is fixed at 5174 — evict a stale session from another hgui.
+ lsof -t -i:5174 >/dev/null 2>&1 && killport 5174
+
+ # Electron often survives Ctrl+C without reaping its ephemeral backends.
+ trap '_hermes_gui_cleanup "$root"' INT TERM EXIT
+
+ ( cd "$desktop"
+ export PATH="$root/node_modules/.bin:$PATH"
+ HERMES_DESKTOP_HERMES_ROOT="$root" \
+ HERMES_DESKTOP_PYTHON="$HERMES_MAIN_CHECKOUT/.venv/bin/python" \
+ HERMES_DESKTOP_IGNORE_EXISTING=1 \
+ HERMES_DESKTOP_CWD="$root" \
+ npm run dev )
+}
+```
+
+The desktop env vars it sets are all real backend-resolution knobs:
+
+| Variable | Role in `hgui` |
+|----------|----------------|
+| `HERMES_DESKTOP_HERMES_ROOT` | Runs the backend from **this worktree**, not the packaged/PATH `hermes`. |
+| `HERMES_DESKTOP_PYTHON` | Reuses the deps checkout's venv instead of re-resolving a Python. |
+| `HERMES_DESKTOP_IGNORE_EXISTING` | Ignores any `hermes` on `PATH` so it can't shadow the worktree. |
+| `HERMES_DESKTOP_CWD` | Opens the desktop chat rooted at the worktree. |
+
+Two footguns `hgui` handles that a bare `npm run dev` does not:
+
+- **Port `5174` is fixed.** A second `hgui` collides with the first's Vite server; the helper kills the stale one first.
+- **Orphaned children.** Electron frequently survives `Ctrl+C` through `concurrently` without reaping the ephemeral `dashboard --port 0` backend or the Vite process. The `EXIT`/`INT`/`TERM` trap runs a cleanup that terminates the Electron shell, the `:5174` listener, and any `--port 0` dashboard it spawned.
+
+## Shared helpers
+
+Both functions resolve the enclosing checkout and link deps the same way:
+
+```bash
+# The enclosing worktree, verified as a real Hermes checkout.
+_hermes_root() {
+ local root
+ root="$(git rev-parse --show-toplevel 2>/dev/null)" || return 1
+ [[ -f "$root/hermes_cli/main.py" && -d "$root/ui-tui" ]] && print -r "$root"
+}
+
+# Symlink node_modules from the deps checkout — never over an existing tree.
+_hermes_link_deps() {
+ local target="${1%/}" source="${2%/}"
+ [[ -d "$source/node_modules" ]] || return 1
+ [[ -e "$target/node_modules" ]] || ln -s "$source/node_modules" "$target/node_modules"
+}
+
+# Reap ephemeral backends Electron leaves behind on exit.
+_hermes_gui_cleanup() {
+ local root="$1"
+ [[ -n "$root" ]] && pkill -TERM -f "${root}/apps/desktop/node_modules/electron" 2>/dev/null
+ lsof -t -i:5174 >/dev/null 2>&1 && killport 5174
+ pgrep -f 'hermes_cli\.main.*dashboard.*--port 0' 2>/dev/null | xargs -r kill -TERM 2>/dev/null
+}
+```
+
+`killport` is a small helper of your own (`lsof -ti:$1 | xargs kill`); substitute your preferred incantation.
+
+:::info Why link only when locks match
+A symlink to a divergent `node_modules` is worse than no install — the worktree would build against packages its own lockfile never declared. Byte-comparing `package-lock.json` is the cheap, exact guard: same lock ⇒ safe to borrow; different lock ⇒ `npm ci` locally. Vite realpaths symlinks before enforcing `server.fs.allow`, which is why `apps/desktop/vite.config.ts` whitelists the real `node_modules` location.
+:::
+
+## See also
+
+- [Git Worktrees](../user-guide/git-worktrees.md) — the isolation model these helpers build on
+- [TUI](../user-guide/tui.md) — `hermes --tui --dev` and the `HERMES_TUI_DIR` prebuild path
+- [Desktop App](../user-guide/desktop.md) — building from source and the backend resolution ladder
+- [`apps/desktop/README.md`](https://github.com/NousResearch/hermes-agent/blob/main/apps/desktop/README.md) — dev server, sandbox script, and packaging
+- [Environment Variables](../reference/environment-variables.md) — every `HERMES_*` variable Hermes reads
diff --git a/website/docs/reference/environment-variables.md b/website/docs/reference/environment-variables.md
index 26ce82cfd7f6..0e2811bcae29 100644
--- a/website/docs/reference/environment-variables.md
+++ b/website/docs/reference/environment-variables.md
@@ -510,6 +510,8 @@ Three dashboard-auth providers ship in the box. For a remote Hermes Desktop conn
| `HERMES_DESKTOP_HERMES_ROOT` | Desktop source-checkout override used by `hermes desktop --hermes-root`; checked before the packaged first-launch install or an existing `hermes` on `PATH`. |
| `HERMES_DESKTOP_IGNORE_EXISTING` | Set to `1` to make Desktop ignore an existing `hermes` on `PATH` during backend resolution. Equivalent to `hermes desktop --ignore-existing`. |
| `HERMES_DESKTOP_CWD` | Initial project directory for Desktop chat sessions. Set by `hermes desktop --cwd`. |
+| `HERMES_DESKTOP_PYTHON` | Absolute path to a Python interpreter for the backend, checked before Electron auto-resolves one for the source checkout. Used by worktree dev helpers (see [TUI & Desktop from Worktrees](../developer-guide/worktree-ui-dev.md)) to reuse a shared venv. |
+| `HERMES_DESKTOP_DEV_SERVER` | Vite dev-server URL the Electron shell loads instead of the packaged bundle (e.g. `http://127.0.0.1:5174`). Set automatically by `npm run dev`; only relevant when hacking on the app. |
### Microsoft Graph (Teams Meetings)
diff --git a/website/docs/user-guide/git-worktrees.md b/website/docs/user-guide/git-worktrees.md
index 56bce3dda801..2d665135a299 100644
--- a/website/docs/user-guide/git-worktrees.md
+++ b/website/docs/user-guide/git-worktrees.md
@@ -171,3 +171,7 @@ This combination gives you:
- Strong guarantees that different agents and experiments do not step on each other.
- Fast iteration cycles with easy recovery from bad edits.
- Clean, reviewable pull requests.
+
+## Developing the UI surfaces across worktrees
+
+The TypeScript surfaces (`ui-tui/`, `apps/desktop/`) each need a `node_modules`, which a fresh `npm ci` per worktree duplicates across every branch. If you hack on the TUI or desktop app from multiple worktrees, see [TUI & Desktop from Worktrees](../developer-guide/worktree-ui-dev.md) for the `htui` / `hgui` helpers that share one install by symlink.
diff --git a/website/docs/user-guide/tui.md b/website/docs/user-guide/tui.md
index 803ab61ecc86..91a56b164b7a 100644
--- a/website/docs/user-guide/tui.md
+++ b/website/docs/user-guide/tui.md
@@ -79,6 +79,10 @@ Click anywhere on a section header (or its chevron) to toggle it. The Tools list
On first launch Hermes installs the TUI's Node dependencies into `ui-tui/node_modules` (one-time, a few seconds). Subsequent launches are fast. If you pull a new Hermes version, the TUI bundle is rebuilt automatically when sources are newer than the dist.
+:::tip Working across git worktrees?
+Contributors who run `hermes --tui --dev` from many worktrees can share one `node_modules` instead of installing per checkout — see [TUI & Desktop from Worktrees](../developer-guide/worktree-ui-dev.md).
+:::
+
### External prebuild
Distributions that ship a prebuilt bundle (Nix, system packages) can point Hermes at it:
diff --git a/website/sidebars.ts b/website/sidebars.ts
index d92309fbd637..a6c9d28fd521 100644
--- a/website/sidebars.ts
+++ b/website/sidebars.ts
@@ -716,6 +716,7 @@ const sidebars: SidebarsConfig = {
collapsed: true,
items: [
'developer-guide/contributing',
+ 'developer-guide/worktree-ui-dev',
{
type: 'category',
label: 'Architecture',