agentsclimarketplace

Kubernetes

Skill fworks-tech/agenthood/skills/kubernetes

A society of AI agents with impeccable standards and zero tolerance for 'fix stuff' commits.

Install
npx -y skills add fworks-tech/agenthood --skill kubernetes

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Manage Kubernetes clusters via kubectl. Use when deploying, inspecting, or debugging Kubernetes resources.

SKILL.md

1.3 KB, as published. Nobody here has run it

kubectl

Use kubectl to interact with Kubernetes clusters.

Common Commands

Pods

  • List pods: kubectl get pods
  • Describe pod: kubectl describe pod <name>
  • Logs: kubectl logs <pod>
  • Exec into pod: kubectl exec -it <pod> -- /bin/bash

Deployments

  • List deployments: kubectl get deployments
  • Scale: kubectl scale deployment <name> --replicas=3
  • Rollout status: kubectl rollout status deployment/<name>
  • Rollback: kubectl rollout undo deployment/<name>

Services

  • List services: kubectl get services
  • Expose: kubectl expose deployment <name> --port=80 --target-port=8080

Context

  • Current context: kubectl config current-context
  • Switch context: kubectl config use-context <name>
  • List contexts: kubectl config get-contexts

Notes

  • Requires kubectl installed and ~/.kube/config configured
  • Use -n <namespace> to target a specific namespace

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.