JJETSYNGet in touch

Quickstart

Go from an empty terminal to a live Claude Code session in your own cloud cell in a few minutes: install the CLI, sign in once, then connect.

Install one script, sign in once in your browser, and you are inside Claude Code running in your own cloud cell. Nothing to configure, no API key to manage, and the work runs in the cloud, not on your laptop. It takes a few minutes.

Requirements

You need a Mac or Linux machine, curl to run the installer, and a browser for the one-time sign-in. The CLI is a single self-contained script: no Claude, no SDK, and no API key ever lives on your machine.

From zero to a live session#

Two commands, and most of that is one-time setup. Install the CLI, then run jetsyn. The first run signs you in and drops you into your cell; every run after that goes straight to the cell.

bash
curl -fsSL https://jetsyn.ai/install | sh
  1. 1

    Install the CLI

    Run the one-liner above. It downloads a single self-contained script, installs it onto a directory already on your PATH, marks it executable, and verifies it with jetsyn --version. If the install directory is not on your PATH, the installer prints a one-line export PATH=... to run first.

  2. 2

    Sign in once

    Run jetsyn. The first run opens your browser to approve this terminal. Approve with your Jetsyn account, or create one. The sign-in is saved locally with restricted permissions, so you never sign in again on this machine. Your account also decides which cloud cell the terminal lands in.

  3. 3

    You are in your cell

    After approval, jetsyn opens Claude Code running inside your cloud cell at /workspace, with your folders, memory, and compute. Later runs skip the browser and land here directly.

Reach your cell three ways#

The same cloud cell has more than one door. Which one you use depends on how you want to work: drive the model yourself, or talk to your AI employee and let it do the work. The connection is identical; only the command that runs inside the cell changes.

CommandWhat it opensWhen to use
jetsyn or jetsyn connectClaude Code, live in your cell's foldersDrive the model yourself, directly over your files
jetsyn agentOne Jetsyn employee you converse withTalk to your AI employee; it does the work and fans out to its own sub-agents
jetsyn shellA plain shell in the cellMove around the filesystem or run a quick command
jetsyn resumeA saved session, resumedPick up a Claude Code session where you left off

Each of these takes an optional cell name, for example jetsyn connect my-cell. With no name, the terminal lands in the cell bound to your account. Name a cell to open a specific one you belong to.

connect vs agent

jetsyn puts you directly in the folders: you drive Claude Code yourself. jetsyn agent is conversational: you talk to your AI employee and it does the work. Same cell, same files, different depth of reach.

Tip

Inside jetsyn agent, Ctrl-C stops the current turn without ending the conversation. Ctrl-D, exit, or quit ends the session.

The commands you'll use first#

CommandWhat it does
jetsyn --helpList every command and flag
jetsyn --versionPrint the installed CLI version
jetsyn login / jetsyn logoutRe-verify your sign-in, or forget the stored sign-in
jetsyn updateUpdate the CLI to the latest version
jetsyn --printPrint the resolved launch command without running it
jetsyn --no-launchPreview the intro and resolved command, then stop
jetsyn -- <args>Append your own arguments to the underlying agent
jetsyn localLaunch the recommended agent on this machine instead of the cloud cell

Where your session runs#

Everything you do through the CLI happens inside your cloud cell: a private container holding one brain and one AI employee, with your data as folders on its volume. Your laptop only ever holds the jetsyn script, and no key sits on your machine. To understand the cell and the model it is built on, read What Jetsyn is.


Next steps#