fix(wix-manage): quote gift-cards goal description to fix YAML parse error - #827
Open
itayhewix wants to merge 3 commits into
Open
fix(wix-manage): quote gift-cards goal description to fix YAML parse error#827itayhewix wants to merge 3 commits into
itayhewix wants to merge 3 commits into
Conversation
Contributor
❌ EvalForge YAML Gate: Scenario Locked by Another PRThese scenarios are draft-tagged for other PRs. Wait for those PRs to merge/close, or coordinate with their authors:
|
…error The description contained an unquoted "Recommend: eCommerce" — a colon+space inside a plain YAML scalar is parsed as a nested mapping key, breaking frontmatter parsing with "mapping values are not allowed in this context". Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…e skill frontmatter
Same YAML gotcha as the gift-cards goal fix: an unquoted "Label: text" inside
a plain scalar description is parsed as a nested mapping key, breaking
frontmatter parsing with "mapping values are not allowed in this context".
Affects:
- recommend-ecommerce-strategy.md ("...already has: sales, promotions...")
- pricing-promotions/ecom-pricing-flow-bundle-and-save.md ("[Goal: Drive Cross-Sells]")
- pricing-promotions/ecom-pricing-flow-stock-mover.md ("[Goal: Clear Inventory]")
- pricing-promotions/ecom-pricing-flow-upsell-boost.md ("[Goal: Increase AOV]")
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…ecommerce skill frontmatter" This reverts commit a64b30c.
itayhewix
force-pushed
the
keen-hawk-ded562
branch
from
August 5, 2026 06:43
d7fbb77 to
19cb5e9
Compare
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
Several skill reference files have a
descriptionfrontmatter field containing an unquotedLabel: text(e.g.Recommend: eCommerce,[Goal: Drive Cross-Sells]). A colon+space inside a plain YAML scalar is parsed as a nested mapping key, which breaks frontmatter parsing withError in user YAML: (<unknown>): mapping values are not allowed in this context.Fixed by wrapping each affected
descriptionin double quotes, matching the existing convention used elsewhere (e.g.ecom-load-context.md).Files fixed:
ecommerce/gift-cards/ecom-gift-cards-goal-sell-gift-cards.md—Recommend: eCommerceecommerce/recommend-ecommerce-strategy.md—...already has: sales, promotions...ecommerce/pricing-promotions/ecom-pricing-flow-bundle-and-save.md—[Goal: Drive Cross-Sells]ecommerce/pricing-promotions/ecom-pricing-flow-stock-mover.md—[Goal: Clear Inventory]ecommerce/pricing-promotions/ecom-pricing-flow-upsell-boost.md—[Goal: Increase AOV]Test plan
yaml.safe_load🤖 Generated with Claude Code