fix(skills): quote argument-hint values so YAML parses them as strings#507
Open
fhirt wants to merge 2 commits into
Open
fix(skills): quote argument-hint values so YAML parses them as strings#507fhirt wants to merge 2 commits into
fhirt wants to merge 2 commits into
Conversation
Bare bracket syntax like `argument-hint: [query]` is parsed by YAML as an array. The Copilot CLI skill loader requires argument-hint to be a string, causing 6 skills to fail to load with: argument-hint must be a string Fix: wrap each value in double-quotes so YAML treats it as a string. For understand/SKILL.md the value was already a string inside an array; remove the outer brackets. Fixes Egonex-AI#506
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 #506.
Six skills fail to load with
argument-hint must be a stringbecause theargument-hintvalues use bare YAML bracket syntax which YAML parses as arrays instead of strings.Changes
2 commits:
fix(skills)— Quote allargument-hintvalues in the 6 affectedSKILL.mdfiles so YAML treats them as strings:understand/SKILL.md["[path] [--full|...]"]"[path] [--full|...]"understand-chat/SKILL.md[query]"[query]"understand-dashboard/SKILL.md[project-path]"[project-path]"understand-domain/SKILL.md[--full]"[--full]"understand-explain/SKILL.md[file-path]"[file-path]"understand-knowledge/SKILL.md[wiki-directory]"[wiki-directory]"Skills without
argument-hint(understand-diff,understand-onboard) are unaffected and already load correctly.chore— Bump version2.8.1 → 2.8.2across all 5 version files per CLAUDE.md convention.PR Checklist
fix:/chore:)fix/skill-argument-hint-yaml-string)SKILL.mdfiles — no TypeScript code was modified. ESLint and Vitest only cover.ts/.tsxfiles; neither will flag this change. CI will confirm.