fix(skills): quote bump-version description — unquoted colon breaks YAML frontmatter - #3584
Open
iphixit wants to merge 1 commit into
Open
fix(skills): quote bump-version description — unquoted colon breaks YAML frontmatter#3584iphixit wants to merge 1 commit into
iphixit wants to merge 1 commit into
Conversation
…AML parse
The `description` field contains "version:" — an unquoted colon-space
inside a plain YAML scalar, which is invalid. `yaml.safe_load` fails with
"mapping values are not allowed here", so the skill's frontmatter cannot be
parsed and the skill fails to register.
Reproduce:
python3 -c "import yaml,pathlib; yaml.safe_load(
pathlib.Path('.claude/skills/bump-version/SKILL.md').read_text().split('---')[1])"
Fix: wrap the description in double quotes. No behaviour change; the string
is identical. The other three skills in .claude/skills/ are unaffected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
.claude/skills/bump-version/SKILL.mdhas an unquoteddescriptionvalue containing a colon:A
:(colon-space) inside a plain YAML scalar is not valid. The frontmatter fails to parse:So the skill's frontmatter can't be read and the skill doesn't register.
Reproduce (on current
main)Fails on
main(verified against0fea1eb/ v2.1.34). Passes with this change.Fix
Wrap the description in double quotes. No behaviour change — the string content is byte-identical. It's purely a YAML quoting fix.
Scope
Only this skill is affected. I checked the other three under
.claude/skills/(architecture,i18n,testing) — all parse cleanly and are untouched by this PR.Found while reading the source as a downstream user. Thanks for AionUi.