Approved Plugins
Your team’s approved Claude Code plugins, pre-configured and ready to use.
Welcome to your new team! This guide explains what SCC provides automatically and how to get started.
When you run scc setup and select your team profile, you automatically receive:
Approved Plugins
Your team’s approved Claude Code plugins, pre-configured and ready to use.
MCP Servers
Access to MCP servers like context7, shadcn, or team-specific tools.
Security Policies
Organization security policies applied automatically—no action needed.
Command Guardrails
Safety-net protection against destructive git commands (if enabled).
Your org admin and team lead handle all configuration. You just code.
Install SCC CLI
pip install scc-cliRun setup and enter your org URL
scc setupYour team lead or org admin will provide the URL. It looks like:
https://github.com/my-org/scc-config/raw/main/org-config.jsonhttps://gitlab.example.com/devops/scc-config.jsonSelect your team profile
You’ll see a list of available teams. Pick yours:
Available teams:1. backend2. frontend3. platform
Select team: 1Verify your setup
scc doctorStart coding!
cd ~/your-projectsccTo see what your team profile includes:
# List teamsscc team
# Show current team settingsscc team info <team-name>
# Show full effective configuration with sourcesscc config explainIf you work on multiple teams:
# List available teamsscc team
# Switch to a different team interactivelyscc team switch
# Or switch directlyscc team switch frontendYou can add a .scc.yaml file to your repository for project-specific settings:
# Add plugins specific to this projectadditional_plugins: - "project-linter@internal"
# Override session settingssession: timeout_hours: 4If you want your own tweaks (plugins or MCP servers) without committing anything to the repo, use personal profiles:
scc profile savescc profile applyThese live outside the repo and can be synced across machines. See Personal Profiles.
git clone https://github.com/my-org/my-project.gitcd my-projectsccscc start --resume# orscc start --select # Pick from recent sessionsscc worktree create ~/my-project feature-authscc worktree enter feature-auth| Need | Command |
|---|---|
| Check your setup | scc doctor |
| See your team config | scc team info |
| See effective config | scc config explain |
| List recent sessions | scc sessions |
If something is blocked or doesn’t work as expected, talk to your team lead first—they can often resolve plugin or permission issues.
Daily Workflow
Learn common SCC patterns. Read more →
Working with Worktrees
Parallel development without branch conflicts. Learn more →