> ## Documentation Index
> Fetch the complete documentation index at: https://docs.versuno.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# versuno switch

> Set the active workspace (team or personal).

```
versuno switch <teamId>
```

Persists the active workspace to `.versuno/.temp/workspace-ref`. All subsequent commands (`assets list`, `push`, `pull`, etc.) will operate against this workspace until you switch again.

Pass `personal` to go back to your personal workspace.

The active workspace can also be overridden per-command via the `VERSUNO_WORKSPACE` environment variable.

## Arguments

| Argument | Required | Description                            |
| -------- | -------- | -------------------------------------- |
| `teamId` | Yes      | Team ID (UUID or slug) or `"personal"` |

## Example

```bash theme={null}
# Switch to a team workspace
versuno switch tm_abc123
# → Switched to workspace: tm_abc123

# Switch back to personal workspace
versuno switch personal
# → Switched to workspace: personal
```

## See also

* [versuno teams list](/cli/teams-list) — list available team IDs
