-
Notifications
You must be signed in to change notification settings - Fork 1
feat(permissions): allow osascript/kill/pkill/open for browser-extraction skill (Aaron 2026-05-12 authorization) #2805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -75,6 +75,10 @@ | |
| "Bash(z3 *)", | ||
| "Bash(node *)", | ||
| "Bash(mkdir *)", | ||
| "Bash(osascript *)", | ||
|
|
||
| "Bash(kill *)", | ||
| "Bash(pkill *)", | ||
|
Comment on lines
+79
to
+80
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new Useful? React with 👍 / 👎.
Comment on lines
+79
to
+80
|
||
| "Bash(open -a *)", | ||
|
Comment on lines
+78
to
+81
|
||
| "Edit", | ||
| "Write", | ||
| "WebFetch", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Allowing
Bash(osascript *)grants unrestricted AppleScript execution, and on macOS AppleScript can invoke arbitrary shell commands (for example viado shell script), which bypasses the intended command allow-list model. This means any future skill invocation that reachesosascriptcan execute commands far outside browser extraction, so the permission is materially broader than the scoped intent stated in the commit.Useful? React with 👍 / 👎.