k8s-orchestrator

k8s-orchestrator is a skill for Claude Code from k1lgor/virtual-company. It costs 30 tokens per session (3,104 once invoked), scanned A, original, MIT.

A set of instructions for Kubernetes, a system that runs and manages containerised applications across one or more machines.

In plain words
What is it for?
Use it to create Kubernetes deployments, services, ingress rules for external traffic, configuration and secret resources, Helm charts, or to debug cluster issues.
Why use it?
It helps deployments include limits on resource use, health checks, and a way to recover from a bad update.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the virtual-company plugin — 27 skills, 1 command, 6 agents, 3 hooks shipped together

Good fit Use it to create Kubernetes deployments, services, ingress rules for external traffic, configuration and secret resources, Helm charts, or to debug cluster issues.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/k1lgor/virtual-company/15-k8s-orchestrator
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 k1lgor/virtual-company --skill 15-k8s-orchestrator
Clone the repo
git clone --depth 1 https://github.com/k1lgor/virtual-company

Made for: Claude Code.

Or install virtual-company, the plugin that ships this one along with the rest of its 27 skills, 1 command, 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 k8s-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/k1lgor/virtual-company/15-k8s-orchestrator/github.svg)](https://agentmods.dev/skills/k1lgor/virtual-company/15-k8s-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/15-k8s-orchestrator"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/15-k8s-orchestrator/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 k8s-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/k1lgor/virtual-company/15-k8s-orchestrator"><img src="https://agentmods.dev/badge/skills/k1lgor/virtual-company/15-k8s-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,104 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.00030 $0.03104
Opus 5 $0.00015 $0.01552
Sonnet 5 $0.00006 $0.00621
Haiku 4.5 $0.00003 $0.00310

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

Security

Grade A, and why

k8s-orchestrator 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 11d 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.

skills/15-k8s-orchestrator/SKILL.md · 352 lines

How it starts

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

☸️ Kubernetes Orchestrator / SRE

You are the Lead Kubernetes Engineer. You define the manifests that scale applications, manage traffic, and ensure high availability across containerized clusters.

🛑 The Iron Law

NO DEPLOYMENT WITHOUT RESOURCE LIMITS, PROBES, AND ROLLBACK STRATEGY

Every Deployment manifest MUST have resource requests/limits, liveness/readiness probes, and a rollback-friendly strategy. Deploying without these is unmonitorable and unrecoverable.

🛠️ Tool Guidance

  • Cluster Audit: Use Bash to check current namespace resources or pod statuses.
  • Discovery: Use Grep to find existing ConfigMaps or Secret references.
  • Execution: Use Edit to generate K8s YAML manifests or Helm templates.
  • Verification: Use Bash to validate manifests (kubectl apply --dry-run=client).

📍 When to Apply

  • "Write a Kubernetes deployment for our new microservice."
  • "Create an Ingress rule to expose our API."
  • "Set up ConfigMaps and Secrets for production environment."
  • "Create a Helm chart template for this stack."

Decision Tree: K8s Resource Design

graph TD
    A[Service to Deploy] --> B{Needs external access?}
    B -->|Yes| C{HTTPS required?}
    B -->|No| D[ClusterIP Service]
    C -->|Yes| E[Ingress + TLS cert-manager]
    C -->|No| F[NodePort or LoadBalancer Service]
    E --> G[Define Deployment]
    F --> G
    D --> G
    G --> H{Stateful?}
    H -->|Yes| I[StatefulSet + PVC]
    H -->|No| J{Cron job?}
    J -->|Yes| K[CronJob resource]
    J -->|No| L[Deployment]
    I --> M[Apply with --dry-run]
    K --> M
    L --> M
    M --> N{Dry run passes?}
    N -->|No| O[Fix manifest errors]
    O --> M
    N -->|Yes| P[✅ Ready to apply]

Read the full file on GitHub · 352 lines

Files

What ships with it

1 file 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. 11d ago First seen · 352 lines · 30 tokens per session scan A 77fea651d3df

Subscribe to this mod's changes

k8s-orchestrator is a skill published in the GitHub repository k1lgor/virtual-company (4 stars, last pushed 2mo ago), licensed MIT. It adds 30 tokens to every session and 3,104 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.

Related

Other skills, from other repositories

langbot-deploy

Deploy and configure a LangBot instance — Docker / Docker Compose, Kubernetes, the config.yaml model, the Box sandbox runtime, the plugin runtime, and the global API key. Use when installing, deploying, upgrading, or configuring LangBot in production or self-hosted environments. Triggers on "deploy langbot", "langbot…

langbot-app/LangBot · 104 tokens

deployment

Deploy Memoria with Docker Compose or Kubernetes. Environment variables, multi-instance setup, security. Use when deploying or configuring Memoria.

matrixorigin/memoria · 28 tokens

k8s-agent-sandbox-mcp

An MCP server skill for managing Kubernetes sandboxes. Enables creating, executing commands, managing files, and terminating instances via the official kubernetes-sigs/agent-sandbox MCP server.

kubernetes-sigs/agent-sandbox · 46 tokens

kubernetes-specialist

Use when managing Kubernetes clusters, debugging Pods and workloads, designing Helm charts, reviewing manifests, or improving deployment, scaling, and observability practices.

seaworld008/Commonly-used-high-value-skills · 34 tokens

deploy-mcp

Deploy the FutureSearch MCP server to staging or production on GKE. Use when the user wants to deploy, redeploy, roll back, scale replicas, or check deployment status. Triggers on deploy, redeploy, staging, production, rollout, scale, replicas.

futuresearch/futuresearch-python · 58 tokens

archestra-dev-investigate

Use when investigating Archestra bugs or incidents — staging issues, backend 50x errors, Drizzle failed queries, DB connection pressure, deploy regressions, or Kubernetes/runtime symptoms. Orientation only; defers the process to /investigate.

archestra-ai/archestra · 54 tokens