NextuneNextune Docs
CLI

Workspace

List, switch, and inspect your active workspace.

Workspace commands use the alias ws.

List workspaces

nextune workspace list
# or
nextune ws list

Example output:

NAME              ID                                   PERSONAL  CURRENT
My Workspace      3fa85f64-5717-4562-b3fc-2c963f66afa6  yes       *
Client Project    7c9e6679-7425-40de-944b-e07fc1f90ae7          

The * marks your active workspace.

Switch workspace

Interactive picker:

nextune workspace switch

By name, slug, or ID:

nextune workspace use "Client Project"
nextune workspace use client-project
nextune workspace use 7c9e6679-7425-40de-944b-e07fc1f90ae7

Current workspace

nextune workspace current

One-off override

Use --workspace on any command without changing your saved default:

nextune --workspace 7c9e6679-7425-40de-944b-e07fc1f90ae7 app list

Or set NEXTUNE_WORKSPACE_ID in your environment.

On this page