fix(agent-compatibility): quote SKILL.md description containing colons - #207
Open
vadims-xplor wants to merge 1 commit into
Open
fix(agent-compatibility): quote SKILL.md description containing colons#207vadims-xplor wants to merge 1 commit into
vadims-xplor wants to merge 1 commit into
Conversation
Unquoted colons in the check-agent-compatibility description caused YAML parse errors during skills CLI repo scans (npx skills update).
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.
Summary
Fixes a YAML frontmatter parse error in
check-agent-compatibility/SKILL.md.The unquoted description contains colons (
pass: scanner score...), which YAML interprets as nested mappings. This causesnpx skills updateto emit a warning when scanning the repo:Quoting the description resolves the parse error.
Test plan
yamlpackage used by the skills CLInpx skills update -p -yno longer warns on this skill after mergeNote
Low Risk
Documentation/metadata-only YAML fix with no runtime, security, or data-handling impact.
Overview
Wraps the
check-agent-compatibilityskill frontmatterdescriptionin double quotes so YAML no longer treats colons in the text (e.g. after “pass”) as nested mappings.That removes the skills CLI “Nested mappings are not allowed in compact mappings” warning when scanning this skill; skill behavior and body content are unchanged.
Reviewed by Cursor Bugbot for commit 21cdc5e. Bugbot is set up for automated code reviews on this repo. Configure here.