-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.example.json
More file actions
36 lines (36 loc) · 1.25 KB
/
Copy pathsettings.example.json
File metadata and controls
36 lines (36 loc) · 1.25 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
33
34
35
36
{
"permissions": {
"defaultMode": "bypassPermissions"
},
"model": "claude-opus-4-8[1m]",
"hooks": {
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "MSG=$(jq -r '.message // \"Claude Code notification\"' | tr -d '\"\\\\'); if command -v notify-send >/dev/null 2>&1; then notify-send 'Claude Code' \"$MSG\"; elif command -v osascript >/dev/null 2>&1; then osascript -e \"display notification \\\"$MSG\\\" with title \\\"Claude Code\\\"\"; fi"
}
]
}
]
},
"statusLine": {
"type": "command",
"command": "bash \"${CLAUDE_CONFIG_DIR:-$HOME/.claude}/statusline-command.sh\"",
"refreshInterval": 30
},
"skipDangerousModePermissionPrompt": true,
"enabledPlugins": {
"skill-creator@claude-plugins-official": true,
"math-olympiad@claude-plugins-official": true,
"playwright@claude-plugins-official": true,
"claude-md-management@claude-plugins-official": true,
"typescript-lsp@claude-plugins-official": true,
"claude-code-setup@claude-plugins-official": true,
"telegram@claude-plugins-official": true,
"chrome-devtools-mcp@claude-plugins-official": true,
"frontend-design@claude-plugins-official": true
}
}