From 37d94415e23b9c0fa074c917588476a7392a9a31 Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Mon, 13 Jul 2026 08:50:32 -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/think.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/think.md b/commands/think.md index d4e1a09..cd0cb65 100644 --- a/commands/think.md +++ b/commands/think.md @@ -1,6 +1,6 @@ --- description: Think through a problem on paper before acting -argument-hint: [LINES] [TOPIC] +argument-hint: "[LINES] [TOPIC]" --- # Think Mode