From 0d586e4952494d58ed5c60926aa5982311e41044 Mon Sep 17 00:00:00 2001 From: Damian Galarza Date: Tue, 14 Apr 2026 18:18:17 -0400 Subject: [PATCH] fix: quote community-marketing description to valid YAML The unquoted description contained "Trigger phrases:" which YAML parsed as a nested mapping, causing the skills CLI to silently drop the skill during discovery. Wrap the value in double quotes and escape inner quotes. --- skills/community-marketing/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/community-marketing/SKILL.md b/skills/community-marketing/SKILL.md index 572f60c..f057037 100644 --- a/skills/community-marketing/SKILL.md +++ b/skills/community-marketing/SKILL.md @@ -1,6 +1,6 @@ --- name: community-marketing -description: Build and leverage online communities to drive product growth and brand loyalty. Use when the user wants to create a community strategy, grow a Discord or Slack community, manage a forum or subreddit, build brand advocates, increase word-of-mouth, drive community-led growth, engage users post-signup, or turn customers into evangelists. Trigger phrases: "build a community," "community strategy," "Discord community," "Slack community," "community-led growth," "brand advocates," "user community," "forum strategy," "community engagement," "grow our community," "ambassador program," "community flywheel." +description: "Build and leverage online communities to drive product growth and brand loyalty. Use when the user wants to create a community strategy, grow a Discord or Slack community, manage a forum or subreddit, build brand advocates, increase word-of-mouth, drive community-led growth, engage users post-signup, or turn customers into evangelists. Trigger phrases: \"build a community,\" \"community strategy,\" \"Discord community,\" \"Slack community,\" \"community-led growth,\" \"brand advocates,\" \"user community,\" \"forum strategy,\" \"community engagement,\" \"grow our community,\" \"ambassador program,\" \"community flywheel.\"" metadata: version: 1.0.0 ---