forked from njerschow/Command
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommand.entitlements
More file actions
32 lines (27 loc) · 1.09 KB
/
Command.entitlements
File metadata and controls
32 lines (27 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- App Sandbox (required for Mac App Store) -->
<key>com.apple.security.app-sandbox</key>
<true/>
<!-- Network client (for feedback submission and claude -p) -->
<key>com.apple.security.network.client</key>
<true/>
<!-- Network server (for future Claude hooks HTTP listener) -->
<key>com.apple.security.network.server</key>
<true/>
<!-- AppleEvents / Automation (to communicate with Terminal.app) -->
<key>com.apple.security.automation.apple-events</key>
<true/>
<!-- Temporary exception: AppleScript access to Terminal.app -->
<key>com.apple.security.temporary-exception.apple-events</key>
<array>
<string>com.apple.Terminal</string>
<string>com.googlecode.iterm2</string>
</array>
<!-- User-selected file access (for reading ~/.claude/settings.json) -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
</dict>
</plist>