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.
npx skills add camilooscargbaptista/cto-toolkit --skill kubernetes-reviewgit clone --depth 1 https://github.com/camilooscargbaptista/cto-toolkitWrote 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.
[](https://agentmods.dev/skills/camilooscargbaptista/cto-toolkit/kubernetes-review)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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: truewithout explicit justification automountServiceAccountToken: falseunless 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.requestsANDresources.limitson 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
LimitRangeandResourceQuotaat namespace level
3. Reliability
Check for:
replicas >= 2for production workloadsPodDisruptionBudget(PDB) for graceful maintenance- Anti-affinity rules (don't schedule all replicas on same node)
topologySpreadConstraintsfor zone distribution- Liveness probes: detect deadlocked containers
- Readiness probes: don't send traffic until ready
- Startup probes: for slow-starting containers
terminationGracePeriodSecondsadequate for graceful shutdownpreStophooks for connection draining
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.
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.
- 12d ago First seen · 157 lines · 104 tokens per session scan A df6d7d624b23
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.
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.
kubernetes-operator
Deploy and manage applications on Kubernetes. Covers deployments, services, ingress, HPA, secrets, and production-grade cluster configuration.
securing-helm-chart-deployments
Secure Helm chart deployments by validating chart integrity, scanning templates for misconfigurations, and enforcing security contexts in Kubernetes releases.
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.
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.
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.