fix(skills): strict-YAML-compatible SKILL.md descriptions (Copilot CLI parse) - #134
Merged
Conversation
…ML compat) Six skill descriptions carried a ': ' (colon-space) inside an unquoted YAML plain scalar (e.g. 'stay true over time: mark ...'). Claude Code's lenient parser accepts it, but strict YAML parsers (GitHub Copilot CLI) reject it with 'mapping values are not allowed here' — so claim-verification, proof-synthesis, release-artifact-pipeline, release-planning, traceability-audit, and repo-hygiene failed to load there. Replace the offending ': ' with ' — ' (keeps the unquoted style of the other skills; no meaning change). Verified: strict yaml.safe_load fails on all six before, all 15 skills parse after. Plugin 0.15.0 -> 0.15.1. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Symptom: loading several skills into GitHub Copilot CLI fails with failed to parse yaml.
Cause: six skill
description:fields are unquoted YAML plain scalars containing a:(colon-space) — e.g. '…stay true over time: mark the assertion…'. Claude Code's lenient parser accepts it; strict YAML (Copilot CLI) rejects it (mapping values are not allowed here).Fix: replace the single offending
:in each with—— keeps the unquoted style the other 9 skills use, no meaning change. Affected: claim-verification, proof-synthesis, release-artifact-pipeline, release-planning, traceability-audit, and repo-hygiene (caught by a full scan; not yet reported).Verified:
yaml.safe_loadof the frontmatter fails on all six before and passes for all 15 skills after.Plugin 0.15.0 → 0.15.1.
🤖 Generated with Claude Code