aether workspace
Manage cloud workspaces. Each workspace is a full Linux VM with persistent storage where the agent runs your code. Aliases:workspaces, ws
Usage
Subcommands
| Subcommand | Description |
|---|---|
list | List workspaces in the current project |
get <id> | Get workspace details |
start <id> | Start a stopped workspace |
stop <id> | Stop a running workspace |
delete <id> | Delete a workspace |
ssh [workspace] | Open an interactive SSH session |
Workspace States
| State | Description |
|---|---|
stopped | Workspace is not running |
starting | Workspace is booting up |
running | Workspace is active and accepting connections |
stopping | Workspace is shutting down |
error | Workspace encountered an error during state transition |
stop_failed | Workspace failed to stop cleanly |
aether workspace list
List all workspaces in the current project.| Flag | Description |
|---|---|
--status | Filter by workspace state |
aether workspace get
Get details for a specific workspace.aether workspace start
Start a stopped workspace.| Flag | Description |
|---|---|
--no-wait | Return immediately without waiting for the workspace to reach running state |
aether workspace stop
Stop a running workspace. The workspace retains its persistent storage.| Flag | Description |
|---|---|
--no-wait | Return immediately without waiting for the workspace to reach stopped state |
aether workspace delete
Delete a workspace and its persistent storage. This action is irreversible.| Flag | Description |
|---|---|
--force | Skip confirmation prompt |
aether workspace ssh
Open an interactive terminal session in a running workspace. If no workspace ID is given, an interactive picker is displayed.Ctrl+D or type exit to disconnect.