kubernetes-review

kubernetes-review is a skill for Claude Code from camilooscargbaptista/cto-toolkit. It costs 104 tokens per session (1,259 once invoked), scanned A, original, MIT.

A review guide for Kubernetes, a system for running and managing containerized applications, and related cloud configurations. It checks security, reliability, resource use, and operational practices.

In plain words
What is it for?
Reviewing Kubernetes manifests, Helm charts, pods, deployments, services, ingress, access controls, network policies, autoscaling, and GitOps configurations.
Why use it?
It helps expose unsafe container settings, missing resource limits, weak permissions, and reliability problems before deployment.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the cto-toolkit plugin — 54 skills, 6 agents, 3 hooks shipped together

Good fit Reviewing Kubernetes manifests, Helm charts, pods, deployments, services, ingress, access controls, network policies, autoscaling, and GitOps configurations.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/camilooscargbaptista/cto-toolkit/kubernetes-review
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add camilooscargbaptista/cto-toolkit --skill kubernetes-review
Clone the repo
git clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkit

Made for: Claude Code.

Or install cto-toolkit, the plugin that ships this one along with the rest of its 54 skills, 6 agents, 3 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kubernetes-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/kubernetes-review/github.svg)](https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/kubernetes-review)
Your own site
<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/kubernetes-review"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/kubernetes-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kubernetes-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/kubernetes-review"><img src="https://agentmods.dev/badge/skills/camilooscargbaptista/cto-toolkit/kubernetes-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 104 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,259 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00104 $0.01259
Opus 5 $0.00052 $0.00629
Sonnet 5 $0.00021 $0.00252
Haiku 4.5 $0.00010 $0.00126

Measured 12d ago against content hash df6d7d624b23, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

kubernetes-review scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootlowPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

- `securityContext.runAsNonRoot: true` (never run as root)

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

kubernetes-review/SKILL.md · 157 lines

How it starts

The opening of the file, as written. The whole thing — 157 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kubernetes & Cloud-Native Review

You are a senior platform engineer reviewing Kubernetes configurations. You've operated clusters serving millions of requests, handled node failures at 3am, and know that YAML is both powerful and dangerous.

Directive: Read ../quality-standard/SKILL.md before producing output.

Review Framework

1. Pod Security

Check for:

  • securityContext.runAsNonRoot: true (never run as root)
  • securityContext.readOnlyRootFilesystem: true (immutable containers)
  • securityContext.allowPrivilegeEscalation: false
  • Drop all capabilities, add only what's needed
  • No privileged: true without explicit justification
  • automountServiceAccountToken: false unless API access needed
  • Pod Security Standards (Restricted profile preferred)
❌ Insecure:
containers:
  - name: app
    image: myapp:latest

✅ Secure:
containers:
  - name: app
    image: myapp:v1.2.3@sha256:abc123...
    securityContext:
      runAsNonRoot: true
      runAsUser: 1000
      readOnlyRootFilesystem: true
      allowPrivilegeEscalation: false
      capabilities:
        drop: ["ALL"]

2. Resource Management

Check for:

  • resources.requests AND resources.limits on every container
  • Requests ≤ Limits (requests too close to limits = no burst headroom)
  • No unbounded resource usage (missing limits = noisy neighbor)
  • Proper QoS class (Guaranteed for critical, Burstable for most, avoid BestEffort)
  • Ephemeral storage limits for log-heavy containers
  • LimitRange and ResourceQuota at namespace level

3. Reliability

Check for:

  • replicas >= 2 for production workloads
  • PodDisruptionBudget (PDB) for graceful maintenance
  • Anti-affinity rules (don't schedule all replicas on same node)
  • topologySpreadConstraints for zone distribution
  • Liveness probes: detect deadlocked containers
  • Readiness probes: don't send traffic until ready
  • Startup probes: for slow-starting containers
  • terminationGracePeriodSeconds adequate for graceful shutdown
  • preStop hooks for connection draining

Read the full file on GitHub · 157 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 157 lines · 104 tokens per session scan A df6d7d624b23

Subscribe to this mod's changes

kubernetes-review is a skill published in the GitHub repository camilooscargbaptista/cto-toolkit (7 stars, last pushed 5mo ago), licensed MIT. It adds 104 tokens to every session and 1,259 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

bazel-k8s-expert

Expert knowledge for deploying Quarkus/Java applications to Kubernetes using Bazel. Covers rulesk8s, Helm, Kustomize, ConfigMaps, Secrets, and health probes.

kinhluan/rules-quarkus-skills · 45 tokens

kubernetes-operator

Deploy and manage applications on Kubernetes. Covers deployments, services, ingress, HPA, secrets, and production-grade cluster configuration.

AtulPurohit/Antigravity-Awesome-Skills · 30 tokens

securing-helm-chart-deployments

Secure Helm chart deployments by validating chart integrity, scanning templates for misconfigurations, and enforcing security contexts in Kubernetes releases.

xalgorix/xalgorix · 34 tokens

k8s-network-policy

Review Kubernetes NetworkPolicies — what is actually permitted to reach a workload, and whether the answer can be trusted. Use when asked what can talk to a pod, whether a namespace is restricted, why traffic is being blocked, or for any security review of cluster network segmentation.

automateyournetwork/netclaw · 60 tokens

k8s-service-path

Trace the Kubernetes service path — Service to selector to pods to EndpointSlices to readiness, plus Ingress routing. Use when a service is getting no traffic, an ingress is not routing, or someone asks why a workload is unreachable inside a cluster.

automateyournetwork/netclaw · 55 tokens

nvca-self-managed-install

Install or validate the NVCA Operator chart against a self-managed NVCF control plane from the native monorepo. Use when the control plane comes from deploy/stacks/self-managed and NVCA must be installed with stack-derived image repository settings.

NVIDIA/nvcf · 55 tokens