From 48d3313c129e8cb9843188225ced5f0ec0bc85f6 Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Fri, 3 Jul 2026 10:11:50 -0700 Subject: [PATCH] fix: quote argument-hint so YAML parses it as string Copilot CLI 1.0.65 requires the skill frontmatter argument-hint to be a string. An unquoted bracketed value parses as a YAML sequence and the skill fails to load. Wrap the value in double quotes so it stays a string across YAML 1.1/1.2 parsers. --- skills/organize/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/organize/SKILL.md b/skills/organize/SKILL.md index 33bf374..7513cfb 100644 --- a/skills/organize/SKILL.md +++ b/skills/organize/SKILL.md @@ -1,7 +1,7 @@ --- name: organize description: Open the Cross-Code Organizer (CCO) dashboard — view and manage all memories, skills, MCP servers, hooks, and configs across scopes -argument-hint: [--port ] +argument-hint: "[--port ]" allowed-tools: [Bash, Read] ---