Skip to content

Team Commands

List available team profiles (default).

Terminal window
scc team

Supports the same options as scc team list (e.g., --verbose, --sync).


List available team profiles.

Terminal window
scc team list [OPTIONS]

Options:

OptionDescription
-v, --verboseShow full descriptions
-s, --syncSync team configs from organization
--jsonOutput as JSON
--prettyPretty-print JSON

Examples:

Terminal window
# List teams
scc team list
# List with descriptions
scc team list --verbose
# Sync and list
scc team list --sync

Show the currently selected team.

Terminal window
scc team current [OPTIONS]

Options:

OptionDescription
--jsonOutput as JSON
--prettyPretty-print JSON

Switch to a different team profile.

Terminal window
scc team switch [TEAM_NAME] [OPTIONS]

Arguments:

ArgumentDescription
TEAM_NAMETeam name (interactive picker if omitted)

Options:

OptionDescription
--non-interactiveFail if team name not provided
--jsonOutput as JSON
--prettyPretty-print JSON

Examples:

Terminal window
# Interactive picker
scc team switch
# Switch directly
scc team switch backend
# Automation mode
scc team switch frontend --non-interactive

Show detailed information about a team.

Terminal window
scc team info <TEAM_NAME> [OPTIONS]

Arguments:

ArgumentDescription
TEAM_NAMETeam name to show details for

Options:

OptionDescription
--jsonOutput as JSON
--prettyPretty-print JSON

Output includes:

  • Description
  • Plugin list
  • Marketplace info (if defined)
  • Federation mode and config source (for federated teams)
  • Trust grants (for federated teams)

Validate team configuration against organization policies or validate a team config file.

Terminal window
scc team validate [TEAM_NAME] [OPTIONS]

Arguments:

ArgumentDescription
TEAM_NAMETeam name to validate (defaults to current team if omitted)

Options:

OptionDescription
-f, --fileValidate a local team config file against the schema
-v, --verboseShow detailed validation output
--jsonOutput as JSON
--prettyPretty-print JSON

Examples:

Terminal window
# Validate current team
scc team validate
# Validate specific team
scc team validate backend
# Validate a team config file
scc team validate --file team-config.json
# Detailed validation output
scc team validate backend --verbose

Validates:

  • Plugin additions respect delegation and allowlists
  • Security blocks (blocked_plugins) are enforced
  • Trust grants are valid (for federated teams)
  • Cache freshness is reported for federated teams
  • --file validates team config against the team schema