Kubernetes Skill Pack A new Kubernetes Skill Pack from an unnamed author teaches agents to build two read-only skills: k8s-pod-diagnose, which diagnoses pod failures by branching on CrashLoopBackOff, ImagePullBackOff, Pending, and OOMKilled states, and k8s-manifest-review, which checks manifests for missing resource limits, probes, and security settings. The pack emphasizes a read-only skill boundary, excluding destructive commands like kubectl delete and kubectl apply, and is part of a course on production agent skills engineering. · Agentic AI · 5 min read 📋 Prerequisites - GitHub Skill Pack previous lesson 🎯 What You'll Learn - Build a Decision skill that diagnoses common pod failure states - Build a Validator skill that checks manifests for missing resource limits and probes - Design a read-only skill boundary for a domain with genuinely destructive commands nearby What This Pack Covers Two skills: one that diagnoses why a pod is failing, branching on the specific failure signature; one that reviews a manifest before it’s applied. Kubernetes is a good domain for practicing a specific discipline from Security and Governance /courses/production-agent-skills-engineering/skill-security-governance : both skills here are deliberately scoped to read-only diagnosis and review, explicitly excluding the destructive commands kubectl delete , kubectl apply that live right next to the safe, read-only ones in the same CLI. Skill 1: k8s-pod-diagnose --- name: k8s-pod-diagnose description: Diagnoses why a Kubernetes pod is failing or not starting — CrashLoopBackOff, ImagePullBackOff, Pending, and OOMKilled states. Use when a pod is failing, stuck, or the user asks why a deployment isn't working. metadata: version: "1.0.0" compatibility: Requires kubectl configured with read access to the target cluster --- Available commands read-only - kubectl get pod