What problem does it solve? Writing Kubernetes manifests by hand often leads to insecure defaults, missing resource limits, inconsistent labels, and failed rollouts. This Skill provides a consistent set of configuration standards so every manifest you create or review follows security, reliability, and operational best practices. ## Core Features & Use Cases - Security Baseline: Enforces pod and container security contexts (runAsNonRoot, seccomp, dropped capabilities), least-privilege RBAC, NetworkPolicy, and pinned image tags. - Reliability Standards: Covers probes, resource requests/limits, QoS classes, HPA, Pod Disruption Budgets, and rolling update strategies. - Labeling and Review Checklist: Applies the standard app.kubernetes.io label scheme and provides a manifest review checklist for validation before apply. - Use Case: When writing a new Deployment for a service, invoke this Skill to generate a manifest with proper labels, security context, probes, and resource limits, then validate it with kubeconform before applying. ## Quick Start Ask the assistant to create a production-ready Kubernetes Deployment manifest for your service following the k8s standards.