fix(ralph-wiggum): add :* to allowed-tools pattern to permit arguments#16522
Merged
amorriscode merged 1 commit intomainfrom Jan 6, 2026
Merged
fix(ralph-wiggum): add :* to allowed-tools pattern to permit arguments#16522amorriscode merged 1 commit intomainfrom
amorriscode merged 1 commit intomainfrom
Conversation
The allowed-tools pattern was missing :* suffix, causing permission check failures when arguments were passed to the setup script via ```! block. Fixes #16398
ashwin-ant
approved these changes
Jan 6, 2026
3 tasks
olivier-motium
pushed a commit
to olivier-motium/claude-code
that referenced
this pull request
Jan 9, 2026
anthropics#16522) The allowed-tools pattern was missing :* suffix, causing permission check failures when arguments were passed to the setup script via ```! block. Fixes anthropics#16398
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #16398
The
/ralph-wiggum:ralph-loopslash command was failing with a permission error because theallowed-toolspattern was missing the:*suffix to permit arguments.Root Cause
The
allowed-toolspattern:Doesn't match commands with arguments. When users pass arguments like:
The permission check fails because the pattern doesn't allow for the additional arguments.
Fix
Add
:*to the pattern to permit any arguments:Testing
Verified the fix works by running the command after updating the plugin cache.