jackspace/claudeskillz · Archived

yaml-config-helper

Validate, format, and troubleshoot YAML configuration files

First seen Jan 24, 2026

Installation

$ npx skills add jackspace/claudeskillz --skill yaml-config-helper

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jackspace/claudeskillz · top by installs.

npx skills add jackspace/claudeskillz

Browse all from jackspace/claudeskillz

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 16
License LICENSE
Default branch master
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 962 B
  • docs SUMMARY.md 85 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 48 installs

SKILL.md

Yaml-config-helper

Instructions

When working with YAML files:

  1. Check syntax (indentation, colons, quotes)
  2. Validate against schemas when possible:

- Docker Compose - Kubernetes - GitHub Actions - Ansible

  • Tabs instead of spaces (YAML requires spaces)
  • Incorrect indentation levels
  • Missing colons after keys
  • Unquoted strings with special characters
  • Inconsistent list formatting
  • Use 2-space indentation (standard)
  • Quote strings with special characters
  • Use explicit typing when needed (!!str, !!int)
  • Add comments for complex configurations
  • Use anchors and aliases for repeated content
  • Suggest yamllint for validation
  • Provide corrected versions
  • Explain validation errors

Examples

Add examples of how to use this skill here.

Notes

  • This skill was auto-generated
  • Edit this file to customize behavior