From c2022d3698c2ed89a5d9ca4a724571d2819057a5 Mon Sep 17 00:00:00 2001 From: Anthony Morris Date: Tue, 6 Jan 2026 13:46:09 -0800 Subject: [PATCH] fix(ralph-wiggum): add :* to allowed-tools pattern to permit arguments (#16522) 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" ---