From 80e8c878fa39e35d7940bee0efe7fdac2aeea382 Mon Sep 17 00:00:00 2001 From: Jeremy Walker Date: Thu, 12 Feb 2026 22:24:22 +0000 Subject: [PATCH] Extract issue number in /fix skill to support org/repo#number format The gh CLI doesn't accept "exercism/website#8622" format directly. Parse the issue number from $ARGUMENTS before passing to gh issue view, matching the extraction already used elsewhere in the skill. Co-Authored-By: Claude Opus 4.6 --- .claude/skills/fix/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/fix/SKILL.md b/.claude/skills/fix/SKILL.md index acdd01e039..8bbede75f3 100644 --- a/.claude/skills/fix/SKILL.md +++ b/.claude/skills/fix/SKILL.md @@ -13,7 +13,7 @@ You are fixing a GitHub issue for the exercism/website repository. ## Issue details ```json -!`gh issue view $ARGUMENTS --json number,title,body,labels,comments` +!`gh issue view $(echo "$ARGUMENTS" | grep -oE '[0-9]+$') --json number,title,body,labels,comments` ``` Issue number: !`echo "$ARGUMENTS" | grep -oE '[0-9]+$'`