LOADOUT_002 — Loadout Parse
What This Means
Section titled “What This Means”The loadout’s loadout.yaml manifest file exists but contains invalid content and cannot be parsed.
Common Causes
Section titled “Common Causes”- YAML syntax errors (bad indentation, missing colons, unclosed quotes)
- Missing required fields (
name,provider,items) - Invalid content type references in the items list
- File encoding issues
How to Fix
Section titled “How to Fix”- Open the
loadout.yamlfile and check for YAML syntax errors - Ensure all required fields are present:
name: my-loadoutprovider: claude-codeitems: - type: rules path: my-rule.md- Validate YAML syntax with a linter or online validator
- Ensure content type references match valid syllago content types
Example Output
Section titled “Example Output”Error LOADOUT_002: failed to parse "my-loadout/loadout.yaml": yaml: line 3: did not find expected key Suggestion: check YAML syntax and ensure required fields (name, provider, items) are present