From c7cdb37f8a6b9aae74e8dc7102db75834667631b Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Mon, 13 Jul 2026 09:46:16 -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/init.md | 2 +- commands/issues.md | 2 +- commands/status.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/init.md b/commands/init.md index f1eefba..1b54809 100644 --- a/commands/init.md +++ b/commands/init.md @@ -1,7 +1,7 @@ --- description: Manually initialize or reload research context for sigint version: 0.1.0 -argument-hint: [--full] [--topic ] +argument-hint: "[--full] [--topic ]" allowed-tools: Bash, Glob, Grep, Read, Write --- diff --git a/commands/issues.md b/commands/issues.md index 9a0ddbb..1fa6b5f 100644 --- a/commands/issues.md +++ b/commands/issues.md @@ -1,7 +1,7 @@ --- description: Create GitHub issues from research findings as atomic deliverables version: 0.2.0 -argument-hint: [--repo ] [--dry-run] [--labels ] +argument-hint: "[--repo ] [--dry-run] [--labels ]" allowed-tools: Read, Write, Bash, Grep, Glob, Agent, TeamCreate, TeamDelete, SendMessage, TaskCreate, TaskUpdate, TaskList, TaskGet, AskUserQuestion, ToolSearch, mcp__github__issue_write, mcp__github__issue_read --- diff --git a/commands/status.md b/commands/status.md index 472a453..619010e 100644 --- a/commands/status.md +++ b/commands/status.md @@ -1,7 +1,7 @@ --- description: Show current research session state and progress version: 0.1.0 -argument-hint: [--verbose] +argument-hint: "[--verbose]" allowed-tools: Glob, Grep, Read ---