> ## Documentation Index
> Fetch the complete documentation index at: https://docs.commanderplugin.com/llms.txt
> Use this file to discover all available pages before exploring further.

# CCC Domains: One Skill That Loads an Entire Specialty

> CC Commander's 11 domain routers dispatch to specialist sub-skills on demand. One invoke gives you full coverage for code, DevOps, SaaS, design, or mobile.

A CCC domain is a router skill. When you invoke a domain, it does not give Claude Code a single set of instructions — it dispatches to the right specialist sub-skill based on what your task actually needs. Think of a domain as an expert team lead who reads the brief and assigns the right specialist, rather than trying to do everything themselves.

Each domain comes pre-loaded in the `essential` tier, so you have access to all 11 out of the box without installing anything extra.

## All 11 domains

<CardGroup cols={2}>
  <Card title="ccc-code" icon="code">
    **18 sub-skills** — code generation, refactoring, review, patterns, and quality gates.
  </Card>

  <Card title="ccc-testing" icon="flask-conical">
    **15 sub-skills** — TDD, Playwright E2E, Vitest, coverage reports, visual regression, load testing, and accessibility testing.
  </Card>

  <Card title="ccc-devops" icon="server">
    **20 sub-skills** — GitHub Actions, Docker, AWS deploy, Terraform, Kubernetes, monitoring, logging, Nginx, SSL certs, rollback strategies.
  </Card>

  <Card title="ccc-saas" icon="building">
    **20 sub-skills** — auth systems, billing/Stripe, API design, database schema, multi-tenancy, onboarding flows, admin dashboards, role-based access, webhooks, rate limiting, usage tracking, feature flags.
  </Card>

  <Card title="ccc-design" icon="paintbrush">
    **39 sub-skills** — landing pages, UI audit, animation, responsive layout, color systems, typography, wireframes, component library, accessibility, dark mode, micro-interactions, design tokens.
  </Card>

  <Card title="ccc-seo" icon="search">
    **19 sub-skills** — meta tags, JSON-LD schema, sitemap, robots.txt, Core Web Vitals, internal linking, keyword research, content optimization, image SEO, page speed, canonical URLs.
  </Card>

  <Card title="ccc-marketing" icon="megaphone">
    **45 sub-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, press releases, case studies, video scripts.
  </Card>

  <Card title="ccc-security" icon="shield">
    **9 sub-skills** — OWASP top 10, secrets scanning, dependency audit, container security, penetration testing, CSP headers, rate limiting, auth hardening.
  </Card>

  <Card title="ccc-data" icon="chart-bar">
    **8 sub-skills** — SQL optimization, data pipelines, analytics setup, data visualization, machine learning ops, reporting, data quality, vector search.
  </Card>

  <Card title="ccc-research" icon="microscope">
    **8 sub-skills** — competitive analysis, market research, user research, technology evaluation, trend analysis, SWOT, stakeholder interviews, data synthesis.
  </Card>

  <Card title="ccc-mobile" icon="smartphone">
    **8 sub-skills** — React Native, Expo, mobile UI, push notifications, deep linking, app store optimization, offline-first, gesture handling.
  </Card>
</CardGroup>

## Domain summary table

| Domain          | Sub-skills | Primary focus                         |
| --------------- | ---------- | ------------------------------------- |
| `ccc-code`      | 18         | Code generation, refactoring, review  |
| `ccc-testing`   | 15         | TDD, E2E, coverage, regression        |
| `ccc-devops`    | 20         | CI/CD, Docker, deploy, monitoring     |
| `ccc-saas`      | 20         | Auth, billing, multi-tenant, schema   |
| `ccc-design`    | 39         | UI/UX, components, accessibility      |
| `ccc-seo`       | 19         | Meta tags, schema, Core Web Vitals    |
| `ccc-marketing` | 45         | CRO, email, ads, content              |
| `ccc-security`  | 9          | OWASP, pen-test, compliance           |
| `ccc-data`      | 8          | SQL, analytics, visualization         |
| `ccc-research`  | 8          | Competitive analysis, market research |
| `ccc-mobile`    | 8          | React Native, Expo                    |

## How to invoke a domain

<Tabs>
  <Tab title="From the CCC menu">
    ```bash theme={null}
    ccc
    ```

    Select **Browse domains** from the main menu, then pick the domain that matches your task. The domain router reads your task description and dispatches to the right sub-skill automatically.
  </Tab>

  <Tab title="From inside Claude Code">
    ```
    /ccc:domains
    ```

    Opens the domain browser inline. You can also invoke a specific domain directly:

    ```
    /ccc domains
    ```
  </Tab>

  <Tab title="Direct skill name">
    Each domain is a skill you can load by name. If the Intelligence Layer has not already selected it, reference it directly when starting a dispatch:

    ```
    ccc-saas
    ccc-devops
    ccc-testing
    ```
  </Tab>
</Tabs>

## How routing works inside a domain

When you invoke a domain, the router skill reads your task and selects the specialist sub-skill that best matches. You do not need to know which sub-skill to ask for — the router infers it from your description.

For example, invoking `ccc-saas` with a task like "add Stripe billing with usage-based pricing" routes to the billing sub-skill rather than the auth or multi-tenancy sub-skill. The router uses keyword matching against the sub-skill directory structure to make this decision.

<Note>
  Individual skills inside CCC domains are still accessible directly by their original names via symlinks. If you know the exact sub-skill you need, you can load it without going through the router.
</Note>

## The Intelligence Layer and domains

The Intelligence Layer's skill recommender is domain-aware. If your task description triggers domain-level keyword signals (such as "authentication", "billing", or "deploy"), the relevant domain router ranks highly in the skill recommendation output. You will often see a domain recommended before you even open the domain browser.

<Tip>
  Domains are included in the `essential` install tier. You get all 11 routers by default without any additional install steps.
</Tip>
