-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsettings.json
More file actions
128 lines (128 loc) · 3.85 KB
/
Copy pathsettings.json
File metadata and controls
128 lines (128 loc) · 3.85 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"env": {
"CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR": "1"
},
"permissions": {
"allow": [
"mcp__sequential-thinking__sequentialthinking",
"mcp__qmd__query",
"mcp__qmd__get",
"mcp__qmd__search",
"mcp__qmd__vsearch",
"mcp__qmd__multi_get",
"mcp__qmd__status",
"mcp__playwright__browser_navigate",
"mcp__playwright__browser_click",
"mcp__playwright__browser_close",
"mcp__playwright__browser_snapshot",
"WebSearch",
"WebFetch(domain:github.com)",
"Bash(curl:*)",
"Bash(python3:*)",
"Bash(git log:*)",
"Bash(git pull:*)",
"Bash(git rebase:*)",
"Bash(gh pr:*)",
"Bash(gh pr create:*)",
"Bash(gh pr view:*)",
"Bash(gh pr edit:*)",
"Bash(gh pr diff:*)",
"Bash(gh pr comment:*)",
"Bash(gh api:*)",
"Bash(claude:*)",
"Bash(ccs:*)",
"Bash(ccs version:*)",
"Bash(kubectl get:*)",
"Bash(kubectl logs:*)",
"Bash(kubectl rollout status:*)",
"Bash(docker-compose up:*)",
"Bash(npm update:*)",
"Bash(npm install:*)",
"Bash(npm show:*)",
"Bash(npx biome:*)",
"Bash(jq:*)",
"Bash(shellcheck:*)",
"Bash(qmd:*)",
"Bash(qmd embed:*)",
"Bash(~/.config/opencode/skill/qmd-knowledge/scripts/record.sh:*)",
"Bash(~/.claude/skills/qmd-knowledge/scripts/record.sh:*)",
"Bash(ls:*)",
"Bash(find:*)",
"Bash(cat:*)",
"Bash(grep:*)",
"Bash(tree:*)",
"Bash(chmod:*)",
"Bash(mkdir:*)",
"Bash(test:*)",
"Bash(wait:*)",
"Bash(.gitignore:*)",
"Bash(command -v:*)",
"Bash(timeout:*)",
"Bash(lsof:*)",
"Bash(xargs kill -9:*)",
"Bash(tee:*)",
"Bash(sh:*)",
"Bash(source:*)",
"Bash(get_config:*)"
],
"defaultMode": "plan"
},
"model": "opusplan",
"hooks": {
"Notification": [],
"Stop": [],
"PostToolUse": [
{
"matcher": "Write|Edit|MultiEdit",
"hooks": [
{
"type": "command",
"command": "jq -r '.tool_input.file_path' | { read file_path; if echo \"$file_path\" | grep -q '\\.(ts|tsx|js|jsx)$'; then biome check --write \"$file_path\"; fi; }"
},
{
"type": "command",
"command": "if [[ \"$( jq -r .tool_input.file_path )\" =~ \\.go$ ]]; then gofmt -w \"$( jq -r .tool_input.file_path )\"; fi"
},
{
"type": "command",
"command": "jq -r '.tool_input.file_path' | { read file_path; if echo \"$file_path\" | grep -q '\\.(md|mdx)$'; then npx prettier --write \"$file_path\"; fi; }"
}
]
}
],
"UserPromptSubmit": [],
"PreToolUse": [
{
"matcher": "WebSearch",
"hooks": [
{
"type": "command",
"command": "node \"~/.ccs/hooks/websearch-transformer.cjs\"",
"timeout": 120
}
]
}
]
},
"statusLine": {
"type": "command",
"command": "bash -c 'node \"$(ls -td ~/.claude/plugins/cache/claude-hud/claude-hud/*/ 2>/dev/null | head -1)dist/index.js\"'"
},
"enabledPlugins": {
"claude-mem@thedotmack": false,
"typescript-lsp@claude-plugins-official": true,
"pyright-lsp@claude-plugins-official": true,
"context7@claude-plugins-official": true,
"frontend-design@claude-plugins-official": true,
"learning-output-style@claude-plugins-official": true,
"swift-lsp@claude-plugins-official": true,
"lua-lsp@claude-plugins-official": true,
"plannotator@plannotator": true,
"claude-hud@claude-hud": true,
"code-simplifier@claude-plugins-official": true,
"worktrunk@worktrunk": true,
"rust-analyzer-lsp@claude-plugins-official": true,
"claude-md-management@claude-plugins-official": true
}
}