Build Your Cloud Security Skill
Create your cloud security skill in one prompt, then learn to improve it throughout the chapter
Best use case
Build Your Cloud Security Skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Create your cloud security skill in one prompt, then learn to improve it throughout the chapter
Teams using Build Your Cloud Security Skill should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/58-production-security/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How Build Your Cloud Security Skill Compares
| Feature / Agent | Build Your Cloud Security Skill | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Create your cloud security skill in one prompt, then learn to improve it throughout the chapter
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Build Your Cloud Security Skill In January 2024, a major cryptocurrency exchange lost $230 million because an attacker exploited misconfigured Kubernetes RBAC—a service account with cluster-admin privileges was exposed through a debugging pod left running in production. The attacker didn't break encryption or exploit zero-days. They walked through a door that should have been locked. Your Task API is running in Kubernetes. Before learning how to protect it—configuring RBAC, isolating network traffic, enforcing Pod Security Standards—you will **own** a cloud-security skill that generates secure configurations from day one. This skill becomes a component of your sellable Digital FTE portfolio. By the end of this chapter, you will have a production-tested skill that implements defense-in-depth security for any Kubernetes workload. --- ## Step 1: Get the Skills Lab 1. Go to [github.com/panaversity/claude-code-skills-lab](https://github.com/panaversity/claude-code-skills-lab) 2. Click the green **Code** button 3. Select **Download ZIP** 4. Extract the ZIP file 5. Open the extracted folder in your terminal ```bash cd claude-code-skills-lab claude ``` **Output:** ``` Claude Code v1.0.0 Type your message or ? for help > ``` --- ## Step 2: Write Your LEARNING-SPEC.md Before asking Claude to build your skill, define what you want to learn. Create a file named `LEARNING-SPEC.md`: ```markdown # Cloud Security Learning Specification ## What A skill for securing Kubernetes workloads using: - RBAC (Roles, RoleBindings, ServiceAccounts) - NetworkPolicies (default deny, explicit allow) - Pod Security Standards (PSS enforcement) - Secrets management (External Secrets Operator patterns) - Image scanning (Trivy integration) - Dapr security (mTLS, component scopes) ## Why Production AI agents handle sensitive data and make autonomous decisions. A single misconfiguration—an overprivileged service account, missing network isolation, a container running as root—can expose the entire cluster. The 4C security model (Cloud, Cluster, Container, Code) provides defense-in-depth. ## Success Criteria - [ ] Skill generates valid ServiceAccount + Role + RoleBinding YAML - [ ] kubectl apply --dry-run=client accepts generated configurations - [ ] Skill enforces least privilege (no wildcards in RBAC rules) - [ ] Skill references official Kubernetes security documentation ``` **Output:** ``` LEARNING-SPEC.md created (892 bytes) ``` This specification tells Claude exactly what you need and how you will measure success. --- ## Step 3: Fetch Official Documentation Ask Claude to gather the authoritative source material: ``` Using your Context7 skill, fetch the official Kubernetes security documentation. I need to understand RBAC (Roles, ClusterRoles, RoleBindings), NetworkPolicy, and Pod Security Standards. ``` Claude will retrieve documentation from the official Kubernetes project, giving your skill accurate, up-to-date patterns rather than hallucinated configurations. **Output:** ``` Fetching Kubernetes security documentation via Context7... Retrieved: - RBAC authorization patterns - NetworkPolicy specification - Pod Security Standards (Privileged, Baseline, Restricted) - Secrets management best practices - Security context configuration Documentation ready for skill creation. ``` --- ## Step 4: Create Your Skill Now prompt Claude to build the skill using the fetched documentation: ``` Using your skill creator skill, create a new skill for Kubernetes security. I will use it to secure Python/FastAPI applications from dev to production. Cover RBAC, NetworkPolicies, Pod Security Standards, secrets management, image scanning with Trivy, and Dapr security. Use the Kubernetes security docs you just fetched. ``` Claude will: 1. Study the fetched documentation 2. Ask clarifying questions about your security requirements 3. Create the skill with security templates and best practices **Output:** ``` Creating cloud-security skill... Questions: 1. Should I include patterns for External Secrets Operator? 2. What base PSS level should be the default (baseline or restricted)? 3. Do you need Dapr-specific security patterns? [After your answers] Skill created at .claude/skills/cloud-security/ - SKILL.md: Core patterns and decision trees - templates/: RBAC, NetworkPolicy, PSS examples - references/: Links to official documentation ``` Your skill appears at `.claude/skills/cloud-security/`. --- ## Step 5: Test Your Skill Verify your new skill generates valid Kubernetes YAML: ``` Using my cloud-security skill, show me how to create a dedicated ServiceAccount for my Task API with minimal permissions. ``` **Output:** ```yaml # task-api-rbac.yaml apiVersion: v1 kind: ServiceAccount metadata: name: task-api-sa namespace: task-api automountServiceAccountToken: false --- apiVersion: rbac.authorization.k8s.io/v1 kind: Role metadata: name: task-api-role namespace: task-api rules: - apiGroups: [""] resources: ["configmaps"] verbs: ["get", "list"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: RoleBinding metadata: name: task-api-binding namespace: task-api subjects: - kind: ServiceAccount name: task-api-sa roleRef: kind: Role name: task-api-role apiGroup: rbac.authorization.k8s.io ``` Save the output and validate: ```bash kubectl apply --dry-run=client -f task-api-rbac.yaml ``` **Output:** ``` serviceaccount/task-api-sa created (dry run) role.rbac.authorization.k8s.io/task-api-role created (dry run) rolebinding.rbac.authorization.k8s.io/task-api-binding created (dry run) ``` If dry-run succeeds, your skill generates valid RBAC configurations following least privilege principles. Notice that the Role specifies only `configmaps` with `get` and `list` verbs—no wildcards, no cluster-wide access. --- ## Done You now own a cloud-security skill built from official Kubernetes security documentation. The rest of this chapter teaches you what it knows—and how to make it better. **Next: Lesson 1 — The 4C Security Model** --- ## Try With AI Now that you have a working skill, test its gap identification capabilities. **Prompt 1:** ``` Using my cloud-security skill, show me how to create a dedicated ServiceAccount for my Task API with minimal permissions. ``` **What you're learning:** How your skill generates RBAC patterns following least privilege. Notice whether it avoids wildcards (*) in verbs and resources, and whether it suggests `automountServiceAccountToken: false` by default. **Prompt 2:** ``` What's missing from this skill for production workloads? ``` **What you're learning:** Gap identification is a critical meta-skill. Your skill might be missing NetworkPolicy defaults, PSS enforcement labels, Trivy scanning integration, or Dapr component scopes. Each gap becomes a learning target for this chapter's lessons. :::warning Security Reminder Never test security configurations on production clusters. Always use `--dry-run=client` first, then apply to a development namespace. Security misconfigurations can expose your entire cluster. :::
Related Skills
admin-panel-builder
Expert assistant for creating and maintaining admin panel pages in the KR92 Bible Voice project. Use when creating admin pages, building admin components, integrating with admin navigation, or adding admin features.
adk-agent-builder
Build production-ready AI agents using Google's Agent Development Kit with AI assistant integration, React patterns, multi-agent orchestration, and comprehensive tool libraries. Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.
adb-builder
No description provided.
action-builder-skill
Use when creating or refactoring Nango integration actions to be thin API wrappers - provides patterns for minimal transformation logic, direct proxy calls, and standardized structure
account-security
Account security - MFA, sessions, recovery. Use when protecting user accounts.
account-security-validation
Validate account security and authentication protocols.
acc-create-test-builder
Generates Test Data Builder and Object Mother patterns for PHP 8.5. Creates fluent builders with sensible defaults and factory methods for test data creation.
acc-create-builder
Generates Builder pattern for PHP 8.5. Creates step-by-step object construction with fluent interface and validation. Includes unit tests.
web-artifacts-builder
Suite of tools for creating elaborate, multi-component claude.ai HTML artifacts using modern frontend web technologies (React, Tailwind CSS, shadcn/ui). Use for complex artifacts requiring state management, routing, or shadcn/ui components - not for simple single-file HTML/JSX artifacts.
Build Your LiveKit Agents Skill
Create your LiveKit Agents skill from official documentation, then learn to improve it throughout the chapter
Build Your Agent Integration Skill
Create your agent-integration skill from OpenAI SDK and LiteLLM documentation before learning framework integration
Build Your Model Serving Skill
Create your model-serving skill from Ollama documentation before learning deployment theory