1---2name: devops-router3description: Routes DevOps tasks to the correct specialist skill within ccc-devops.4---56# DevOps Router78> Don't know which DevOps skill to use? Start here. Describe what you need and get routed to the right specialist.910## How It Works11121. Parse the user's request for DevOps signals132. Match against the intent taxonomy below143. Recommend 1-3 skills in execution order154. If ambiguous, ask one clarifying question before routing1617## Quick Decision Tree1819```20What are you trying to do?21│22├── DEPLOYING code?23│ ├── Need zero-downtime strategy? → zero-downtime-deploy24│ ├── General deployment orchestration? → senior-devops25│ ├── Writing deploy runbook? → infra-runbook26│ └── Setting up deploy pipeline? → cicd-pipeline-generator27│28├── BUILDING CI/CD?29│ ├── Full pipeline (lint→test→build→deploy)? → cicd-pipeline-generator30│ ├── Securing existing workflows? → github-actions-security31│ ├── Making workflows reusable across repos? → github-actions-reusable-workflows32│ └── General DevOps pipeline? → senior-devops33│34├── CONTAINERIZING?35│ ├── Writing/optimizing Dockerfile? → docker-development36│ ├── Docker Compose setup? → docker-development37│ ├── Securing container images? → container-security38│ └── Container runtime security? → container-security39│40├── AWS infrastructure?41│ ├── Architecture design / service selection? → aws-solution-architect42│ ├── Lambda / serverless? → aws-lambda-best-practices43│ ├── S3 / object storage? → aws-s3-patterns44│ ├── CloudFront / CDN? → aws-cloudfront-optimization45│ └── IAM / permissions / roles? → aws-iam-security46│47├── MONITORING / OBSERVABILITY?48│ ├── Prometheus setup / metrics collection? → prometheus-configuration49│ ├── Grafana dashboards? → grafana-dashboards50│ ├── Alert rules / PromQL? → promql-alerting51│ ├── APM / Core Web Vitals / RUM? → performance-monitoring52│ └── Incident response procedures? → infra-runbook53│54├── INFRASTRUCTURE AS CODE?55│ ├── Terraform modules / state / workspaces? → terraform-patterns56│ ├── General IaC scaffolding? → senior-devops + terraform-patterns57│ └── Importing existing infrastructure? → terraform-patterns58│59├── NETWORKING?60│ ├── VPC / subnets / security groups? → network-engineer61│ ├── DNS / load balancing? → network-engineer62│ ├── Service mesh / zero-trust? → network-engineer63│ └── Cloud networking architecture? → network-engineer + aws-solution-architect64│65└── SECURITY?66 ├── Container security? → container-security67 ├── IAM / cloud permissions? → aws-iam-security68 ├── CI/CD security? → github-actions-security69 ├── Network security? → network-engineer70 └── Full security audit? → container-security + aws-iam-security + github-actions-security71```7273## Intent Taxonomy7475### Deployment76| Signal Words | Route To | Confidence |77|-------------|----------|------------|78| deploy, release, rollout, ship, push to prod | `senior-devops` + `zero-downtime-deploy` | High |79| blue-green, canary, rolling update, zero-downtime | `zero-downtime-deploy` | High |80| rollback, revert, recover, incident | `infra-runbook` | High |81| feature flag, dark launch, traffic splitting | `zero-downtime-deploy` | Medium |8283### CI/CD84| Signal Words | Route To | Confidence |85|-------------|----------|------------|86| pipeline, workflow, github actions, CI/CD | `cicd-pipeline-generator` | High |87| secrets, OIDC, supply chain, action pinning | `github-actions-security` | High |88| reusable, composite action, workflow_call, shared workflow | `github-actions-reusable-workflows` | High |89| gitlab ci, jenkins, circleci | `cicd-pipeline-generator` | Medium |9091### Containers92| Signal Words | Route To | Confidence |93|-------------|----------|------------|94| dockerfile, docker-compose, multi-stage, image size | `docker-development` | High |95| trivy, grype, CVE, vulnerability scan, image hardening | `container-security` | High |96| container, docker, podman | `docker-development` | Medium — clarify build vs. security |9798### AWS99| Signal Words | Route To | Confidence |100|-------------|----------|------------|101| architecture, well-architected, cost optimization | `aws-solution-architect` | High |102| lambda, serverless, cold start, layers | `aws-lambda-best-practices` | High |103| s3, bucket, presigned, lifecycle | `aws-s3-patterns` | High |104| cloudfront, cdn, edge, cache invalidation | `aws-cloudfront-optimization` | High |105| iam, policy, role, permission boundary, scp | `aws-iam-security` | High |106| aws, cloud | `aws-solution-architect` | Low — clarify service |107108### Monitoring109| Signal Words | Route To | Confidence |110|-------------|----------|------------|111| prometheus, scrape, exporter, recording rule | `prometheus-configuration` | High |112| grafana, dashboard, panel, variable | `grafana-dashboards` | High |113| promql, alert rule, alertmanager, silence | `promql-alerting` | High |114| apm, rum, core web vitals, sentry, datadog | `performance-monitoring` | High |115| monitoring, observability, metrics | `prometheus-configuration` + `performance-monitoring` | Medium — clarify infra vs. app |116117### Infrastructure118| Signal Words | Route To | Confidence |119|-------------|----------|------------|120| terraform, module, state, workspace, plan, apply | `terraform-patterns` | High |121| vpc, subnet, security group, nacl | `network-engineer` | High |122| dns, route53, load balancer, alb, nlb | `network-engineer` | High |123| service mesh, istio, envoy, zero-trust | `network-engineer` | High |124| runbook, playbook, incident, escalation | `infra-runbook` | High |125126## Combining Skills127128Skills compose naturally. Common combinations:129130| Workflow | Skills Used |131|----------|------------|132| New service to production | docker-development → cicd-pipeline-generator → zero-downtime-deploy → performance-monitoring |133| Security hardening | aws-iam-security → container-security → github-actions-security → network-engineer |134| Observability stack | prometheus-configuration → grafana-dashboards → promql-alerting → infra-runbook |135| AWS infrastructure | aws-solution-architect → terraform-patterns → aws-iam-security → network-engineer |136| CI/CD overhaul | cicd-pipeline-generator → github-actions-security → github-actions-reusable-workflows → docker-development |