Session Commands
scc sessions
Section titled “scc sessions”List recent sessions (team-scoped by default).
scc sessions [OPTIONS]Aliases: scc session, scc session list
Options:
| Option | Description |
|---|---|
-n, --limit N | Number of sessions to show (default: 10) |
-t, --team TEAM | Filter by team |
--all | Show sessions for all teams (ignore active team) |
-s, --select | Interactive picker to select a session |
Examples:
# List recent sessions for the active teamscc sessions
# Show more sessionsscc sessions --limit 20
# Interactive session picker (team-scoped)scc sessions --select
# Show all teamsscc sessions --all
# Filter by a specific teamscc sessions --team backendOutput includes:
- Session name
- Workspace path
- Last used time
- Team profile
scc container
Section titled “scc container”List SCC-managed Docker containers (alias of scc list).
scc container [--interactive]Examples:
# List containersscc container
# Interactive container pickerscc container --interactivescc context
Section titled “scc context”Manage work contexts (team + workspace associations).
Work contexts track which team profile you used with which workspace, enabling quick resume without re-selecting.
scc context clear
Section titled “scc context clear”Clear stored work contexts.
scc context clear [OPTIONS]Options:
| Option | Description |
|---|---|
-y, --yes | Skip confirmation prompt |
Examples:
# Clear with confirmationscc context clear
# Clear without confirmationscc context clear --yesWhen to clear contexts:
- After switching teams
- When context associations are incorrect
- Before starting fresh with new setup