What problem does it solve? YAML is unopinionated about formatting, which leads to inconsistent style across a repository. This Skill provides clear, enforced conventions for writing .yaml and .kyaml files so all configuration stays consistent and passes linting. ## Core Features & Use Cases - YAML Best Practices: Defines conventions for quoting, comments, multi-line strings, and file extensions, with a comprehensive annotated reference example. - Linting Guidance: Explains the .yamllint.yaml configuration, including which rules are warnings versus errors and which paths (Helm templates, generated files) are excluded. - KYAML Support: Covers the stricter KYAML subset (YAML with required braces/brackets, no power features) linted with --strict via a separate pre-commit hook. - Use Case: When editing a Helm values.yaml or authoring a new .kyaml config, use this Skill to write conforming files and preview lint results with uv run yamllint -c .yamllint.yaml <path> before committing. ## Quick Start Review and reformat my config.yaml file to follow the repository's YAML best practices and pass yamllint.