Kubernetes
SkillCloud & infraOperate, troubleshoot, secure, upgrade, and automate Kubernetes clusters and workloads safely across upstream Kubernetes, k3s, RKE2, MicroK8s, k0s, Talos, OpenShift/OKD, kind, Minikube, Rancher-managed clusters, EKS, AKS, and GKE. Use when a task involves kubectl, Kubernetes APIs, Pods, Deployments,
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Kubernetes skill
What this skill tells your AI
The instructions your AI receives, as published by magnus919/agent-skills in kubernetes/SKILL.md and read by ahel’s review.
K8s local clusters.
When To Use
- Local K8s testing
- Cloud-native dev
- Container orchestration
What To Do
1. Install KIND
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.22.0/kind-linux-amd64
chmod +x ./kind
sudo mv ./kind /usr/local/bin/
2. Create Cluster
kind create cluster
kubectl get pods
3. Common Commands
| Command | What |
|---|---|
| kind create cluster | Create K8s cluster |
| kind delete cluster | Delete cluster |
| kubectl apply -f | Apply manifest |
| kubectl get pods | List pods |
| kubectl logs | View logs |
| kubectl exec | Execute in pod |
4. Manifest
apiVersion: apps/v1
kind: Deployment
metadata:
name: app
spec:
replicas: 3
selector:
matchLabels:
app: myapp
template:
spec:
containers:
- name: app
image: myapp:latest
Output
## Kubernetes
| Cluster | Nodes | Status |
|---------|-------|--------|
| [name] | [n] | [READY] |
### Deployments
- [list]
Role: K8s Operator Input: Manifests Output: Running services
K8s locally.
Signals
- GitHub stars
- 78
- Forks
- 8
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by magnus919, not kubernetes
Automated review, not a security audit. Ruleset v1.
Advanced
- Catalog kind
- skill
- Gateway key
kubernetes- Source
- github.com/magnus919/agent-skills