fix(skills): valid YAML frontmatter for sem-ai-bootstrap (Codex skip)#60
Merged
Conversation
dexyk
approved these changes
Jun 17, 2026
The description contained `command not found: sem-ai` — an unquoted colon-space that strict YAML parsers read as a mapping key, so Codex rejected the file with "mapping values are not allowed in this context" and skipped loading the skill. Claude Code's parser tolerated it, hiding the bug. Single-quote the value (apostrophe doubled) so it parses as a plain string everywhere; the rendered text is unchanged. The other 16 skills already parse as valid YAML (verified with yq). Closes #43 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4dcd25b to
82a2d99
Compare
Merged
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.
Closes #43.
Codex skipped loading the
sem-ai-bootstrapskill with:Cause: the
descriptionvalue containscommand not found: sem-ai. The unquoted:(colon-space) is parsed as akey: valuemapping by strict YAML parsers, so Codex rejects the frontmatter. Claude Code's looser parser accepted it, which hid the bug.Fix: single-quote the description (with the lone apostrophe in
isn'tdoubled per YAML rules). The rendered string is byte-for-byte unchanged.Verified with
yq: the fixed file parses, the description round-trips exactly, and all 17 bundledSKILL.mdfrontmatters are now valid YAML (the other 16 already were — they have no colon-space in the value).🤖 Generated with Claude Code