From 670200fe0af5e3b5a5ba6608b673422cba84e020 Mon Sep 17 00:00:00 2001 From: cuioss oliver <23139298+cuioss@users.noreply.github.com> Date: Wed, 26 Aug 2026 14:26:11 +0200 Subject: [PATCH] fix: allow AskUserQuestion in the release skill The skill instructs the agent to use AskUserQuestion when the release version is ambiguous, but allowed-tools listed only Bash, Read and Edit. So at the riskiest step - choosing the version number - it could not do the one thing it insists on, and would have had to guess or stall. Found by review on cuioss/cui-test-juli-logger#123, where the same frontmatter had been copied from these skills. All six affected repos are fixed identically. Co-Authored-By: Claude --- .claude/skills/release/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/release/SKILL.md b/.claude/skills/release/SKILL.md index 43d1c00b..69c2e15a 100644 --- a/.claude/skills/release/SKILL.md +++ b/.claude/skills/release/SKILL.md @@ -2,7 +2,7 @@ name: release description: Cut a cui-java-tools release — bump .github/project.yml version, open and merge the release PR, wait for the automated Release workflow, verify the release landed, then reformat the generated GitHub release notes user-invocable: true -allowed-tools: Bash, Read, Edit +allowed-tools: Bash, Read, Edit, AskUserQuestion --- # Release Skill