fix(skills): quote agent-orchestration description to fix invalid YAML frontmatter#139
Merged
Merged
Conversation
…L frontmatter The description contained an unquoted colon, which YAML parses as a nested mapping key and breaks frontmatter parsing (e.g. gray-matter used by the CLI's skill index). Fixes #138
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
skills/agent-orchestration/SKILL.mdhad an unquoted colon inside its frontmatterdescriptionvalue, which YAML interprets as a nested mapping key and breaks parsing (e.g. viagray-matter, used by the CLI's skill index).descriptionvalue in double quotes. No other content changed.Closes #138
Validation
claude plugin validate .→✔ Validation passedpython3 -c "yaml.safe_load(...)"on the frontmatter: failed before withmapping values are not allowed here(line 3, col 78); succeeds after.node -e "gray-matter(...)"(actual parser used bypackages/cli/src/util/skill.ts) now correctly extractsnameanddescription.skills/*/SKILL.mdfiles throughgray-matter— all parse cleanly withname/descriptionpresent.npx vitest run src/__tests__/lib/SkillManager.test.ts(packages/cli) → 60/60 passed.npm run build(6 projects),nx run-many -t lint(0 errors),nx run-many -t test→ 901/901 tests passed across all packages (via pre-commit hook).Test plan
claude plugin validate .SkillManager.test.tssuite