What problem does it solve? Kubernetes manifests often fail at deploy time due to syntax errors, schema violations, or admission controller rejections that are only discovered after applying them to a cluster. This Skill runs a multi-stage validation pipeline that catches these issues before deployment and produces a report-only summary with suggested fixes. ## Core Features & Use Cases - Multi-Stage Validation: Runs yamllint for syntax, kubeconform for schema validation, and kubectl server-side dry-run for admission controller checks, with deterministic stage gates and fallbacks when tools are missing. - CRD Detection and Documentation Lookup: Detects Custom Resource Definitions in manifests and looks up their spec requirements via Context7 MCP or web search, since CRD schemas are not covered by standard validators. - Report-Only Output: Generates a structured report with severity tables, file-absolute line numbers, before/after fix suggestions, and next steps, without ever modifying user files. - Use Case: Before deploying a multi-document YAML containing a Deployment, Service, and cert-manager Certificate, run this Skill to catch a string-typed containerPort, detect the CRD, and confirm the manifest passes a server-side dry-run. ## Quick Start Ask the AI to validate your Kubernetes manifest file, for example: validate the file manifests/deployment.yaml and report all errors before I deploy it.