Beam a Paseo workspace's working tree into your one running dev environment; beam out safely restores your checkout.
paseo plugin add maxwell-01/paseo-beam --ref mainSecurity status covers commit 178fb37f3e7d. This command tracks main. Refresh the listing before installing if the branch changed.
From the plugin's README
paseo plugin install /absolute/path/to/paseo-beam
paseo plugin ls
Then open a workspace and either click the Beam (⚡) button in the workspace header, or open the Beam panel (or run Open Beam from the command center), and beam in.
README
A Paseo plugin that continuously mirrors a workspace's entire working tree onto your local main checkout on disk, so an already-running dev environment with live-reload shows the workspace's changes without you switching branches there.
Requires Paseo 0.8 or newer.
Similar to Conductor's Spotlight feature.
While a beam is active, Beam watches the workspace directory and, on every change, overwrites your main checkout to match the workspace's current working tree:
HEAD, index, and full working tree
including uncommitted, staged, and untracked files), then starts a file watcher on the workspace
and runs an immediate sync. Each sync moves main's branch to the workspace's HEAD and rewrites
main's tracked working tree and index to a snapshot of the workspace's full working tree.The mirror is the full working tree, including uncommitted and untracked files, not just
committed changes. .gitignore is respected, so ignored files (for example .env, node_modules)
are not copied from the workspace, and main's own ignored files survive each sync. This is
intentional: your running stack keeps its local environment.
Syncs are mtime-stable: only files that actually differ are rewritten, so the dev server's watcher only reacts to real changes.
Beam appears in three places:
paseo plugin install /absolute/path/to/paseo-beam
paseo plugin ls
Then open a workspace and either click the Beam (⚡) button in the workspace header, or open the Beam panel (or run Open Beam from the command center), and beam in.
Beam is reversible. Beaming in is safe even when main has uncommitted, staged, or untracked
work: before the first sync, Beam captures main's complete state as a git object snapshot stored
under refs/beam/original (a real commit chain in the object store — not git stash, which is
left untouched). Beaming out restores main's branch pointer, working tree, index, and untracked
files to exactly that snapshot, so it is as if the beam never happened, and it deletes the temporary
ref. Beaming in on a dirty main is therefore fine.
Ignored files (for example .env, node_modules) are never captured, never mirrored, and never
touched during beam-in, sync, or beam-out.
~/.paseo-beam-active.json) plus a per-checkout state file
(<mainPath>/.git/beam-state.json). Beaming a second workspace — even onto a different checkout —
while one is already active is rejected; beam out first..git, node_modules, or .context, and any
filename containing .tmp..refs/beam/original even if
the state file is lost, because that ref is a 3-commit chain: the snapshot commit's tree is main's
full pre-beam working tree, its parent commit's tree is the pre-beam index, and its grandparent is
the pre-beam HEAD. Restore by hand with:
git -C <mainPath> read-tree --reset -u refs/beam/original^{tree}
git -C <mainPath> reset --soft refs/beam/original^^
git -C <mainPath> read-tree refs/beam/original^^{tree}
git -C <mainPath> update-ref -d refs/beam/original
A plain git -C <mainPath> reset --hard refs/beam/original only gets the working-tree contents
right — it leaves the branch pointed at the synthetic beam: pre-beam snapshot commit instead of
your real pre-beam HEAD, and it collapses whatever was staged vs. unstaged into one committed
state. Use the four commands above to reproduce the pre-beam state exactly.npm install
npm run typecheck
npm test
Scanned 14 Sep 2026, 21:51 UTC from maxwell-01/paseo-beam.