Fix invalid YAML frontmatter in firecrawl-build SKILL.md - #7
Open
UltraVioletBob wants to merge 1 commit into
Open
Fix invalid YAML frontmatter in firecrawl-build SKILL.md#7UltraVioletBob wants to merge 1 commit into
UltraVioletBob wants to merge 1 commit into
Conversation
The description value contains an unquoted colon ("inside the app: web
search"), which YAML parses as a nested mapping and rejects. Skill
installers (npx skills add) skip the skill with a parse error as a
result. Quoting the description fixes installation.
Co-Authored-By: Claude Fable 5 <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.
Problem
The
description:value inskills/firecrawl-build/SKILL.mdcontains an unquoted colon (…needs web data inside the app: web search…). YAML interprets:inside a plain scalar as a nested mapping, so the frontmatter fails to parse.As a result,
npx skills add firecrawl/skills(andfirecrawl setup skills) skips this skill on every install:The other skills in this repo only parse because their descriptions happen to contain no colons.
Fix
Wrap the description in single quotes (single, because the text contains double quotes around "fire girl"). Verified the frontmatter now loads with
yaml.safe_loadand the skill installs cleanly.🤖 Generated with Claude Code
Need help on this PR? Tag
@codesmith-botwith what you need. Autofix is disabled.