From c5ab727520c9f08e2d870a4ded2b4e75319b76b4 Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Sun, 12 Jul 2026 22:59:06 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20quote=20argument-hint=20YAML=20values=20?= =?UTF-8?q?so=20Copilot=20CLI=20=E2=89=A51.0.65=20loads=20all=20skills?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `argument-hint: [foo]` YAML-parses as a flow sequence (array), not a string. Downstream slash-command loaders that validate `argument-hint` as a string — notably GitHub Copilot CLI ≥ 1.0.65 — silently reject the skill on load, and the command disappears from the CLI menu. Wrap the value in double quotes so it parses as a string. No behaviour change on Claude Code. --- commands/looper.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/looper.md b/commands/looper.md index ef5ac0a..48a1c15 100644 --- a/commands/looper.md +++ b/commands/looper.md @@ -1,6 +1,6 @@ --- description: Design and scaffold a Looper agent loop. -argument-hint: [target-dir] [--template ] +argument-hint: "[target-dir] [--template ]" allowed-tools: Read, Write, Bash ---