Skip to main content
CC Commander ships with 450+ skills, but it does not load all of them into every session. Instead, skills are organized into tiers — small sets that keep your context window clean — and 11 domain routers that give you an entire specialty with a single load. This page explains how skills are structured, how to find what you need, and how to manage what is installed.

Skill Tiers

Skills are grouped into four tiers. The tier controls which skills are installed during setup and how many tokens they consume per session.
The default tier. Installs all 11 CCC domain routers plus the core workflow skills: spec-interviewer, systematic-debugging, investigate, review, ship, session-startup, writing-plans, executing-plans, caveman, context-budget, and more.Covers 90% of daily use cases. Saves approximately 10,000 tokens per session compared to loading everything.
ccc --skills tier essential
You can load any skill on demand mid-session without installing it: say "use the skill-name skill" or "follow the skill-name skill" and Claude Code will load it from disk.

Browsing Skills

1

From the CLI

Run ccc --skills to open the interactive skill manager. You can list installed skills, install skills by name, remove skills, and change tiers.
2

From inside a session

Type /ccc:skills in any Claude Code session. CC Commander reads your current project stack and shows context-aware recommendations ranked by relevance.
3

Search the index

The skill index at ~/.claude/SKILLS-INDEX.md is a searchable text file:
grep -i "auth" ~/.claude/SKILLS-INDEX.md

11 CCC Domain Routers

Each domain router is a single skill that dispatches to the right specialist sub-skill based on your task. Load one domain and you get an entire specialty.

ccc-testing

15 skills — TDD workflow, Playwright E2E, verification loops, visual regression, load testing, coverage reports, test fixtures, mock strategies, and accessibility testing.

ccc-devops

20 skills — GitHub Actions, Docker, AWS deploy, Terraform, zero-downtime deploys, monitoring, Kubernetes, Nginx, SSL certs, environment management, health checks, and rollback strategies.

ccc-saas

20 skills — auth systems, Stripe billing, API design, database schema, multi-tenancy, onboarding flows, admin dashboards, role-based access, webhooks, rate limiting, usage tracking, and feature flags.

ccc-design

35+ skills — landing pages, UI audit, animation, responsive layout, color systems, typography, wireframes, component libraries, accessibility, dark mode, micro-interactions, and design tokens.

ccc-security

9 skills — OWASP top 10, pen testing, secrets scanning, dependency audits, container security, threat modeling, CSP headers, rate limiting, and auth hardening.

ccc-marketing

46 skills — CRO, email campaigns, ad copy, social media, SEO content, blog posts, landing page copy, A/B testing, funnel optimization, lead magnets, newsletter, brand voice, and press releases.

ccc-seo

19 skills — meta tags, JSON-LD schema, sitemap, robots.txt, Core Web Vitals, internal linking, keyword research, content optimization, image SEO, page speed, and structured data.

ccc-research

8 skills — competitive analysis, market research, user research, technology evaluation, trend analysis, SWOT, stakeholder interviews, and data synthesis.

ccc-data

8 skills — SQL optimization, ETL pipelines, data warehousing, analytics setup, data visualization, machine learning, reporting, data quality, and vector search.

ccc-mobile

7 skills — React Native, Expo, mobile UI patterns, push notifications, deep linking, app store optimization, offline-first, and gesture handling.

ccc-makeover

3 skills — /xray project audit (health score 0–100, maturity 1–5), /makeover agent swarm execution, and before/after report card.

Key Skills by Category

Code Quality

SkillWhat It DoesTier
senior-backendSenior-level backend code patterns and architecture guidancerecommended
coding-standardsEnforce consistent code style and standards across your projectrecommended
systematic-debugging4-phase root cause analysis before fixingessential
architecture-auditorReview and score architectural decisionsfull
reviewStructured multi-pass code reviewessential
codexAdversarial second-opinion code reviewrecommended

Testing

SkillWhat It DoesTier
ccc-testingDomain router — 15 testing sub-skillsessential
benchmarkPerformance regression detection — baselines for page load, Core Web Vitals, resource sizesrecommended
tdd-workflowTest-driven development: red/green/refactor cyclefull

DevOps and Deployment

SkillWhat It DoesTier
ccc-devopsDomain router — 20 DevOps sub-skillsessential
githubGitHub Actions workflows, PR automation, issue managementrecommended
setup-deployZero-to-production deployment setuprecommended

SaaS Building

SkillWhat It DoesTier
ccc-saasDomain router — 20 SaaS sub-skillsessential
postgres-patternsPostgreSQL schema design, query optimization, migrationsrecommended
redis-patternsRedis caching, queuing, and pub/sub patternsrecommended

Security

SkillWhat It DoesTier
ccc-securityDomain router — 9 security sub-skillsessential

Token Optimization

SkillWhat It DoesTier
cavemanStrips markdown, emojis, and prose — ~75% output token savings during iterationessential
session-compressCompress session context at logical breakpointsessential
context-budgetVisual context window budget analyzer with zone indicators and bloat sourcesessential
confidence-checkPre-execution confidence assessment — 25–250x token savings by catching misalignment earlyrecommended
Use caveman during fast iteration loops where you do not need formatted output. Switch back to normal mode before final review or documentation generation.