kubernetes-specialist

Reviews and troubleshoots Kubernetes manifests, workloads, and cluster configurations for production safety.

Updated Jul 12, 2026
One-click install
npx skills add https://github.com/sumitake/agent-collab --skill kubernetes-specialist-sumitake
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: kubernetes-specialist
Source: https://github.com/sumitake/agent-collab/tree/main/plugins/agent-collab/skills/kubernetes-specialist
Command: npx skills add https://github.com/sumitake/agent-collab --skill kubernetes-specialist-sumitake

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Kubernetes changes often fail in production because manifests are reviewed for syntax rather than operational behavior. This Skill analyzes Deployments, StatefulSets, RBAC, NetworkPolicies, probes, and storage configuration against real rollout, scheduling, and failure scenarios so issues are caught before they reach a cluster. ## Core Features & Use Cases - Workload and rollout review: Evaluates Deployment/StatefulSet/DaemonSet update strategies, probe correctness, and resource requests against realistic startup and steady-state behavior. - Security and tenancy hardening: Checks RBAC bindings, service accounts, secret mounting, namespace isolation, and NetworkPolicy rules against least-privilege and intended traffic paths. - Failure-path troubleshooting: Diagnoses crash-looping pods, autoscaling thrash, and storage durability risks during rescheduling, separating confirmed evidence from assumptions about live cluster state. - Use Case: Paste a Deployment manifest and its logs for a crash-looping pod, and receive the root-cause hypothesis, the smallest safe fix, and a validation plan covering normal, failure, and rollback paths. ## Quick Start Ask the agent to review your Kubernetes manifest or Helm values and explain why your pod is crash-looping, including the smallest safe fix and rollback plan.

Frequently Asked Questions about kubernetes-specialist

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I troubleshoot a crash-looping Kubernetes pod?▼

Crash-looping pods are diagnosed by mapping the workload's dependency edges: probes, config, secrets, storage, and upstream services. Supply the pod spec and logs, and the review separates confirmed evidence from assumptions, then recommends the smallest fix with a validation plan.

How to review a Kubernetes Deployment manifest before production?▼

Review the update strategy, liveness/readiness/startup probes, resource requests and limits, and rollback safety rather than just YAML syntax. The Skill checks these against realistic startup behavior and flags any strategy change that removes a working escape hatch.

What is the difference between Deployment, StatefulSet, and DaemonSet?▼

Deployments suit stateless workloads with rolling updates, StatefulSets provide stable identity and storage for stateful workloads, and DaemonSets run one pod per node. Each fails differently mid-rollout, which the review accounts for when recommending a workload type.

Can this Skill check my live cluster state?▼

No. It analyzes supplied manifests, logs, and cluster-state exports only. Any claim about current load, node health, or actual traffic is explicitly flagged as needing direct verification rather than inferred from static configuration.

How do I enforce least-privilege RBAC in Kubernetes?▼

Scope service accounts, roles, and bindings to only the permissions the workload needs, and verify secret mounting does not widen access. The review flags any RBAC or admission-policy change that silently expands privilege beyond the workload's requirements.