kubernetes-manifest-author

kubernetes-manifest-author is a skill for Claude Code, Codex from JayRHa/AgentSkills. It costs 114 tokens per session (1,579 once invoked), scanned A, original, MIT.

A guide for writing Kubernetes YAML files, called manifests, that describe how applications should run in Kubernetes, a system for deploying and managing containers.

In plain words
What is it for?
Use it to create Deployments, StatefulSets, CronJobs, Services, optional Ingress routing, probes, resource requests and limits, security contexts, and ConfigMap or Secret wiring.
Why use it?
It helps cover the operational details that can be missed in a basic deployment, including health checks, resource limits, security settings, and application configuration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create Deployments, StatefulSets, CronJobs, Services, optional Ingress routing, probes, resource requests and limits, security contexts, and ConfigMap or Secret wiring.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jayrha/agentskills/kubernetes-manifest-author
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 JayRHa/AgentSkills --skill kubernetes-manifest-author
Clone the repo
git clone --depth 1 https://github.com/JayRHa/AgentSkills

Made for: Claude Code, Codex.

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-manifest-author

README.md
[![agentmods](https://agentmods.dev/badge/skills/jayrha/agentskills/kubernetes-manifest-author/github.svg)](https://agentmods.dev/skills/jayrha/agentskills/kubernetes-manifest-author)
Your own site
<a href="https://agentmods.dev/skills/jayrha/agentskills/kubernetes-manifest-author"><img src="https://agentmods.dev/badge/skills/jayrha/agentskills/kubernetes-manifest-author/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-manifest-author

Your own site · 80×15
<a href="https://agentmods.dev/skills/jayrha/agentskills/kubernetes-manifest-author"><img src="https://agentmods.dev/badge/skills/jayrha/agentskills/kubernetes-manifest-author.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 114 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,579 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00114 $0.01579
Opus 5 $0.00057 $0.00790
Sonnet 5 $0.00023 $0.00316
Haiku 4.5 $0.00011 $0.00158

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

Security

Grade A, and why

kubernetes-manifest-author 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/validate_manifest.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

kubernetes-manifest-author/SKILL.md · 100 lines

How it starts

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

Kubernetes Manifest Author

Overview

Produce correct, secure, and reliable Kubernetes YAML for deploying stateless and stateful workloads. This skill turns an application description into a complete manifest set: workload (Deployment/StatefulSet/CronJob), Service, optional Ingress, probes, resource governance, security context hardening, and configuration wiring.

Keywords: kubernetes, k8s, manifest, yaml, deployment, statefulset, service, ingress, liveness probe, readiness probe, startup probe, resources requests limits, securityContext, runAsNonRoot, podSecurityStandards, HPA, autoscaling, ConfigMap, Secret, PodDisruptionBudget, rollout, kubectl, helm, kustomize.

This skill is opinionated toward the restricted Pod Security Standard and production SRE defaults. Loosen only when the user has a concrete reason.

Workflow

  1. Gather the workload shape. Determine: container image + tag (never :latest), listening port(s), stateless vs stateful, replica count, environment/config inputs, secrets, and exposure (cluster-internal, Ingress, LoadBalancer). If the user omits something, apply the safe defaults in references/best-practices.md and state the assumption.

  2. Pick the workload kind using the decision table below. Most web/API services are Deployment.

  3. Author the workload manifest. Start from templates/deployment.yaml. Always fill in: explicit labels, image with pinned tag, resource requests AND limits, all three probe types where appropriate, a hardened securityContext, and a RollingUpdate strategy.

  4. Add the Service. Use templates/service.yaml. Match selector to the Pod template labels exactly. Default to ClusterIP; use LoadBalancer/NodePort only when externally requested.

  5. Add exposure and resilience extras as needed: Ingress, HorizontalPodAutoscaler, PodDisruptionBudget, ConfigMap/Secret. See references/resource-catalog.md.

  6. Wire configuration. Inject config via envFrom/env (ConfigMap) and secrets via secretKeyRef or mounted volumes. Never hardcode secrets in the manifest.

Read the full file on GitHub · 100 lines

Files

What ships with it

6 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. 9d ago First seen · 100 lines · 114 tokens per session scan A 21cef8b46d8d

Subscribe to this mod's changes

kubernetes-manifest-author is a skill published in the GitHub repository JayRHa/AgentSkills (5 stars, last pushed 1mo ago), licensed MIT. It adds 114 tokens to every session and 1,579 once invoked, about $0.0006 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.