forked from Mizoreww/awesome-claude-code-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
68 lines (68 loc) · 2.47 KB
/
Copy pathsettings.json
File metadata and controls
68 lines (68 loc) · 2.47 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
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
},
"model": "opus",
"enabledPlugins": {
"document-skills@anthropic-agent-skills": true,
"example-skills@anthropic-agent-skills": true,
"fine-tuning@ai-research-skills": true,
"post-training@ai-research-skills": true,
"inference-serving@ai-research-skills": true,
"distributed-training@ai-research-skills": true,
"optimization@ai-research-skills": true,
"everything-claude-code@everything-claude-code": true,
"claude-mem@thedotmack": true,
"frontend-design@claude-plugins-official": true,
"context7@claude-plugins-official": true,
"superpowers@claude-plugins-official": true,
"code-review@claude-plugins-official": true,
"github@claude-plugins-official": true,
"playwright@claude-plugins-official": true,
"feature-dev@claude-plugins-official": true,
"code-simplifier@claude-plugins-official": true,
"ralph-loop@claude-plugins-official": true,
"commit-commands@claude-plugins-official": true
},
"hooks": {
"SessionStart": [
{
"matcher": "startup",
"hooks": [
{
"type": "command",
"command": "LESSONS_FILE=\"$HOME/.claude/lessons.md\"; if [ -f \"$LESSONS_FILE\" ]; then echo '=== Lessons Learned (auto-loaded via SessionStart hook) ==='; cat \"$LESSONS_FILE\"; echo '=== End of Lessons ==='; echo 'IMPORTANT: You MUST briefly confirm you have loaded these lessons at session start.'; else echo 'No lessons.md found at ~/.claude/lessons.md'; fi",
"statusMessage": "Loading lessons..."
}
]
},
{
"matcher": "compact",
"hooks": [
{
"type": "command",
"command": "LESSONS_FILE=\"$HOME/.claude/lessons.md\"; if [ -f \"$LESSONS_FILE\" ]; then echo '=== Lessons Learned (reloaded after compaction) ==='; cat \"$LESSONS_FILE\"; echo '=== End of Lessons ==='; echo 'IMPORTANT: You MUST briefly confirm you have loaded these lessons.'; else echo 'No lessons.md found at ~/.claude/lessons.md'; fi",
"statusMessage": "Reloading lessons after compaction..."
}
]
}
]
},
"skipDangerousModePermissionPrompt": true,
"permissions": {
"defaultMode": "bypassPermissions",
"allow": [
"Bash(*)",
"Read(*)",
"Write(*)",
"Edit(*)",
"Glob(*)",
"Grep(*)",
"WebFetch(*)",
"WebSearch(*)",
"NotebookEdit(*)",
"Task(*)",
"mcp__*"
]
}
}