Onboarding Wizard
What you will learn: How to set up Scion in Workstation mode using the browser-based onboarding wizard — from a fresh install to your first project — without touching a config file.
The onboarding wizard is the fastest way to get the hosted experience running locally. When you start the Workstation combo server for the first time, Scion opens a guided setup in your browser that walks through machine configuration, environment checks, runtime selection, harness images, and creating your first project.
Prerequisites
Section titled “Prerequisites”Before you start, you need a working Scion install and a container runtime. See the Installation guide for details. In short:
- Scion installed with its web assets. Use Homebrew (
brew install scion) for a ready-to-run install; a barego installdoes not embed the web UI, so the wizard would load blank. - A container runtime — Docker, Podman, or Apple Container.
- Git 2.47 or later (the wizard flags older versions).
You do not need to run scion init --machine first — the wizard handles machine initialization for you.
Launching the wizard
Section titled “Launching the wizard”Start the Workstation server:
scion server startOn a machine that has not been set up yet, Scion prints the web URL and automatically opens your browser to the wizard:
http://127.0.0.1:8080/onboardingIf the browser does not open (for example over SSH, in a headless environment, or when SCION_NO_BROWSER is set), open that URL manually. The port is 8080 by default.
The steps
Section titled “The steps”The wizard runs through six steps and finishes with a confirmation screen. Each step can be revisited with Back, and several can be skipped and completed later from the dashboard.
1. Welcome & identity
Section titled “1. Welcome & identity”Enter a display name and email. This identity is attached to the agents and activity you create on this workstation. Provide at least one of the two to continue.
2. System check
Section titled “2. System check”The wizard runs diagnostics against your environment and shows each result as pass, warn, or fail. Use Re-check after fixing anything. A common warning is an out-of-date Git — Scion needs Git 2.47+ for agent worktrees; upgrade (for example brew install git) and re-check. You can only advance once the checks report ready.
3. Container runtime
Section titled “3. Container runtime”Scion detects the runtimes available on your machine and preselects the best one. Pick from Docker, Podman, or Container (Apple Virtualization); runtimes that were not detected are shown but disabled.
4. Image registry
Section titled “4. Image registry”Enter the container image registry that hosts the Scion harness images (for example us-central1-docker.pkg.dev/my-project/scion). Images such as <registry>/scion-claude:latest are pulled from here in the next step. If you are not ready, choose Skip for now and set it later.
5. AI harnesses
Section titled “5. AI harnesses”Select the harnesses you want available (Claude Code, Gemini CLI, Codex, OpenCode, and others). For each selected harness the wizard checks whether its container image is present:
- ready — the image is available locally.
- available — the image exists in the registry and can be pulled.
- not found / error — the image could not be located.
Use Pull selected to fetch any images that are not local yet (progress streams live), then Re-check to confirm. You can add or reconfigure harnesses later from Hub settings, or Skip for now.
6. First workspace
Section titled “6. First workspace”Create your first project. The wizard offers three ways to start:
- Hub-managed project — a workspace the Hub creates and manages for you; no git repository required.
- Link a git repo — connect an existing git repository for source-controlled workspaces.
- Add local directory — link a local directory that stays where it is and is operated on in place. The wizard validates the path and warns if it is already a git repo or already linked.
This step is optional — choose Skip for now to create projects later from the dashboard.
You’re all set
Section titled “You’re all set”The final screen confirms your workstation is configured. Click Go to Dashboard to open the Web Dashboard at http://127.0.0.1:8080 and start running agents.
After onboarding
Section titled “After onboarding”- Manage the running server with
scion server status,scion server restart, andscion server stop. See Workstation Server Mode for the combo server, network bridges, and lifecycle details. - Learn your way around the Web Dashboard.
- Understand the pieces you just configured in Core Concepts.
See also
Section titled “See also”- Choosing a Mode — where Workstation mode fits among Local and the hosted tiers.
- Installation — prerequisites and install methods.
- Workstation Server Mode — the server the wizard starts.