From cb364a48faaa24f6dfbdccc6466772e52022cea2 Mon Sep 17 00:00:00 2001 From: thejesh Date: Fri, 3 Jul 2026 01:05:36 -0700 Subject: [PATCH] create-skill: quote argument-hint to keep it a YAML string Copilot CLI 1.0.65 requires the SKILL.md `argument-hint` frontmatter field to be a string. An unquoted `[skill-name (optional)]` value is parsed by YAML as a flow sequence, which breaks skill loading in the new release. Wrap the value in double quotes so it parses as a plain string, matching the string form used by the other SKILL.md files in this repo. --- .claude/skills/create-skill/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/create-skill/SKILL.md b/.claude/skills/create-skill/SKILL.md index f5dd51a..569998d 100644 --- a/.claude/skills/create-skill/SKILL.md +++ b/.claude/skills/create-skill/SKILL.md @@ -3,7 +3,7 @@ name: create-skill version: 1.0.0 description: Interactively create a new Claude Code skill and add it to the elastic-docs-skills catalog. Use when the user wants to generate a new skill, scaffold a slash command, or build automation for docs tasks. disable-model-invocation: true -argument-hint: [skill-name (optional)] +argument-hint: "[skill-name (optional)]" allowed-tools: Read, Write, Bash(mkdir *), Bash(ls *), Bash(git *), Bash(gh *), Glob, Grep, AskUserQuestion ---