From k8s
Evaluates Kubernetes operator quality via checklists for safety, CRDs, webhooks, RBAC, controllers, fast dev loops, tests, and troubleshooting. Use before production or iterations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/k8s:k8s-quality-checklistThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this checklist to evaluate operator quality before considering it production-ready or before each iteration.
Use this checklist to evaluate operator quality before considering it production-ready or before each iteration.
kubectl get outputdefault)make dev / tilt up starts without errorsWhen things go wrong:
kubectl logs -n <ns> <pod> --previouskubectl get crd <name> -o yaml and check for schema errorskubectl auth can-i --as system:serviceaccount:<ns>:<sa> <verb> <resource>npx claudepluginhub sagart-cactus/claude-k8s-plugin --plugin k8sScaffolds Kubernetes operators: CRDs, Go controllers, webhooks via Kubebuilder; sets up Tilt dev loop, Kind clusters, Kustomize for fast iteration and validation.
Enforces least-privilege RBAC and secure runtime configuration for Kubernetes Operators. Use when building, reviewing, or auditing Operator manifests, ClusterRoles, Roles, OLM bundles, or CRD definitions.
Reviews Kubernetes YAML manifests for quality, security, and policy compliance defects. Covers Deployments, StatefulSets, Services, Ingress, NetworkPolicy, RBAC, and CRDs.