Prized docs

Sessions.

Your shell runs on the box. A network drop or a closed lid ends the connection but not the session; reconnect and you are where you left off, running processes included.

Connect

Terminal
prized ssh

This lands in a persistent tmux session named main; run it again from anywhere and you attach to the same one. A suspended box wakes on connect. On Windows it runs the OpenSSH client that ships with Windows; mosh and dragging files in are not on Windows yet.

CommandWhat it does
prized ssh -s agentsAttach to, or create, a named session. Letters, digits, hyphens, and underscores; no dots.
prized ssh --lsList sessions.
prized ssh --kill agentsClose a session.
prized ssh --rawA plain shell without tmux.
prized ssh -- make testRun one command and get its exit code back.
prized agents run codexStart a coding agent in a detached session, no laptop attached. See Agents.

Sessions survive disconnects and closed lids. What they survive on a pause depends on the box size, and a busy session holds off auto-pause; see Pause and resume.

Mosh for flaky networks

Terminal
brew install mosh   # macOS; on Linux: sudo apt install mosh
prized mosh

The same tmux session over UDP: keystrokes echo instantly, and the connection survives IP changes and laptop sleep. The box needs no public port; the traffic uses the SSH tunnel.

Drag files in

Drag a file from Finder (or your file manager) onto a prized ssh or prized mosh window and it lands on the box: the CLI uploads it over the tunnel into a fresh folder under ~/.prized/drops/ and pastes the box path instead of the local one. Drop a screenshot into Claude Code's prompt this way and the agent can open it.

  • Size: one file or several per drop, up to 512 MB; drops older than 7 days are cleaned out.
  • Only a paste that is nothing but local file paths is rewritten. If an upload fails, the original local path is pasted and the tmux status line says why.
  • Off for one session with --no-drop-upload, or for good with drop_upload = false under [ssh] in the config.

Editors and other tools

  • Your local editor on the synced folder. Saves to ~/Prized/myproject land on the box in under a second.
  • Anything that speaks SSH. prized setup installs an SSH config stanza, so ssh box-3fa9, Cursor and VS Code Remote-SSH, scp, rsync, and git remotes all reach the box by hostname. The ChatGPT desktop app rides the same stanza (Codex remote); Claude Desktop rides it with a restricted device key Prized installs for you (Claude Desktop remote).

Something unclear or out of date?

On this page