From 393e14c7794b8df2f4eaa84de24763310fa14290 Mon Sep 17 00:00:00 2001 From: thejesh23 Date: Mon, 13 Jul 2026 08:52:08 -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. --- plugins/context-fields/commands/adversarial.md | 2 +- plugins/context-fields/commands/code.md | 2 +- plugins/context-fields/commands/concise.md | 2 +- plugins/context-fields/commands/conventional.md | 2 +- plugins/context-fields/commands/creative.md | 2 +- plugins/context-fields/commands/critic.md | 2 +- plugins/context-fields/commands/debug.md | 2 +- plugins/context-fields/commands/elaborate.md | 2 +- plugins/context-fields/commands/empathy.md | 2 +- plugins/context-fields/commands/explore.md | 2 +- plugins/context-fields/commands/generate.md | 2 +- plugins/context-fields/commands/interview.md | 2 +- plugins/context-fields/commands/novel.md | 2 +- plugins/context-fields/commands/planning.md | 2 +- plugins/context-fields/commands/scope.md | 2 +- plugins/context-fields/commands/simplify.md | 2 +- plugins/context-fields/commands/solve.md | 2 +- plugins/context-fields/commands/steelman.md | 2 +- plugins/context-fields/commands/teacher.md | 2 +- plugins/context-fields/commands/trust.md | 2 +- plugins/context-fields/commands/verbose.md | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/plugins/context-fields/commands/adversarial.md b/plugins/context-fields/commands/adversarial.md index a6242b5..f8bdeec 100644 --- a/plugins/context-fields/commands/adversarial.md +++ b/plugins/context-fields/commands/adversarial.md @@ -1,6 +1,6 @@ --- description: Force identification of failure modes and attack vectors -argument-hint: [system or code to review for security] +argument-hint: "[system or code to review for security]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/code.md b/plugins/context-fields/commands/code.md index 6759da7..0df3298 100644 --- a/plugins/context-fields/commands/code.md +++ b/plugins/context-fields/commands/code.md @@ -1,6 +1,6 @@ --- description: Force assumption-stating and edge case consideration before writing code -argument-hint: [your code request] +argument-hint: "[your code request]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/concise.md b/plugins/context-fields/commands/concise.md index 1fad4b2..615639c 100644 --- a/plugins/context-fields/commands/concise.md +++ b/plugins/context-fields/commands/concise.md @@ -1,6 +1,6 @@ --- description: Force brevity and directness over verbosity -argument-hint: [your question] +argument-hint: "[your question]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/conventional.md b/plugins/context-fields/commands/conventional.md index 3fb3610..1882779 100644 --- a/plugins/context-fields/commands/conventional.md +++ b/plugins/context-fields/commands/conventional.md @@ -1,6 +1,6 @@ --- description: Force practical, proven approaches over novel ones (anti-/creative) -argument-hint: [your request] +argument-hint: "[your request]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/creative.md b/plugins/context-fields/commands/creative.md index c34193e..ce7fe1c 100644 --- a/plugins/context-fields/commands/creative.md +++ b/plugins/context-fields/commands/creative.md @@ -1,6 +1,6 @@ --- description: Remove premature filtering and encourage unusual connections for brainstorming -argument-hint: [topic or problem to brainstorm] +argument-hint: "[topic or problem to brainstorm]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/critic.md b/plugins/context-fields/commands/critic.md index abef484..f26b381 100644 --- a/plugins/context-fields/commands/critic.md +++ b/plugins/context-fields/commands/critic.md @@ -1,6 +1,6 @@ --- description: Force rigorous examination of ideas, arguments, and plans -argument-hint: [idea or plan to critique] +argument-hint: "[idea or plan to critique]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/debug.md b/plugins/context-fields/commands/debug.md index 9cc1c47..b397886 100644 --- a/plugins/context-fields/commands/debug.md +++ b/plugins/context-fields/commands/debug.md @@ -1,6 +1,6 @@ --- description: Force systematic root cause analysis over symptom fixing -argument-hint: [error or problem description] +argument-hint: "[error or problem description]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/elaborate.md b/plugins/context-fields/commands/elaborate.md index 37bc6f1..2e34256 100644 --- a/plugins/context-fields/commands/elaborate.md +++ b/plugins/context-fields/commands/elaborate.md @@ -1,6 +1,6 @@ --- description: Force thorough exploration of complexity and future considerations (anti-/simplify) -argument-hint: [your question] +argument-hint: "[your question]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/empathy.md b/plugins/context-fields/commands/empathy.md index ef52299..cd680ab 100644 --- a/plugins/context-fields/commands/empathy.md +++ b/plugins/context-fields/commands/empathy.md @@ -1,6 +1,6 @@ --- description: Force emotional acknowledgment before problem-solving -argument-hint: [what you're feeling or experiencing] +argument-hint: "[what you're feeling or experiencing]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/explore.md b/plugins/context-fields/commands/explore.md index e77e642..8b6d9b8 100644 --- a/plugins/context-fields/commands/explore.md +++ b/plugins/context-fields/commands/explore.md @@ -1,6 +1,6 @@ --- description: Force exploratory thinking that delays commitment and retains competing interpretations -argument-hint: [your question or topic] +argument-hint: "[your question or topic]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/generate.md b/plugins/context-fields/commands/generate.md index 2ea009b..e377950 100644 --- a/plugins/context-fields/commands/generate.md +++ b/plugins/context-fields/commands/generate.md @@ -1,6 +1,6 @@ --- description: Generate a new Context Field from a failure description -argument-hint: [describe the unwanted behavior] +argument-hint: "[describe the unwanted behavior]" --- You are a Context Field Generator. Convert this failure into inhibition constraints. diff --git a/plugins/context-fields/commands/interview.md b/plugins/context-fields/commands/interview.md index 08dc074..6ee540b 100644 --- a/plugins/context-fields/commands/interview.md +++ b/plugins/context-fields/commands/interview.md @@ -1,6 +1,6 @@ --- description: Transform into a thought partner who asks clarifying questions before advising -argument-hint: [your question or situation] +argument-hint: "[your question or situation]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/novel.md b/plugins/context-fields/commands/novel.md index dc2f754..373c65a 100644 --- a/plugins/context-fields/commands/novel.md +++ b/plugins/context-fields/commands/novel.md @@ -1,6 +1,6 @@ --- description: Force novel, non-obvious thinking that avoids familiar patterns -argument-hint: [your request] +argument-hint: "[your request]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/planning.md b/plugins/context-fields/commands/planning.md index a0b7e52..7260415 100644 --- a/plugins/context-fields/commands/planning.md +++ b/plugins/context-fields/commands/planning.md @@ -1,6 +1,6 @@ --- description: Force structure and planning before execution -argument-hint: [task to plan] +argument-hint: "[task to plan]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/scope.md b/plugins/context-fields/commands/scope.md index 59c657a..cbf3971 100644 --- a/plugins/context-fields/commands/scope.md +++ b/plugins/context-fields/commands/scope.md @@ -1,6 +1,6 @@ --- description: Force explicit boundary-setting before diving in -argument-hint: [project or feature to scope] +argument-hint: "[project or feature to scope]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/simplify.md b/plugins/context-fields/commands/simplify.md index 7150eba..590bc2d 100644 --- a/plugins/context-fields/commands/simplify.md +++ b/plugins/context-fields/commands/simplify.md @@ -1,6 +1,6 @@ --- description: Force reduction of complexity to essentials -argument-hint: [system or approach to simplify] +argument-hint: "[system or approach to simplify]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/solve.md b/plugins/context-fields/commands/solve.md index e996646..80d78af 100644 --- a/plugins/context-fields/commands/solve.md +++ b/plugins/context-fields/commands/solve.md @@ -1,6 +1,6 @@ --- description: Force immediate solutions over questioning (anti-/interview) -argument-hint: [problem to solve] +argument-hint: "[problem to solve]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/steelman.md b/plugins/context-fields/commands/steelman.md index 682e4a5..33a9bbd 100644 --- a/plugins/context-fields/commands/steelman.md +++ b/plugins/context-fields/commands/steelman.md @@ -1,6 +1,6 @@ --- description: Force the strongest version of any argument or position -argument-hint: [argument or position to steelman] +argument-hint: "[argument or position to steelman]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/teacher.md b/plugins/context-fields/commands/teacher.md index 01a73e0..d41b48b 100644 --- a/plugins/context-fields/commands/teacher.md +++ b/plugins/context-fields/commands/teacher.md @@ -1,6 +1,6 @@ --- description: Force understanding verification before moving forward -argument-hint: [topic to learn or explain] +argument-hint: "[topic to learn or explain]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/trust.md b/plugins/context-fields/commands/trust.md index 15c7aa4..6d60965 100644 --- a/plugins/context-fields/commands/trust.md +++ b/plugins/context-fields/commands/trust.md @@ -1,6 +1,6 @@ --- description: Force good-faith acceptance and building on ideas (anti-/critic) -argument-hint: [idea or plan to build on] +argument-hint: "[idea or plan to build on]" --- Apply these constraints: diff --git a/plugins/context-fields/commands/verbose.md b/plugins/context-fields/commands/verbose.md index af546cc..c37675b 100644 --- a/plugins/context-fields/commands/verbose.md +++ b/plugins/context-fields/commands/verbose.md @@ -1,6 +1,6 @@ --- description: Force comprehensive explanations with full context (anti-/concise) -argument-hint: [your question] +argument-hint: "[your question]" --- Apply these constraints: