Agent skill
cluster-audit
Full cluster state audit. Use when asked for cluster status, health check, or infrastructure audit. Produces comprehensive report of all nodes, pods, services, PVCs, GPUs, and issues.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/cluster-audit
SKILL.md
Cluster Audit
Run a comprehensive audit of the Kaizen K8s cluster. Execute ALL of these in sequence:
- Nodes:
kubectl get nodes -o wide - All Pods:
kubectl get pods -A -o wide - Problem Pods:
kubectl get pods -A --field-selector=status.phase!=Running,status.phase!=Succeeded - Services:
kubectl get svc -A - PVCs:
kubectl get pvc -A - GPU Allocation:
kubectl describe nodes | grep -A5 "nvidia.com/gpu" - Recent Events:
kubectl get events -A --sort-by=.lastTimestamp --no-headers | tail -20 - Inference Health:
curl -s --max-time 3 http://10.10.10.10:30000/v1/modelsandcurl -s --max-time 3 http://10.10.10.10:30001/v1/models - Cognitive Health:
curl -s --max-time 3 http://10.10.10.10:30800/healthandcurl -s --max-time 3 http://10.10.10.10:30810/health
Produce a summary table:
| Component | Status | Details |
|---|
Flag any CrashLoopBackOff, OOMKilled, or Pending pods. Note GPU utilization vs allocation.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?