About Workspaces
Every Scion agent has a dedicated Workspace, mounted at /workspace inside the agent’s container. This is where the agent reads code, makes changes, and runs commands.
Scion provides flexible options for how this workspace is backed on your host machine, ranging from isolated git worktrees to direct directory mounts.
Workspace Resolution
Section titled “Workspace Resolution”When you start an agent, Scion determines its workspace based on the following precedence:
-
Explicit Workspace (
--workspaceflag): If you provide a path via--workspace, Scion mounts that directory directly. This works in both Git and non-Git environments. -
Git Worktree (Git repositories): If you are in a Git repository and do not provide an explicit workspace, Scion uses Git Worktrees to give the agent its own isolated working directory and branch.
-
Project Root / CWD (Non-Git environments): If you are not in a Git repository, Scion mounts the project root (or current directory for global agents) directly.
1. Explicit Workspaces (--workspace)
Section titled “1. Explicit Workspaces (--workspace)”You can tell Scion exactly which directory to use as the workspace. This is useful for:
- Working on a specific subfolder.
- Using a shared directory across multiple agents.
- Working on a path outside the current repository without creating a worktree.
# Mount a specific directoryscion start my-agent "fix bugs" --workspace ./my-service- Behavior: The specified directory is mounted directly to
/workspace. - Isolation: None. Changes made by the agent are immediately visible on the host and to any other agents sharing this directory.
- Git: No new worktree or branch is created, even if inside a repo.
2. Git Worktrees (Automatic Isolation)
Section titled “2. Git Worktrees (Automatic Isolation)”When working inside a Git repository without an explicit --workspace, Scion automatically manages Git Worktrees. This ensures that each agent has its own isolated checkout of the code, allowing them to work on different branches simultaneously without interfering with your main working directory.
Prerequisites
Section titled “Prerequisites”- Git 2.47.0 or newer is required (for relative path support).
Branch Resolution
Section titled “Branch Resolution”Scion determines which branch to check out in the worktree:
-
Explicit Branch (
--branch,-b):Terminal window scion start my-agent -b feature/login "add logging"- If the branch exists and has a worktree, Scion reuses the existing worktree (see below).
- If the branch exists but has no worktree, Scion creates a new worktree for it.
- If the branch doesn’t exist, Scion creates it (based on current HEAD) and a worktree.
-
Agent Name Matching: If you don’t specify a branch, Scion checks if a branch named after the agent exists (e.g.,
my-agent).- Match Found: It behaves exactly as if you passed
-b my-agent. - No Match: Scion creates a new branch named
my-agentand a corresponding worktree.
- Match Found: It behaves exactly as if you passed
Reusing Existing Worktrees
Section titled “Reusing Existing Worktrees”If you request a branch that is already checked out in another worktree (e.g., by another agent or manually created), Scion detects this.
- Instead of failing or creating a conflict, Scion mounts the existing worktree path.
- A warning is displayed:
Warning: Relying on existing worktree for branch '...'. - This allows multiple agents to collaborate on the same branch/worktree if desired.
3. Non-Git Environments
Section titled “3. Non-Git Environments”In non-git projects (where no .git directory is found):
- Scion defaults to mounting the project root (the directory containing
.scion). - For global agents, it defaults to the current working directory.
- All agents share the same files. There is no isolation or branching.
4. Hub-Managed Workspaces
Section titled “4. Hub-Managed Workspaces”When a Scion Hub is enabled, workspace strategy changes depending on the grove type. The Hub supports three types of remote workspaces:
Hub-Native Groves (no git repository)
Section titled “Hub-Native Groves (no git repository)”Hub-Native groves allow you to create project workspaces directly through the Hub API and Web Dashboard without an external Git repository.
- The Hub automatically initializes a seeded
.scionstructure. - Workspace files are managed locally by the Hub and its distributed runtime brokers.
- You can directly download individual workspace files or generate ZIP archives of entire groves using the Hub API or Web Dashboard, making it easy to export your data.
Git Groves (clone-based, Hub-managed)
Section titled “Git Groves (clone-based, Hub-managed)”Groves created from a remote git repository URL use clone-based provisioning: the agent’s workspace is initialized from the repository at startup.
# Create a git grove from a URL (Hub-managed)scion hub grove create https://github.com/org/repo.gitHow Git Groves Work
Section titled “How Git Groves Work”- The Hub stores the git remote URL and default branch as grove metadata.
- When an agent starts, the Runtime Broker injects
SCION_GIT_CLONE_URL,SCION_GIT_BRANCH, andSCION_GIT_DEPTHas environment variables. - The
sciontool initprocess inside the container uses agit init+git fetchstrategy to provision the workspace into/workspace. This approach handles workspaces that may already contain.scionmetadata or.scion-volumesdirectories, and properly clears stale artifacts before initialization. - A feature branch
scion/<agent-name>is created and checked out automatically.
Grove ID Format
Section titled “Grove ID Format”Git-backed groves use deterministic UUID v5 identifiers derived from the namespace and the normalized git URL. This ensures the same repository always produces the same grove ID regardless of the access protocol (e.g., https:// vs git@). Hub-native groves use random UUID v4 identifiers.
Agent Branch Strategy
Section titled “Agent Branch Strategy”Each agent gets its own branch named scion/<agent-name>. This prevents conflicts when multiple agents work on the same repository concurrently.
Shallow Clones
Section titled “Shallow Clones”By default, git groves use a shallow clone with depth=1 for fast startup. If an agent needs full history (e.g., for git log or git blame), it can fetch the rest:
git fetch --unshallowEnvironment Variables
Section titled “Environment Variables”| Variable | Description | Default |
|---|---|---|
SCION_GIT_CLONE_URL | HTTPS URL of the repository to clone | (required) |
SCION_GIT_BRANCH | Branch to clone | main |
SCION_GIT_DEPTH | Clone depth | 1 |
Authentication is handled via the GITHUB_TOKEN environment variable, injected from the grove’s secrets or your local environment through the env-gather flow.
Linked Groves (clone-based, even when the repo is local)
Section titled “Linked Groves (clone-based, even when the repo is local)”When you link an existing local git project to a Hub (scion hub link), the grove becomes Hub-managed. Once linked, all agents started via the Hub use clone-based provisioning, even if the broker machine already has the repository checked out locally.
This is intentional: the Hub enforces a consistent, unambiguous workspace strategy for all git-based groves. Local worktrees are a local-mode feature only.
What this means in practice:
- SSH credentials are not used for workspace provisioning. Even if your machine has SSH keys configured for the repo, agents always clone via HTTPS using
GITHUB_TOKEN. - A
GITHUB_TOKENis required. Set it as a grove or user secret on the Hub, or ensure it is present in your local environment (the env-gather flow will collect it):Terminal window scion hub secret set --grove my-project GITHUB_TOKEN=ghp_xxxxxxxxxxxx - The CLI will tell you when this mode is in effect. When starting an agent via a Hub-linked git grove, you will see:
Using hub, cloning repo https://github.com/org/repo.git(Hub mode uses HTTPS clone with GITHUB_TOKEN; local worktrees are not used)
- Merging agent work is done via git push and pull request, not by merging worktrees back into your local checkout.
To return to local worktree-based mode, disable hub integration:
scion hub disable# or run with --no-hubscion start my-agent --no-hub "fix the bug"5. Grove Shared Directories
Section titled “5. Grove Shared Directories”Grove Shared Directories provide a persistent, mutable storage layer that can be shared between multiple agents within a single grove. This is ideal for sharing build artifacts, shared caches, or state files without relying on version control or the Hub database.
Managing Shared Directories
Section titled “Managing Shared Directories”You can manage shared directories using the scion shared-dir CLI commands:
# Create a new shared directoryscion shared-dir create <name>
# List shared directories in the current grovescion shared-dir list
# View details about a specific shared directoryscion shared-dir info <name>
# Remove a shared directory (permanently deletes contents)scion shared-dir remove <name>Mounting Shared Directories
Section titled “Mounting Shared Directories”When an agent is created in a grove that has shared directories, they are automatically mounted into the agent’s container.
By default, they are available at two locations within the agent:
- Standard Path:
/scion-volumes/<name> - Workspace Path:
/workspace/.scion-volumes/<name>
Storage Backends
Section titled “Storage Backends”- Local Workstations: Backed by directories on the host filesystem.
- Kubernetes: Backed by PersistentVolumeClaims (PVCs) with grove-scoped lifecycle management, ensuring data persists across pod restarts and can be accessed by any agent in the grove.
The cdw Command
Section titled “The cdw Command”Scion provides a helper command, cdw (Change Directory to Worktree), to quickly navigate to an agent’s workspace on your host.
scion cdw <agent-name>- Spawns a new shell inside the agent’s workspace directory.
- Works for both managed worktrees and manual mounts (if resolvable).
Will also take a branch/worktree name outside of scion agents, most useful for getting back to main.
scion cdw <agent-name>Cleanup
Section titled “Cleanup”When you delete an agent:
scion delete <agent-name>- Worktrees: The worktree directory is removed and git metadata is pruned.
- Branches: By default, the branch is deleted. Use
--preserve-branch(or-b) to keep it. - Explicit Workspaces: Directories mounted via
--workspaceare NOT deleted. Scion only cleans up resources it created.