What problem does it solve? Manually writing Kubernetes deployment manifests for every microservice is repetitive and error-prone, especially when enforcing security hardening, health probes, autoscaling, and monitoring consistently across services. ## Core Features & Use Cases - Helm Chart Generation: Creates a complete helm-chart/ directory with Chart.yaml, values.yaml, and templates for Deployment, Service, HPA, ServiceAccount, ServiceMonitor, and Secret. - Security Hardening by Default: Enforces non-root containers, read-only root filesystems, dropped capabilities, seccomp profiles, and disabled service account token automounting. - Observability Integration: Wires liveness/readiness probes to Spring Actuator health endpoints and adds a Prometheus ServiceMonitor scraping the actuator metrics endpoint. - Use Case: A team finishing a new Spring Boot service needs production-grade Kubernetes manifests; this Skill generates the full chart with hardened security contexts and probes, leaving only registry and resource values to fill in. ## Quick Start Ask the AI to apply the cd skill to generate a Helm chart for your Spring Boot service with your chart name, port, context path, and image registry.