From f2286a82510a7043c55a478cd505dbbef9cc0375 Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Mon, 13 Jul 2026 08:52:22 -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. --- command/debug.md | 2 +- command/review.md | 2 +- command/subagent-driven-development.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/command/debug.md b/command/debug.md index b5c305f..1f120e2 100644 --- a/command/debug.md +++ b/command/debug.md @@ -1,6 +1,6 @@ --- description: Systematically investigate and fix a bug or error -argument-hint: [error/symptom] +argument-hint: "[error/symptom]" --- # Systematic Debugging diff --git a/command/review.md b/command/review.md index c31f1e0..4b5b8b3 100644 --- a/command/review.md +++ b/command/review.md @@ -1,6 +1,6 @@ --- description: Request a code review for the current work -argument-hint: [files] +argument-hint: "[files]" --- # Request Code Review diff --git a/command/subagent-driven-development.md b/command/subagent-driven-development.md index 4d470d9..27a7d6f 100644 --- a/command/subagent-driven-development.md +++ b/command/subagent-driven-development.md @@ -1,6 +1,6 @@ --- description: Execute plan using subagent-driven development -argument-hint: [plan-file] +argument-hint: "[plan-file]" --- # Execute Plan