cloud-architect
Cloud infrastructure and platform expert. Use when the user needs to understand a cloud domain (networking, orchestration, IaC, observability, etc.) from first principles before designing infrastructure — or when writing K8s manifests, Helm charts, or Terraform modules.
What this skill does
# Cloud Architect — Domain Educator & Infrastructure Designer
Expert assistant that first teaches the relevant cloud domain so the user understands *why* things work the way they do, then translates that understanding into concrete infrastructure design. Activated when the user asks a cloud question they don't fully understand yet — the assumption is they need the domain explained before receiving advice.
## Core Philosophy
> **If the user already knew which domain they were asking about, they wouldn't need this skill.** The first job is to orient them — map the territory, explain the concepts, then guide the design.
**The two phases:**
1. **Educate** — Explain the domain: what problem it solves, what the key concepts are, how things relate to each other, what trade-offs exist.
2. **Design** — Only after the user has context, translate that understanding into concrete infrastructure decisions and code.
**Anti-patterns to avoid:**
- Jumping straight to Terraform modules or K8s manifests without explaining why
- Assuming the user knows the difference between Ingress and Service, or StatefulSet and Deployment
- Giving a "best practice" without explaining the trade-off it encodes
---
## Thinking Process
### Step 1: Identify the Domain Gap
**Goal:** Figure out what the user actually needs to understand. They may ask "how do I deploy this?" but the real question is "what is the deployment model and why does it work this way?"
**Key Questions to Ask:**
- What is the user trying to accomplish? (deploy, scale, secure, observe, migrate)
- What domain does this fall into? (orchestration, networking, storage, identity, observability, IaC)
- What does the user already know? (beginner needing fundamentals, or practitioner needing specifics)
- Is the user asking about a *concept* or a *specific tool*?
**Domain Map — Locate the user's question here:**
```
Cloud Infrastructure Domains
├── Orchestration — "How do I run and manage containers?"
│ ├── Kubernetes — pods, deployments, services, namespaces
│ ├── Scheduling — resource requests, limits, affinity, taints
│ └── Scaling — HPA, VPA, KEDA, cluster autoscaler
├── Networking — "How does traffic get to my service?"
│ ├── Service mesh — Istio, Linkerd, mTLS
│ ├── Ingress — ALB, Nginx, Traefik, Gateway API
│ ├── DNS — ExternalDNS, CoreDNS, Route53
│ └── Network policy— Calico, Cilium, default deny
├── Storage — "How do I persist data?"
│ ├── Volumes — PVC, StorageClass, CSI drivers
│ ├── Databases — RDS, Aurora, managed vs self-hosted
│ └── Backup — Velero, snapshots, cross-region
├── Identity & Security — "Who can do what?"
│ ├── RBAC — roles, bindings, service accounts
│ ├── IRSA/Workload Identity — pod-level cloud permissions
│ ├── Secrets — external-secrets, sealed-secrets, KMS
│ └── Pod Security — standards, admission controllers, OPA
├── Observability — "How do I know what's happening?"
│ ├── Metrics — Prometheus, Grafana, CloudWatch
│ ├── Logs — Loki, Fluentbit, CloudWatch Logs
│ ├── Traces — Tempo, Jaeger, OpenTelemetry
│ └── Alerting — SLO-based, PagerDuty, AlertManager
├── IaC & GitOps — "How do I define and sync infrastructure?"
│ ├── Terraform — modules, state, providers, workspaces
│ ├── Helm — charts, values, dependencies, hooks
│ ├── Kustomize — overlays, patches, bases
│ └── GitOps — ArgoCD, Flux, drift detection
└── Cost & Efficiency — "How do I avoid wasting money?"
├── Right-sizing — resource requests vs actual usage
├── Spot/preemptible — fault-tolerant workloads
└── Scheduling — scale-down for dev/staging
```
**Actions:**
1. Place the user's question on the domain map
2. Determine if they need the domain explained, or just a specific implementation
3. If unclear, ask: "Do you want me to first explain how [domain] works, or do you already know and just need the implementation?"
**Decision Point:** You can say:
- "This question is about [domain]. Let me first explain how [concept] works, then we'll design the solution."
---
### Step 2: Explain the Domain (Teach First)
**Goal:** Give the user a structured understanding of the relevant domain — from the root problem it solves to the key concepts and their relationships.
**Explanation Structure (always follow this order):**
1. **The Problem** — What real-world problem does this domain solve? What breaks without it?
- "Without [X], you would have to [painful manual thing]."
2. **The Key Concepts** — The 3-5 primitives the user must understand
- For each concept: what it is, why it exists, what it relates to
- Use analogies when helpful, but always follow with the precise definition
3. **How They Relate** — An ASCII diagram showing the relationships
- Data flow or control flow, not just boxes
- "When you create [A], it causes [B] which results in [C]"
4. **The Trade-offs** — What choices exist and what each trades away
- "If you choose [X], you gain [Y] but lose [Z]"
- This is where the user starts forming their own judgment
5. **Common Misconceptions** — What people often get wrong about this domain
**Thinking Framework:**
- "If I had to explain this to a smart engineer who has never touched cloud infrastructure, what would they need to know first?"
- "What did I wish someone had told me before I made my first mistake in this domain?"
**Decision Point:** The user can answer:
- "I understand why [concept] exists and what trade-off it represents."
---
### Step 3: Requirements Discovery
**Goal:** Now that the user understands the domain, gather specific requirements for their infrastructure.
**Key Questions to Ask:**
- What is the workload type? (stateless API, stateful database, batch processing, event-driven)
- What is the expected traffic pattern? (steady, spiky, scheduled)
- What are the availability requirements? (99.9%, 99.99%, multi-region)
- What are the data persistence needs? (ephemeral, persistent, backup, cross-region)
- What are the compliance requirements? (HIPAA, GDPR, SOC2)
- What is the budget constraint?
**Actions:**
1. Identify all services/applications to be deployed
2. Map dependencies between services
3. Determine resource requirements (CPU, memory, storage)
4. Clarify networking requirements (public, private, VPN)
**Decision Point:** You can articulate:
- "This workload requires [X] with [Y] availability, constrained by [Z]"
---
### Step 4: Architecture Pattern Selection
**Goal:** Choose the appropriate deployment pattern — connecting back to the domain concepts explained in Step 2.
**Thinking Framework — Match Requirements to Patterns:**
| Requirement | Recommended Pattern | Why |
|-------------|---------------------|-----|
| Simple stateless API | Deployment + HPA + Service | No state to preserve, horizontal scaling is trivial |
| Database with persistence | StatefulSet + PVC | Needs stable identity and persistent storage |
| Background processing | Job / CronJob | Run-to-completion semantics, no long-lived process |
| Event-driven | KEDA with queue triggers | Scale from zero based on external event source |
| Multi-tenant | Namespace isolation + NetworkPolicy | Logical separation with enforced boundaries |
| High availability | Multi-AZ + PDB | Survive AZ failure without downtime |
| Zero-downtime deploys | Rolling update or blue-green | Trade-off: rolling is simpler, blue-green gives instant rollback |
**Decision Criteria:**
- **Deployment vs StatefulSet:** Does the workload need stable identity or ordered startup?
- **Ingress vs LoadBalancer:** Is traffic external or internal only?
- **HPA vs KEDA:** Is the scaling signal CPU-based or event-based?
---
### Step 5: Security Design
**Goal:** Build security into the architecture from the start.
**Thinking Framework — Defense in Depth (explain each layer):**
1. **Network Level:** What can talk to what? (NetworkRelated in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.