skills/vigilante-issue-implementation-on-kubernetes/SKILL.md
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Kubernetes-focused repository with manifest hardening and workload security guidance.
npx skillsauth add aliengiraffe/vigilante vigilante-issue-implementation-on-kubernetesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
app.kubernetes.io/name, app.kubernetes.io/version, etc.) on all new resources.kubectl --dry-run=client -o yaml or an equivalent offline validator when available.kustomize overlays or Helm values for environment-specific configuration rather than duplicating manifests.default service account for workloads. Create dedicated service accounts scoped to the workload's needs.automountServiceAccountToken: false on pods and service accounts that do not need API access.runAsNonRoot: true and specify a numeric runAsUser in the pod or container securityContext.allowPrivilegeEscalation: false on containers.readOnlyRootFilesystem: true where the application supports it, using emptyDir volumes for writable paths.securityContext.capabilities.drop: ["ALL"].Restricted Pod Security Standards when the workload allows it.Role and RoleBinding (namespace-scoped) over ClusterRole and ClusterRoleBinding unless the workload genuinely needs cluster-wide access.*) in RBAC rules for verbs, resources, or API groups.latest or other mutable tags.NetworkPolicy exists and preserve or extend it rather than removing restrictions.requests and limits on containers to prevent unbounded resource consumption.vigilante-issue-implementation workflow for issue comments, validation, push, and PR creation.vigilante commit for all commit-producing operations. Do not use git commit or GitHub CLI commit flows directly.git config with a coding-agent identity.Co-authored by: trailers or any other agent attribution for Codex, Claude, Gemini, or similar coding-agent identities.AGENTS.md, README.md, CI config) remain authoritative when they are more specific than the generic Kubernetes guidance in this skill.documentation
Help a human author write an implementation-ready GitHub issue that Vigilante can execute reliably.
testing
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Terraform repository with fmt, validate, and secret-safe infrastructure guidance.
tools
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Rust repository with Cargo, Clippy, fmt, and security guidance.
development
Implement a GitHub issue end-to-end when Vigilante dispatches work for a Ruby repository with Bundler, test, lint, and security guidance.