bowline
Getting started

Add a machine

Put the same ~/Code workspace on a second laptop or desktop with one approval step.

Adding a second machine is the moment Bowline earns its keep. You install, log in, and approve once. Then the same ~/Code tree is there, with the same projects, env, and in-progress work. This page walks through it.

This guide assumes you already have one trusted device running Bowline.

1. Install and log in on the new machine

On the new machine, install Bowline and log in with the same workspace root.

Terminal
bowline login --root ~/Code

Logging in authenticates your account. The new machine is now signed in, but it can't decrypt your workspace yet. That's by design: account login and workspace decryption access are separate steps.

2. Request workspace access

The new machine raises a Device Approval Request to ask for decryption access. Check it on the new machine:

Terminal
bowline status

Bowline shows a short matching code on the new machine. You'll confirm that same code on a device you already trust, so you know exactly which machine you're letting in.

3. Approve from a trusted device

On a machine that's already trusted, list pending requests and approve the new one. Confirm the code shown on the new machine matches the one here.

Terminal
bowline devices
bowline approve

bowline approve grants the first pending request. To target a specific request, pass its ID: bowline approve <request>. You can preview the change first with --dry-run.

An approved device receives workspace-wide trust for the accepted ~/Code root. Bowline doesn't make you manage per-project or per-path device permissions. Agent leases, not device trust, scope an agent's work.

4. Start working

Back on the new machine, the workspace tree is now visible and projects hydrate on touch. Open a project and run it.

Terminal
bowline status
cd ~/Code/acme/web
pnpm dev

Dependencies restore and env files materialize automatically, so your usual run command works without any per-machine setup.

If no trusted device is available

If you've lost access to every trusted device, you can still get in with a Recovery Key. Follow recover access to your workspace.

Removing a machine

When you retire a machine, revoke its trust from another device so it can no longer decrypt the workspace.

Terminal
bowline devices
bowline revoke <device>

Revoking trust stops future decryption on that device. It does not delete the project files already on machines that still have them.

Next steps

On this page