giantswarm/claude-code
gs-base
plugins/gs-base/skills/kubernetes/SKILL.md
January 24, 2026
Select agents to install to:
npx add-skill https://github.com/giantswarm/claude-code/blob/main/plugins/gs-base/skills/kubernetes/SKILL.md -a claude-code --skill kubernetesInstallation paths:
.claude/skills/kubernetes/## Best Practices ### kubectl - Specify the `--context` with every kubectl command - When unsure, check if the kubectl CLI version is compatible with the server - Avoid abbreviations when listing resources, use long forms. Don't: `kubectl get po`. Do: `kubectl get pods`. - Use `--output jsonpath='...'` to get exactly the desired output. - When showing a command to the user, use the long form of flags, as they are easier to understand. E. g. `--all-namespaces` instead of `-A`, `--selector` instead of `-l`.