Description
The file skills/migrating-workflow-v4-to-v5/SKILL.md has a YAML syntax error in its frontmatter that prevents it from loading on skills.sh.
Error
Error in user YAML: (): mapping values are not allowed in this context at line 2 column 549
Root Cause
The description field on line 3 contains unescaped special characters and is not properly formatted as a YAML string. The line is truncated with [...] mid-value, which breaks YAML parsing.
Current (broken):
description: Upgrades an app from Workflow SDK 4.x to 5.0. Use when bumping the workflow / @workflow/* dependencies to v5, or when hitting removed v4 APIs — runStep, stepEntrypoint, `work[...]
The value contains backticks, forward slashes, and special characters that require proper YAML quoting.
Impact
- The skill cannot be loaded from skills.sh
- Users cannot use the migration guide through the CLI
Files Affected
- skills/migrating-workflow-v4-to-v5/SKILL.md (line 3)
Description
The file
skills/migrating-workflow-v4-to-v5/SKILL.mdhas a YAML syntax error in its frontmatter that prevents it from loading on skills.sh.Error
Error in user YAML: (): mapping values are not allowed in this context at line 2 column 549
Root Cause
The
descriptionfield on line 3 contains unescaped special characters and is not properly formatted as a YAML string. The line is truncated with[...]mid-value, which breaks YAML parsing.Current (broken):
description: Upgrades an app from Workflow SDK 4.x to 5.0. Use when bumping the
workflow/@workflow/*dependencies to v5, or when hitting removed v4 APIs —runStep,stepEntrypoint, `work[...]The value contains backticks, forward slashes, and special characters that require proper YAML quoting.
Impact
Files Affected