Skip to content

Common Issues

Symptoms: Old settings, missing plugins

Fix:

Terminal window
scc update --force
scc config explain

Symptoms: Plugin not appearing in scc audit plugins

Cause: Matches security.blocked_plugins pattern

Fix: Check with org admin or use exception:

Terminal window
scc config explain --field blocked

Symptoms: Cannot add plugins in project

Cause: Team doesn’t allow project overrides

Fix:

Terminal window
scc config explain --field denied

Symptoms: Unexpected configuration

Fix:

Terminal window
scc team current
scc team switch <correct-team>

Fix:

Terminal window
scc sessions # List sessions
scc sessions --all # Show all teams (if needed)
scc stop --all # Clean up
scc start --fresh # New session

Symptoms: Want to start fresh, corrupt config, need to change organization

Option 1 - Interactive TUI:

Press s from the dashboard to open Settings & Maintenance, then select “Reset configuration”.

Option 2 - CLI:

Terminal window
# Reset config only (will need to run scc setup again)
scc reset --config
# Preview what would be reset
scc reset --config --plan
# Full factory reset (removes everything)
scc reset --all

Option 3 - Manual:

Terminal window
# Find your config files
scc config paths
# Delete and reconfigure
rm ~/.config/scc/config.json
scc setup

Symptoms: Stale org config, outdated marketplace data

Fix:

Terminal window
# From TUI: press 's' → Clear cache
# Or from CLI:
scc reset --cache

Fix:

Terminal window
# Prune old sessions (keeps 20 most recent per team)
scc sessions prune
# Preview what would be removed
scc sessions prune --dry-run
# Keep only last 10 sessions
scc sessions prune --keep 10