yaml-validator
Installation
SKILL.md
YAML Validator
Validate YAML files for syntax, structure, and schema compliance.
Common Issues
| Issue | Fix |
|---|---|
| Mixed tabs/spaces | Convert to 2-space indentation |
| Missing colon | Add : after key |
| Special chars unquoted | Quote strings with :, {, }, [, ] |
| Duplicate keys | Remove or merge |
| Boolean-looking strings | Quote yes, no, on, off |
| Trailing spaces | Remove with sed -i 's/[[:space:]]*$//' |