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 pledgeandgrow/pledge-skills --skill kubernetesgit clone --depth 1 https://github.com/pledgeandgrow/pledge-skillsWrote 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/pledgeandgrow/pledge-skills/kubernetes)<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/kubernetes"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/kubernetes/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/pledgeandgrow/pledge-skills/kubernetes"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/kubernetes.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.00040 | $0.02705 |
| Opus 5 | $0.00020 | $0.01352 |
| Sonnet 5 | $0.00008 | $0.00541 |
| Haiku 4.5 | $0.00004 | $0.00270 |
Grade A, and why
kubernetes-docs scanned grade A with 0 findings 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 10d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kubernetes Skill
Kubernetes is an open-source container orchestration engine for automating deployment, scaling, and management of containerized applications. It provides service discovery, load balancing, storage orchestration, automated rollouts/rollbacks, self-healing, secret management, batch execution, and horizontal scaling. This skill covers the official Kubernetes documentation.
When to Use
- Orchestrating containerized applications across clusters of machines
- Managing stateless and stateful workloads (Deployments, StatefulSets, DaemonSets, Jobs)
- Configuring networking (Services, Ingress, Network Policies, DNS)
- Managing persistent storage (PersistentVolumes, StorageClasses, CSI)
- Configuring applications (ConfigMaps, Secrets, Resource Management)
- Securing clusters (Pod Security Standards, RBAC, Service Accounts)
- Setting up clusters (kubeadm, production environments, high availability)
- Using kubectl for cluster operations and debugging
Skill Files
concepts.md— Overview (what is Kubernetes, features, extensibility), components (control plane: kube-apiserver, etcd, kube-scheduler, kube-controller-manager, cloud-controller-manager; node: kubelet, kube-proxy, container runtime; addons), objects (spec, status, manifests, labels, annotations, namespaces, selectors), Kubernetes API (API groups, versioning, etcd persistence), containers (images, runtimes, CRI, lifecycle hooks, environment)workloads.md— Pods (single/multi-container, shared namespaces, resource sharing, security settings, resource requests/limits, static pods, probes), Deployments (rollouts, rolling updates, rollbacks, scaling, pausing/resuming, canary, spec fields), StatefulSets (stable identity, ordered deployment, pod management policies, update strategies, PVC retention), DaemonSets (node-local pods, scheduling, taints/tolerations, updates), Jobs (parallel execution, completion modes, failure handling, patterns, cleanup, CronJobs)networking.md— Services (ClusterIP, NodePort, LoadBalancer, ExternalName, headless services, service discovery, virtual IP, traffic policies, session stickiness), Ingress (Ingress resource, rules, path types, hostname wildcards, IngressClass, TLS, load balancing, types: single Service, fanout, name-based virtual hosting), Network Policies (pod isolation, ingress/egress, default policies, selectors, namespace targeting), DNS for Services and Pods (A/AAAA records, SRV records, namespace scoping, Pod hostname/subdomain, DNS policies, DNS config, search domain limits, Windows DNS), Gateway API (design principles, resource model: GatewayClass/Gateway/HTTPRoute/GRPCRoute, relationships, example YAML, migrating from Ingress, conformance)storage.md— PersistentVolumes (lifecycle: provisioning, binding, using, reclaiming; capacity, access modes, volume modes, phases; PVCs: requests, selectors, class), StorageClasses (provisioner, parameters, reclaim policy, volume expansion, mount options, volume binding mode, allowed topologies, default StorageClass)configuration.md— ConfigMaps (motivation, data/binaryData fields, immutable ConfigMaps, using as files and environment variables), Secrets (types: Opaque, ServiceAccount token, Docker config, basic auth, SSH, TLS, bootstrap token; usage as files/env vars, image pull secrets, immutable secrets, security), Resource Management (requests, limits, CPU/memory units, enforcement), kubeconfig (clusters, users, contexts)security.md— Pod Security Standards (Privileged, Baseline, Restricted profiles; policy instantiation; Pod OS field; user namespaces), Pod Security Admission (admission controller, enforcement modes: enforce, audit, warn; namespace labels; workload resources and Pod templates; exemptions), security context (runAsUser, runAsGroup, fsGroup, capabilities, seccomp), TLS (CertificateSigningRequest, kubelet cert rotation, managing TLS certs, CA rotation)setup.md— Learning environment (local tools: minikube, kind, etc.), Production environment (kubeadm, container runtimes, best practices, high availability), Windows nodes (container runtime, networking, pod limitations, workload considerations), Install Tools (kubectl, kind, minikube, kubeadm), cloud provider setuptutorials.md— Hello Minikube (objectives, creating cluster, checking status, dashboard, creating Deployment, creating Service, enabling addons, cleanup)scheduling-eviction.md— kube-scheduler (scheduling overview, feasible nodes, scoring, binding, custom schedulers), Pod Priority and Preemption (PriorityClass, globalDefault, non-preempting, scheduling order, preemption, limitations, QoS interaction), API-initiated Eviction (Eviction API, responses, graceful termination, troubleshooting), Node-pressure Eviction (eviction signals, thresholds, node conditions, pod selection, self-healing, known issues)extending.md— Extension points (kubectl plugins, API access, API extensions, scheduler, controllers, network/storage/device plugins), Custom Resources (CRDs, API aggregation, CRDs vs aggregation, custom controllers, Operator pattern, deploying operators), API Access Extensions (authentication, authorization, admission control), Infrastructure Extensions (device plugins, CNI, CSI, image credential providers)policy.md— Resource Quotas (how they work, types: infrastructure/extended/storage/object count, scopes, cluster capacity), LimitRange (constraints, default values, min/max, types, admission checks), PodDisruptionBudgets (purpose, spec fields, eviction interaction, controller integration)tasks.md— Accessing clusters (kubectl, API access, in-cluster access), Managing objects (imperative, declarative, labeling, editing), Configuring Pods (node assignment, QoS, extended resources, probes, ConfigMaps/Secrets, storage), Managing cluster (taints, cordon/drain, debugging, ephemeral containers), Installing addons, Administering stateful applications, Cluster Administration (planning, managing, securing, certificates, observability: metrics/logs/traces, node autoscaling, HugePages scheduling, GPU scheduling with device plugins)reference.md— kubectl (syntax, operations, resource types, output options, common operations, plugins, version compatibility, declarative vs imperative), glossary (key terms), well-known labels, annotations and taints (common labels, app labels, node taints, pod annotations, security labels, storage annotations, service annotations, kubeadm labels), API versioning (alpha/beta/GA levels, API groups, deprecation policy), Feature Gates (usage, feature stages, lifecycle), Client Libraries (Go, Python, Java, JS, C#, Haskell), Component Reference (CLI flags, ports and protocols, JSONPath)
What ships with it
13 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.
- 10d ago First seen · 236 lines · 40 tokens per session scan A 4249c1deee86
kubernetes-docs is a skill published in the GitHub repository pledgeandgrow/pledge-skills (10 stars, last pushed 1mo ago), licensed MIT. It adds 40 tokens to every session and 2,705 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. 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.
service-ingress
Kubernetes Service 与 Ingress.
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.
kubernetes
Kubernetes operations playbook for deploying services: core objects, probes, resource sizing, safe rollouts, and fast kubectl debugging.
container-manager-kubernetes-operations
Full operational Kubernetes surface via the container-manager-mcp MCP server — workloads (pods/rollouts/StatefulSets/DaemonSets/ReplicaSets/Jobs/CronJobs), config (ConfigMaps/Secrets/Namespaces/CRDs/patch), networking (Ingress/native Services/NetworkPolicy/DNS), storage (PV/PVC/StorageClass/snapshots/CSI), RBAC…
kubectl-basics
A guide to kubectl, the command-line tool used to manage Kubernetes clusters, which run containerized applications.