opencodekit 0.2.7 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,433 +1,445 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "proxypal/gemini-claude-opus-4-5-thinking"
7
- },
8
- "designer": {
9
- "description": "UI/UX design specialist for mockup analysis and aesthetic guidance",
10
- "model": "proxypal/gemini-3-pro-preview"
11
- },
12
- "explore": {
13
- "description": "Fast codebase search specialist"
14
- },
15
- "general": {
16
- "disable": true
17
- },
18
- "plan": {
19
- "disable": true
20
- },
21
- "planner": {
22
- "description": "Strategic planning agent for architecture and design",
23
- "model": "proxypal/gpt-5.2"
24
- },
25
- "review": {
26
- "description": "Code review, debugging, and security audit specialist",
27
- "model": "proxypal/gemini-2.5-flash-lite"
28
- },
29
- "rush": {
30
- "description": "Fast primary agent for small, well-defined tasks",
31
- "model": "zai-coding-plan/glm-4.6"
32
- },
33
- "scout": {
34
- "description": "External research specialist for library docs and patterns",
35
- "model": "proxypal/gemini-claude-sonnet-4-5"
36
- }
37
- },
38
- "autoupdate": false,
39
- "experimental": {
40
- "batch_tool": true,
41
- "chatMaxRetries": 2,
42
- "continue_loop_on_deny": true,
43
- "primary_tools": ["edit", "write", "bash", "prune"]
44
- },
45
- "formatter": {
46
- "biome": {
47
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
- },
50
- "java-formatter": {
51
- "command": ["google-java-format", "--replace", "$FILE"],
52
- "environment": {
53
- "JAVA_HOME": "{env:JAVA_HOME}"
54
- },
55
- "extensions": [".java"]
56
- },
57
- "prettier": {
58
- "command": ["npx", "prettier", "--write", "$FILE"],
59
- "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
60
- }
61
- },
62
- "keybinds": {
63
- "command_list": ";",
64
- "leader": "`",
65
- "session_child_cycle": "ctrl+alt+right",
66
- "session_child_cycle_reverse": "ctrl+alt+left"
67
- },
68
- "mcp": {
69
- "Framelink MCP for Figma": {
70
- "command": [
71
- "npx",
72
- "-y",
73
- "figma-developer-mcp",
74
- "--figma-api-key={env:FIGMA_API_KEY}",
75
- "--stdio"
76
- ],
77
- "enabled": false,
78
- "type": "local"
79
- },
80
- "augment-context-engine": {
81
- "command": ["auggie", "--mcp"],
82
- "enabled": false,
83
- "type": "local"
84
- },
85
- "context7": {
86
- "enabled": true,
87
- "headers": {
88
- "CONTEXT7_API_KEY": "{env:CONTEXT7_API_KEY}"
89
- },
90
- "timeout": 10000,
91
- "type": "remote",
92
- "url": "https://mcp.context7.com/mcp"
93
- },
94
- "gh_grep": {
95
- "enabled": true,
96
- "type": "remote",
97
- "url": "https://mcp.grep.app"
98
- },
99
- "gkg": {
100
- "enabled": true,
101
- "type": "remote",
102
- "url": "http://localhost:27495/mcp"
103
- },
104
- "playwright": {
105
- "command": ["npx", "@playwright/mcp@latest"],
106
- "enabled": false,
107
- "type": "local"
108
- }
109
- },
110
- "model": "proxypal/gemini-claude-opus-4-5-thinking",
111
- "permission": {
112
- "bash": {
113
- "git commit *": "ask",
114
- "git push *": "ask",
115
- "rm *": "ask",
116
- "rm -rf *": "ask"
117
- },
118
- "doom_loop": "ask",
119
- "edit": "allow",
120
- "external_directory": "allow"
121
- },
122
- "plugin": [
123
- "opencode-gemini-auth",
124
- "./plugin/superpowers.ts",
125
- "./plugin/notification.ts",
126
- "@tarquinen/opencode-dcp@latest",
127
- "@howaboua/pickle-thinker@0.1.3",
128
- "@franlol/opencode-md-table-formatter@0.0.3"
129
- ],
130
- "provider": {
131
- "github-copilot": {
132
- "models": {
133
- "claude-haiku-4.5": {
134
- "attachment": true,
135
- "options": {
136
- "thinking": {
137
- "budgetTokens": 16000,
138
- "type": "enabled"
139
- }
140
- },
141
- "reasoning": true,
142
- "temperature": true,
143
- "tool_call": true
144
- },
145
- "claude-opus-4.5": {
146
- "attachment": true,
147
- "options": {
148
- "thinking": {
149
- "budgetTokens": 32000,
150
- "type": "enabled"
151
- }
152
- },
153
- "reasoning": true,
154
- "temperature": true,
155
- "tool_call": true
156
- },
157
- "claude-sonnet-4.5": {
158
- "attachment": true,
159
- "options": {
160
- "thinking": {
161
- "budgetTokens": 16000,
162
- "type": "enabled"
163
- }
164
- },
165
- "reasoning": true,
166
- "temperature": true,
167
- "tool_call": true
168
- },
169
- "gpt-5.1": {
170
- "attachment": true,
171
- "options": {
172
- "reasoning": {
173
- "effort": "high"
174
- }
175
- },
176
- "reasoning": true,
177
- "temperature": true,
178
- "tool_call": true
179
- },
180
- "gpt-5.1-codex": {
181
- "attachment": true,
182
- "options": {
183
- "reasoning": {
184
- "effort": "high"
185
- }
186
- },
187
- "reasoning": true,
188
- "temperature": true,
189
- "tool_call": true
190
- }
191
- },
192
- "npm": "@ai-sdk/anthropic"
193
- },
194
- "proxypal": {
195
- "models": {
196
- "claude-opus-4-5-20251101": {
197
- "limit": {
198
- "context": 200000,
199
- "output": 64000
200
- },
201
- "name": "Claude Opus 4 5 20251101"
202
- },
203
- "gemini-2.5-computer-use-preview-10-2025": {
204
- "limit": {
205
- "context": 1048576,
206
- "output": 65536
207
- },
208
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
209
- },
210
- "gemini-2.5-flash": {
211
- "limit": {
212
- "context": 1048576,
213
- "output": 65536
214
- },
215
- "name": "Gemini 2 5 Flash"
216
- },
217
- "gemini-2.5-flash-lite": {
218
- "limit": {
219
- "context": 1048576,
220
- "output": 65536
221
- },
222
- "name": "Gemini 2 5 Flash Lite"
223
- },
224
- "gemini-3-pro-image-preview": {
225
- "limit": {
226
- "context": 1048576,
227
- "output": 65536
228
- },
229
- "name": "Gemini 3 Pro Image Preview"
230
- },
231
- "gemini-3-pro-preview": {
232
- "limit": {
233
- "context": 1048576,
234
- "output": 65536
235
- },
236
- "name": "Gemini 3 Pro Preview"
237
- },
238
- "gemini-claude-opus-4-5-thinking": {
239
- "limit": {
240
- "context": 200000,
241
- "output": 64000
242
- },
243
- "name": "Gemini Claude Opus 4 5 Thinking",
244
- "options": {
245
- "thinking": {
246
- "budgetTokens": 32768,
247
- "type": "enabled"
248
- }
249
- },
250
- "reasoning": true
251
- },
252
- "gemini-claude-sonnet-4-5": {
253
- "limit": {
254
- "context": 200000,
255
- "output": 64000
256
- },
257
- "name": "Gemini Claude Sonnet 4 5"
258
- },
259
- "gemini-claude-sonnet-4-5-thinking": {
260
- "limit": {
261
- "context": 200000,
262
- "output": 64000
263
- },
264
- "name": "Gemini Claude Sonnet 4 5 Thinking",
265
- "options": {
266
- "thinking": {
267
- "budgetTokens": 32768,
268
- "type": "enabled"
269
- }
270
- },
271
- "reasoning": true
272
- },
273
- "gpt-5": {
274
- "limit": {
275
- "context": 128000,
276
- "output": 16384
277
- },
278
- "name": "Gpt 5",
279
- "options": {
280
- "reasoning": {
281
- "effort": "medium"
282
- }
283
- },
284
- "reasoning": true
285
- },
286
- "gpt-5-codex": {
287
- "limit": {
288
- "context": 128000,
289
- "output": 16384
290
- },
291
- "name": "Gpt 5 Codex",
292
- "options": {
293
- "reasoning": {
294
- "effort": "medium"
295
- }
296
- },
297
- "reasoning": true
298
- },
299
- "gpt-5-codex-mini": {
300
- "limit": {
301
- "context": 128000,
302
- "output": 16384
303
- },
304
- "name": "Gpt 5 Codex Mini",
305
- "options": {
306
- "reasoning": {
307
- "effort": "medium"
308
- }
309
- },
310
- "reasoning": true
311
- },
312
- "gpt-5.1": {
313
- "limit": {
314
- "context": 128000,
315
- "output": 16384
316
- },
317
- "name": "Gpt 5 1",
318
- "options": {
319
- "reasoning": {
320
- "effort": "medium"
321
- }
322
- },
323
- "reasoning": true
324
- },
325
- "gpt-5.1-codex": {
326
- "limit": {
327
- "context": 128000,
328
- "output": 16384
329
- },
330
- "name": "Gpt 5 1 Codex",
331
- "options": {
332
- "reasoning": {
333
- "effort": "medium"
334
- }
335
- },
336
- "reasoning": true
337
- },
338
- "gpt-5.1-codex-max": {
339
- "limit": {
340
- "context": 128000,
341
- "output": 16384
342
- },
343
- "name": "Gpt 5 1 Codex Max",
344
- "options": {
345
- "reasoning": {
346
- "effort": "medium"
347
- }
348
- },
349
- "reasoning": true
350
- },
351
- "gpt-5.1-codex-mini": {
352
- "limit": {
353
- "context": 128000,
354
- "output": 16384
355
- },
356
- "name": "Gpt 5 1 Codex Mini",
357
- "options": {
358
- "reasoning": {
359
- "effort": "medium"
360
- }
361
- },
362
- "reasoning": true
363
- },
364
- "gpt-5.2": {
365
- "limit": {
366
- "context": 128000,
367
- "output": 16384
368
- },
369
- "name": "Gpt 5 2",
370
- "options": {
371
- "reasoning": {
372
- "effort": "medium"
373
- }
374
- },
375
- "reasoning": true
376
- },
377
- "gpt-oss-120b-medium": {
378
- "limit": {
379
- "context": 128000,
380
- "output": 16384
381
- },
382
- "name": "Gpt Oss 120b Medium"
383
- }
384
- },
385
- "name": "ProxyPal",
386
- "npm": "@ai-sdk/anthropic",
387
- "options": {
388
- "apiKey": "proxypal-local",
389
- "baseURL": "http://127.0.0.1:8317/v1"
390
- }
391
- },
392
- "zai-coding-plan": {
393
- "models": {
394
- "glm-4.6": {
395
- "attachment": true,
396
- "options": {
397
- "thinking": {
398
- "type": "enabled"
399
- }
400
- },
401
- "reasoning": true,
402
- "temperature": true,
403
- "tool_call": true
404
- }
405
- }
406
- }
407
- },
408
- "share": "manual",
409
- "small_model": "opencode/gpt-5-nano",
410
- "theme": "system",
411
- "tools": {
412
- "context7*": true,
413
- "gh_grep*": true,
414
- "gkg*": true
415
- },
416
- "tui": {
417
- "diff_style": "auto",
418
- "scroll_acceleration": {
419
- "enabled": true
420
- },
421
- "scroll_speed": 3
422
- },
423
- "watcher": {
424
- "ignore": [
425
- "node_modules/**",
426
- ".git/**",
427
- "dist/**",
428
- "build/**",
429
- "*.log",
430
- ".DS_Store"
431
- ]
432
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "proxypal/gemini-claude-opus-4-5-thinking"
7
+ },
8
+ "designer": {
9
+ "description": "UI/UX design specialist for mockup analysis and aesthetic guidance",
10
+ "model": "proxypal/gmeini-3-pro-preview"
11
+ },
12
+ "explore": {
13
+ "description": "Fast codebase search specialist",
14
+ "model": "opencode/grok-code"
15
+ },
16
+ "general": {
17
+ "disable": true
18
+ },
19
+ "plan": {
20
+ "disable": true
21
+ },
22
+ "planner": {
23
+ "description": "Strategic planning agent for architecture and design",
24
+ "model": "proxypal/gpt-5.2"
25
+ },
26
+ "review": {
27
+ "description": "Code review, debugging, and security audit specialist",
28
+ "model": "proxypal/gpt-5.2"
29
+ },
30
+ "rush": {
31
+ "description": "Fast primary agent for small, well-defined tasks",
32
+ "model": "zai-coding-plan/glm-4.6"
33
+ },
34
+ "scout": {
35
+ "description": "External research specialist for library docs and patterns",
36
+ "model": "proxypal/gemini-claude-sonnet-4-5"
37
+ }
38
+ },
39
+ "autoupdate": false,
40
+ "experimental": {
41
+ "batch_tool": true,
42
+ "chatMaxRetries": 2,
43
+ "primary_tools": ["edit", "write", "bash", "prune"]
44
+ },
45
+ "formatter": {
46
+ "biome": {
47
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
+ },
50
+ "java-formatter": {
51
+ "command": ["google-java-format", "--replace", "$FILE"],
52
+ "environment": {
53
+ "JAVA_HOME": "{env:JAVA_HOME}"
54
+ },
55
+ "extensions": [".java"]
56
+ },
57
+ "prettier": {
58
+ "command": ["npx", "prettier", "--write", "$FILE"],
59
+ "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
60
+ }
61
+ },
62
+ "keybinds": {
63
+ "command_list": ";",
64
+ "leader": "`",
65
+ "session_child_cycle": "ctrl+alt+right",
66
+ "session_child_cycle_reverse": "ctrl+alt+left"
67
+ },
68
+ "mcp": {
69
+ "Framelink MCP for Figma": {
70
+ "command": [
71
+ "npx",
72
+ "-y",
73
+ "figma-developer-mcp",
74
+ "--figma-api-key={env:FIGMA_API_KEY}",
75
+ "--stdio"
76
+ ],
77
+ "enabled": false,
78
+ "type": "local"
79
+ },
80
+ "context7": {
81
+ "enabled": true,
82
+ "type": "local",
83
+ "command": [
84
+ "npx",
85
+ "-y",
86
+ "@upstash/context7-mcp",
87
+ "--api-key",
88
+ "{env:CONTEXT7_API_KEY}"
89
+ ]
90
+ },
91
+ "gh_grep": {
92
+ "enabled": true,
93
+ "type": "remote",
94
+ "url": "https://mcp.grep.app"
95
+ },
96
+ "gkg": {
97
+ "enabled": true,
98
+ "type": "remote",
99
+ "url": "http://localhost:27495/mcp"
100
+ },
101
+ "playwright": {
102
+ "command": ["npx", "@playwright/mcp@latest"],
103
+ "enabled": false,
104
+ "type": "local"
105
+ }
106
+ },
107
+ "model": "proxypal/gemini-claude-opus-4-5-thinking",
108
+ "permission": {
109
+ "bash": {
110
+ "git commit *": "ask",
111
+ "git push *": "ask",
112
+ "rm *": "ask",
113
+ "rm -rf *": "ask"
114
+ },
115
+ "doom_loop": "ask",
116
+ "edit": "allow",
117
+ "external_directory": "allow"
118
+ },
119
+ "plugin": [
120
+ "opencode-gemini-auth",
121
+ "@tarquinen/opencode-dcp@latest",
122
+ "@howaboua/pickle-thinker@0.1.3",
123
+ "@franlol/opencode-md-table-formatter@0.0.3"
124
+ ],
125
+ "provider": {
126
+ "github-copilot": {
127
+ "models": {
128
+ "claude-haiku-4.5": {
129
+ "attachment": true,
130
+ "options": {
131
+ "thinking": {
132
+ "budgetTokens": 16000,
133
+ "type": "enabled"
134
+ }
135
+ },
136
+ "reasoning": true,
137
+ "temperature": true,
138
+ "tool_call": true
139
+ },
140
+ "claude-opus-4.5": {
141
+ "attachment": true,
142
+ "options": {
143
+ "thinking": {
144
+ "budgetTokens": 32000,
145
+ "type": "enabled"
146
+ }
147
+ },
148
+ "reasoning": true,
149
+ "temperature": true,
150
+ "tool_call": true
151
+ },
152
+ "claude-sonnet-4.5": {
153
+ "attachment": true,
154
+ "options": {
155
+ "thinking": {
156
+ "budgetTokens": 16000,
157
+ "type": "enabled"
158
+ }
159
+ },
160
+ "reasoning": true,
161
+ "temperature": true,
162
+ "tool_call": true
163
+ },
164
+ "gpt-5.1": {
165
+ "attachment": true,
166
+ "options": {
167
+ "reasoning": {
168
+ "effort": "high"
169
+ }
170
+ },
171
+ "reasoning": true,
172
+ "temperature": true,
173
+ "tool_call": true
174
+ },
175
+ "gpt-5.1-codex": {
176
+ "attachment": true,
177
+ "options": {
178
+ "reasoning": {
179
+ "effort": "high"
180
+ }
181
+ },
182
+ "reasoning": true,
183
+ "temperature": true,
184
+ "tool_call": true
185
+ }
186
+ },
187
+ "npm": "@ai-sdk/anthropic"
188
+ },
189
+ "proxypal": {
190
+ "models": {
191
+ "claude-opus-4-5-20251101": {
192
+ "limit": {
193
+ "context": 200000,
194
+ "output": 64000
195
+ },
196
+ "name": "Claude Opus 4 5 20251101"
197
+ },
198
+ "gemini-2.5-computer-use-preview-10-2025": {
199
+ "limit": {
200
+ "context": 1048576,
201
+ "output": 65536
202
+ },
203
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
204
+ },
205
+ "gemini-2.5-flash": {
206
+ "limit": {
207
+ "context": 1048576,
208
+ "output": 65536
209
+ },
210
+ "name": "Gemini 2 5 Flash"
211
+ },
212
+ "gemini-2.5-flash-lite": {
213
+ "limit": {
214
+ "context": 1048576,
215
+ "output": 65536
216
+ },
217
+ "name": "Gemini 2 5 Flash Lite"
218
+ },
219
+ "gemini-3-pro-image-preview": {
220
+ "limit": {
221
+ "context": 1048576,
222
+ "output": 65536
223
+ },
224
+ "name": "Gemini 3 Pro Image Preview"
225
+ },
226
+ "gemini-3-pro-preview": {
227
+ "limit": {
228
+ "context": 1048576,
229
+ "output": 65536
230
+ },
231
+ "name": "Gemini 3 Pro Preview"
232
+ },
233
+ "gemini-claude-opus-4-5-thinking": {
234
+ "limit": {
235
+ "context": 200000,
236
+ "output": 64000
237
+ },
238
+ "name": "Gemini Claude Opus 4 5 Thinking",
239
+ "options": {
240
+ "thinking": {
241
+ "budgetTokens": 32768,
242
+ "type": "enabled"
243
+ }
244
+ },
245
+ "reasoning": true
246
+ },
247
+ "gemini-claude-sonnet-4-5": {
248
+ "limit": {
249
+ "context": 200000,
250
+ "output": 64000
251
+ },
252
+ "name": "Gemini Claude Sonnet 4 5"
253
+ },
254
+ "gemini-claude-sonnet-4-5-thinking": {
255
+ "limit": {
256
+ "context": 200000,
257
+ "output": 64000
258
+ },
259
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
260
+ "options": {
261
+ "thinking": {
262
+ "budgetTokens": 32768,
263
+ "type": "enabled"
264
+ }
265
+ },
266
+ "reasoning": true
267
+ },
268
+ "gpt-5": {
269
+ "limit": {
270
+ "context": 128000,
271
+ "output": 16384
272
+ },
273
+ "name": "Gpt 5",
274
+ "options": {
275
+ "reasoning": {
276
+ "effort": "medium"
277
+ }
278
+ },
279
+ "reasoning": true
280
+ },
281
+ "gpt-5-codex": {
282
+ "limit": {
283
+ "context": 128000,
284
+ "output": 16384
285
+ },
286
+ "name": "Gpt 5 Codex",
287
+ "options": {
288
+ "reasoning": {
289
+ "effort": "medium"
290
+ }
291
+ },
292
+ "reasoning": true
293
+ },
294
+ "gpt-5-codex-mini": {
295
+ "limit": {
296
+ "context": 128000,
297
+ "output": 16384
298
+ },
299
+ "name": "Gpt 5 Codex Mini",
300
+ "options": {
301
+ "reasoning": {
302
+ "effort": "medium"
303
+ }
304
+ },
305
+ "reasoning": true
306
+ },
307
+ "gpt-5.1": {
308
+ "limit": {
309
+ "context": 128000,
310
+ "output": 16384
311
+ },
312
+ "name": "Gpt 5 1",
313
+ "options": {
314
+ "reasoning": {
315
+ "effort": "medium"
316
+ }
317
+ },
318
+ "reasoning": true
319
+ },
320
+ "gpt-5.1-codex": {
321
+ "limit": {
322
+ "context": 128000,
323
+ "output": 16384
324
+ },
325
+ "name": "Gpt 5 1 Codex",
326
+ "options": {
327
+ "reasoning": {
328
+ "effort": "medium"
329
+ }
330
+ },
331
+ "reasoning": true
332
+ },
333
+ "gpt-5.1-codex-max": {
334
+ "limit": {
335
+ "context": 128000,
336
+ "output": 16384
337
+ },
338
+ "name": "Gpt 5 1 Codex Max",
339
+ "options": {
340
+ "reasoning": {
341
+ "effort": "medium"
342
+ }
343
+ },
344
+ "reasoning": true
345
+ },
346
+ "gpt-5.1-codex-mini": {
347
+ "limit": {
348
+ "context": 128000,
349
+ "output": 16384
350
+ },
351
+ "name": "Gpt 5 1 Codex Mini",
352
+ "options": {
353
+ "reasoning": {
354
+ "effort": "medium"
355
+ }
356
+ },
357
+ "reasoning": true
358
+ },
359
+ "gpt-5.2": {
360
+ "limit": {
361
+ "context": 128000,
362
+ "output": 16384
363
+ },
364
+ "name": "Gpt 5 2",
365
+ "options": {
366
+ "reasoning": {
367
+ "effort": "medium"
368
+ }
369
+ },
370
+ "reasoning": true
371
+ },
372
+ "gpt-oss-120b-medium": {
373
+ "limit": {
374
+ "context": 128000,
375
+ "output": 16384
376
+ },
377
+ "name": "Gpt Oss 120b Medium"
378
+ }
379
+ },
380
+ "name": "ProxyPal",
381
+ "npm": "@ai-sdk/openai-compatible",
382
+ "options": {
383
+ "apiKey": "proxypal-local",
384
+ "baseURL": "http://127.0.0.1:8317/v1"
385
+ }
386
+ },
387
+ "opencode": {
388
+ "models": {
389
+ "big-pickle": {
390
+ "reasoning": true,
391
+ "options": {
392
+ "temperature": 1,
393
+ "top_k": 40,
394
+ "top_p": 0.95,
395
+ "reasoningEffort": "high"
396
+ }
397
+ }
398
+ }
399
+ },
400
+ "zai-coding-plan": {
401
+ "models": {
402
+ "glm-4.6": {
403
+ "attachment": true,
404
+ "options": {
405
+ "reasoningEffort": "high",
406
+ "temperature": 1,
407
+ "top_k": 40,
408
+ "top_p": 0.95,
409
+ "thinking": {
410
+ "type": "enabled"
411
+ }
412
+ },
413
+ "reasoning": true,
414
+ "temperature": true,
415
+ "tool_call": true
416
+ }
417
+ }
418
+ }
419
+ },
420
+ "share": "manual",
421
+ "small_model": "opencode/gpt-5-nano",
422
+ "theme": "system",
423
+ "tools": {
424
+ "context7*": true,
425
+ "gh_grep*": true,
426
+ "gkg*": true
427
+ },
428
+ "tui": {
429
+ "diff_style": "auto",
430
+ "scroll_acceleration": {
431
+ "enabled": true
432
+ },
433
+ "scroll_speed": 3
434
+ },
435
+ "watcher": {
436
+ "ignore": [
437
+ "node_modules/**",
438
+ ".git/**",
439
+ "dist/**",
440
+ "build/**",
441
+ "*.log",
442
+ ".DS_Store"
443
+ ]
444
+ }
433
445
  }