-
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathsettings.example.json
More file actions
81 lines (81 loc) · 1.96 KB
/
settings.example.json
File metadata and controls
81 lines (81 loc) · 1.96 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
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"permissions": {
"deny": [
"Bash(rm -rf *)",
"Bash(curl * | bash)",
"Bash(wget * | sh)",
"Edit(/vendor/**)",
"Edit(/node_modules/**)"
],
"ask": [
"Bash(git push *)",
"Bash(git reset *)",
"Bash(docker *)",
"Bash(npm publish *)",
"Bash(npx * deploy *)"
],
"allow": [
"Read",
"Glob",
"Grep",
"Edit",
"Write",
"Bash(npm run *)",
"Bash(pnpm *)",
"Bash(git status)",
"Bash(git diff *)",
"Bash(git log *)",
"Bash(git branch *)",
"Bash(git checkout *)",
"Bash(git add *)",
"Bash(git commit *)",
"Bash(ls *)",
"Bash(cat *)",
"Bash(head *)",
"Bash(tail *)",
"Bash(wc *)",
"Bash(find *)",
"Bash(grep *)",
"Bash(node *)",
"Bash(npx jest *)",
"Bash(npx vitest *)",
"Bash(npx tsc *)",
"Bash(npx eslint *)",
"MCP(github:*)",
"MCP(context7:*)",
"Task(*)",
"Agent(*)"
]
},
"outputStyle": "Explanatory",
"statusLine": "model branch tokens",
"plansDirectory": ".claude/plans",
"enableAllProjectMcpServers": false,
"attribution": {
"commitMessage": "",
"prDescription": ""
},
"env": {
"CLAUDE_AUTOCOMPACT_PCT_OVERRIDE": "80"
},
"spinnerVerbs": [
"Thinking",
"Analyzing",
"Exploring",
"Investigating",
"Crafting",
"Reviewing"
],
"spinnerTipsOverride": [
"Use /compact at task boundaries to keep context fresh",
"Shift+Tab cycles modes: Normal > Auto > Plan",
"Ctrl+B sends the current task to background",
"Use subagents for parallel exploration",
"claude -w creates an instant parallel worktree session",
"Voice mode: /voice then hold spacebar to talk",
"Esc Esc rewinds to the last checkpoint",
"Write tests alongside code for better AI output",
"/doctor diagnoses configuration issues"
]
}