.claude/skills/kubernetes-specialist/SKILL.md
Kubernetes manifest writing, Helm chart development, cluster configuration, auto-scaling, and cloud-native deployment patterns. Use when asked to write Kubernetes YAML, create a Helm chart, set up HPA or VPA, configure ingress, write RBAC policies, implement network policies, set up cert-manager, debug a failing pod, configure persistent storage, or deploy to EKS/AKS/GKE.
npx skillsauth add daryllundy/claude-skills-library kubernetes-specialistInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
write a Kubernetes manifest, Helm chart, K8s deployment.Glob('**/k8s/**', '**/charts/**', '**/kustomize/**', '**/helmfile.yaml') — find existing manifestsRead existing Deployments or Helm values to understand current resource patternsresources.requests and resources.limits defined — never leave them unset in productionUnderstand naming conventions, label schemas, namespace structure, and resource patterns.
Follow label conventions: app.kubernetes.io/name, app.kubernetes.io/version, app.kubernetes.io/component. Set resource requests conservatively; set limits generously (avoid OOMKill).
kubectl apply --dry-run=client -f manifests/
# For Helm:
helm lint charts/myapp/
helm template charts/myapp/ | kubectl apply --dry-run=client -f -
<resource-type>.yaml (e.g., deployment.yaml, service.yaml, ingress.yaml)securityContext.privileged: true without explicit justificationhostNetwork: true or hostPID: true without explicit justificationUser says: "Create a Kubernetes Deployment and Service for a Node.js app with 3 replicas" Actions:
Pod stuck in CrashLoopBackOff
Cause: Application error, missing env vars, or failing liveness probe
Fix: kubectl logs <pod> --previous; check liveness probe path and initialDelaySeconds
ImagePullBackOff
Cause: Wrong image name/tag, or missing imagePullSecret for private registry
Fix: Verify image exists with docker pull; add imagePullSecrets with registry credentials
references/legacy-agent.md: full manifest reference, Helm patterns, HPA/VPA config, service mesh, StatefulSets, RBAC, networkingtools
Zapier workflow automation design, Zap configuration, and SaaS integration planning across 6000+ apps. Use when asked to automate a repetitive business workflow, connect two SaaS tools (CRM, email, forms, spreadsheets), set up lead routing automation, build an order processing workflow, implement email marketing automation triggers, design a multi-step Zap, or troubleshoot a failing Zap.
development
Modern, accessible, and conversion-optimized web design direction, UX guidance, and design system development. Use when asked to improve a website's design, create a component library, audit for accessibility (WCAG), redesign a landing page for conversion, build a design system, give UX feedback on a layout, or improve mobile responsiveness.
development
Input validation, business rule implementation, and data integrity enforcement in application code. Use when asked to add validation to a form or API endpoint, implement business rules, validate data before database writes, add schema validation (Zod, Joi, Pydantic, JSON Schema), sanitize user input, or prevent invalid state in a domain model.
development
TikTok-specific short-form video strategy, scripting, and platform-native growth optimization. Use when asked to grow a TikTok account, develop a TikTok content strategy, write video scripts for TikTok, identify trending sounds or formats, plan a TikTok creator collaboration, or audit a TikTok profile for growth opportunities.