From 1ecb36849a68051a390eb11017791182422568a2 Mon Sep 17 00:00:00 2001 From: Anthony Morris Date: Tue, 6 Jan 2026 13:40:40 -0800 Subject: [PATCH] fix(ralph-wiggum): add :* to allowed-tools pattern to permit arguments The allowed-tools pattern was missing :* suffix, causing permission check failures when arguments were passed to the setup script via ```! block. Fixes #16398 --- plugins/ralph-wiggum/commands/ralph-loop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ralph-wiggum/commands/ralph-loop.md b/plugins/ralph-wiggum/commands/ralph-loop.md index 34df8d22..3b4dbcb6 100644 --- a/plugins/ralph-wiggum/commands/ralph-loop.md +++ b/plugins/ralph-wiggum/commands/ralph-loop.md @@ -1,7 +1,7 @@ --- description: "Start Ralph Wiggum loop in current session" argument-hint: "PROMPT [--max-iterations N] [--completion-promise TEXT]" -allowed-tools: ["Bash(${CLAUDE_PLUGIN_ROOT}/scripts/setup-ralph-loop.sh)"] +allowed-tools: ["Bash(${CLAUDE_PLUGIN_ROOT}/scripts/setup-ralph-loop.sh:*)"] hide-from-slash-command-tool: "true" ---