fix: quote argument-hint so Copilot CLI 1.0.65 loads SKILL.md#3
Open
thejesh23 wants to merge 1 commit into
Open
fix: quote argument-hint so Copilot CLI 1.0.65 loads SKILL.md#3thejesh23 wants to merge 1 commit into
thejesh23 wants to merge 1 commit into
Conversation
Author
|
Tracking issue: #4 — captures the bug diagnosis and reproducer separately for anyone searching the repo who lands there before this PR. |
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.
Bug
Copilot CLI 1.0.65 tightened SKILL.md frontmatter validation and now requires
argument-hintto be a string. In YAML, an unquoted value that starts with[is parsed as a sequence, so:parses as
["senpai-name-or-slug"](a list) and Copilot CLI 1.0.65 rejects the skill at load time.Fix
Wrap the value in double quotes so YAML parses it as a string. The rendered hint is unchanged.
Only one file was affected in this repo:
SKILL.md.Compatibility
Test plan
python3 -c "import yaml; ..."on the updated frontmatter yieldsstr(notlist) forargument-hint.grep -rn "argument-hint:"shows no remaining unquoted[values in the tree./create-senpaistill shows the[senpai-name-or-slug]argument hint as before.