-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.example.json
More file actions
125 lines (125 loc) · 3.48 KB
/
Copy pathsettings.example.json
File metadata and controls
125 lines (125 loc) · 3.48 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
{
"llm": {
"api_key": "sk-your-deepseek-key",
"provider": "deepseek",
"model": "deepseek-v4-pro",
"sub_model": "deepseek-v4-flash",
"mode": "normal",
"base_url": "https://api.deepseek.com",
"timeout": "600s",
"retry": {
"max_retries": 3,
"initial_backoff": "1s",
"max_backoff": "30s",
"multiplier": 2.0
},
"headers": {},
"extra_params": {
"thinking": {"type": "enabled"},
"reasoning_effort": "max"
},
"profiles": {
"kimi": {
"api_key": "sk-your-kimi-key",
"model": "kimi-k2",
"base_url": "https://api.moonshot.cn/v1"
},
"openai": {
"api_key": "sk-your-openai-key",
"model": "gpt-5",
"base_url": "https://api.openai.com/v1"
}
}
},
"permissions": {
"allow": ["read_file", "search_file", "grep", "ls"],
"deny": ["shell(rm -rf /*)"],
"ask": ["write_file", "edit_file"]
},
"sandbox": {
"enabled": false,
"failIfUnavailable": false,
"allowUnsandboxedCommands": true,
"excludedCommands": ["docker *", "git push *"],
"env": {
"GOPATH": "./.waveloom-gopath",
"GOMODCACHE": "./.waveloom-gomodcache",
"GOCACHE": "./.waveloom-gocache",
"GOPROXY": "https://proxy.golang.org,direct"
},
"network": {
"mode": "off"
},
"filesystem": {
"allowWrite": ["~/.cache", "//tmp/build"],
"allowRead": ["~/.docker/run"],
"denyRead": ["~/.ssh", "~/.env", "~/.aws", "~/.docker"]
},
"capabilities": {
"keep": []
},
"credentials": {
"files": ["~/.ssh", "~/.aws/credentials"],
"envVars": ["GH_TOKEN", "NPM_TOKEN", "AWS_ACCESS_KEY_ID"]
}
},
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "~/.claude/hooks/rtk-rewrite.sh",
"timeout": 5000
}
]
}
],
"PostToolUse": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "curl -s -X POST 'http://localhost:8080/log' -d @-"
}
]
}
],
"Notification": [
{
"matcher": "",
"hooks": [
{
"type": "command",
"command": "notify-slack.sh"
}
]
}
]
},
"session": {
"dir": ".waveloom/sessions"
},
"compaction": {
"tier1_threshold": 0.60,
"tier2_threshold": 0.80,
"tier3_threshold": 0.95,
"protection_zone_tokens": "8K",
"context_limit_tokens": "1M"
},
"tool_timeout": "10m",
"environment": {
"tools": {
"go": "D:\\go\\go\\bin\\go",
"python": "/usr/local/bin/python3"
}
},
"web_search": {
"brave_api_key": ""
},
"theme": "auto",
"locale": "auto",
"plans_directory": "~/.waveloom/plans"
}