opencodekit 0.12.0 → 0.12.1

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,481 +1,524 @@
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
- "compaction": {
9
- "description": "Session summarizer for context continuity across compactions",
10
- "model": "github-copilot/claude-haiku-4.5"
11
- },
12
- "explore": {
13
- "description": "Fast codebase search specialist",
14
- "model": "proxypal/gemini-3-flash-preview"
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.1"
25
- },
26
- "review": {
27
- "description": "Code review, debugging, and security audit specialist",
28
- "model": "proxypal/gemini-claude-opus-4-5-thinking"
29
- },
30
- "rush": {
31
- "description": "Fast primary agent for small, well-defined tasks",
32
- "model": "github-copilot/claude-haiku-4.5"
33
- },
34
- "scout": {
35
- "description": "External research specialist for library docs and patterns",
36
- "model": "proxypal/gemini-claude-sonnet-4-5"
37
- },
38
- "vision": {
39
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
40
- "model": "proxypal/gemini-3-pro-preview"
41
- }
42
- },
43
- "autoupdate": false,
44
- "experimental": {
45
- "batch_tool": true,
46
- "chatMaxRetries": 2,
47
- "primary_tools": ["edit", "write", "bash", "prune"]
48
- },
49
- "formatter": {
50
- "biome": {
51
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
52
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
53
- },
54
- "java-formatter": {
55
- "command": ["google-java-format", "--replace", "$FILE"],
56
- "environment": {
57
- "JAVA_HOME": "{env:JAVA_HOME}"
58
- },
59
- "extensions": [".java"]
60
- },
61
- "prettier": {
62
- "command": ["npx", "prettier", "--write", "$FILE"],
63
- "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
64
- }
65
- },
66
- "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
67
- "keybinds": {
68
- "command_list": ";",
69
- "leader": "`",
70
- "session_child_cycle": "ctrl+alt+right",
71
- "session_child_cycle_reverse": "ctrl+alt+left",
72
- "session_compact": "ctrl+k"
73
- },
74
- "mcp": {
75
- "context7": {
76
- "command": [
77
- "npx",
78
- "-y",
79
- "@upstash/context7-mcp",
80
- "--api-key",
81
- "{env:CONTEXT7_API_KEY}"
82
- ],
83
- "enabled": true,
84
- "type": "local"
85
- },
86
- "gh_grep": {
87
- "enabled": true,
88
- "type": "remote",
89
- "url": "https://mcp.grep.app"
90
- }
91
- },
92
- "model": "github-copilot/claude-haiku-4.5",
93
- "permission": {
94
- "bash": {
95
- "git commit *": "ask",
96
- "git push *": "ask",
97
- "rm *": "ask",
98
- "rm -rf *": "ask"
99
- },
100
- "doom_loop": "ask",
101
- "edit": "allow",
102
- "external_directory": "allow"
103
- },
104
- "plugin": [
105
- "@tarquinen/opencode-dcp@latest",
106
- "@franlol/opencode-md-table-formatter@0.0.3"
107
- ],
108
- "provider": {
109
- "github-copilot": {
110
- "models": {
111
- "claude-haiku-4.5": {
112
- "attachment": true,
113
- "options": {
114
- "thinking": {
115
- "budgetTokens": 16000,
116
- "type": "enabled"
117
- }
118
- },
119
- "reasoning": true,
120
- "temperature": true,
121
- "tool_call": true
122
- },
123
- "claude-opus-4.5": {
124
- "attachment": true,
125
- "options": {
126
- "thinking": {
127
- "budgetTokens": 32000,
128
- "type": "enabled"
129
- }
130
- },
131
- "reasoning": true,
132
- "temperature": true,
133
- "tool_call": true
134
- },
135
- "claude-sonnet-4.5": {
136
- "attachment": true,
137
- "options": {
138
- "thinking": {
139
- "budgetTokens": 16000,
140
- "type": "enabled"
141
- }
142
- },
143
- "reasoning": true,
144
- "temperature": true,
145
- "tool_call": true
146
- },
147
- "gpt-5.1": {
148
- "attachment": true,
149
- "options": {
150
- "reasoning": {
151
- "effort": "high"
152
- }
153
- },
154
- "reasoning": true,
155
- "temperature": true,
156
- "tool_call": true
157
- },
158
- "gpt-5.1-codex": {
159
- "attachment": true,
160
- "options": {
161
- "reasoning": {
162
- "effort": "high"
163
- }
164
- },
165
- "reasoning": true,
166
- "temperature": true,
167
- "tool_call": true
168
- }
169
- },
170
- "npm": "@ai-sdk/anthropic"
171
- },
172
- "opencode": {
173
- "models": {
174
- "big-pickle": {
175
- "options": {
176
- "reasoningEffort": "high",
177
- "temperature": 1,
178
- "top_k": 40,
179
- "top_p": 0.95
180
- },
181
- "reasoning": true
182
- }
183
- }
184
- },
185
- "proxypal": {
186
- "models": {
187
- "gemini-2.5-computer-use-preview-10-2025": {
188
- "limit": {
189
- "context": 880964,
190
- "output": 65536
191
- },
192
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
193
- },
194
- "gemini-2.5-flash": {
195
- "limit": {
196
- "context": 880964,
197
- "output": 65536
198
- },
199
- "name": "Gemini 2 5 Flash"
200
- },
201
- "gemini-2.5-flash-lite": {
202
- "limit": {
203
- "context": 880964,
204
- "output": 65536
205
- },
206
- "name": "Gemini 2 5 Flash Lite"
207
- },
208
- "gemini-2.5-pro": {
209
- "limit": {
210
- "context": 880964,
211
- "output": 65536
212
- },
213
- "name": "Gemini 2 5 Pro"
214
- },
215
- "gemini-3-flash-preview": {
216
- "limit": {
217
- "context": 880964,
218
- "output": 65536
219
- },
220
- "name": "Gemini 3 Flash Preview"
221
- },
222
- "gemini-3-pro-image-preview": {
223
- "limit": {
224
- "context": 880964,
225
- "output": 65536
226
- },
227
- "name": "Gemini 3 Pro Image Preview"
228
- },
229
- "gemini-3-pro-preview": {
230
- "limit": {
231
- "context": 880964,
232
- "output": 65536
233
- },
234
- "name": "Gemini 3 Pro Preview"
235
- },
236
- "gemini-claude-opus-4-5-thinking": {
237
- "limit": {
238
- "context": 168000,
239
- "output": 64000
240
- },
241
- "name": "Gemini Claude Opus 4 5 Thinking",
242
- "options": {
243
- "thinking": {
244
- "budgetTokens": 32768,
245
- "type": "enabled"
246
- }
247
- },
248
- "reasoning": true
249
- },
250
- "gemini-claude-sonnet-4-5": {
251
- "limit": {
252
- "context": 168000,
253
- "output": 64000
254
- },
255
- "name": "Gemini Claude Sonnet 4 5"
256
- },
257
- "gemini-claude-sonnet-4-5-thinking": {
258
- "limit": {
259
- "context": 168000,
260
- "output": 64000
261
- },
262
- "name": "Gemini Claude Sonnet 4 5 Thinking",
263
- "options": {
264
- "thinking": {
265
- "budgetTokens": 32768,
266
- "type": "enabled"
267
- }
268
- },
269
- "reasoning": true
270
- },
271
- "glm-4.5": {
272
- "limit": {
273
- "context": 107520,
274
- "output": 16384
275
- },
276
- "name": "Glm 4 5"
277
- },
278
- "glm-4.5-air": {
279
- "limit": {
280
- "context": 107520,
281
- "output": 16384
282
- },
283
- "name": "Glm 4 5 Air"
284
- },
285
- "glm-4.6": {
286
- "limit": {
287
- "context": 107520,
288
- "output": 16384
289
- },
290
- "name": "Glm 4 6"
291
- },
292
- "glm-4.7": {
293
- "limit": {
294
- "context": 107520,
295
- "output": 16384
296
- },
297
- "name": "Glm 4 7"
298
- },
299
- "gpt-5": {
300
- "limit": {
301
- "context": 336000,
302
- "output": 32768
303
- },
304
- "name": "Gpt 5",
305
- "options": {
306
- "reasoningEffort": "medium"
307
- },
308
- "reasoning": true
309
- },
310
- "gpt-5-codex": {
311
- "limit": {
312
- "context": 336000,
313
- "output": 32768
314
- },
315
- "name": "Gpt 5 Codex",
316
- "options": {
317
- "reasoningEffort": "medium"
318
- },
319
- "reasoning": true
320
- },
321
- "gpt-5-codex-mini": {
322
- "limit": {
323
- "context": 336000,
324
- "output": 32768
325
- },
326
- "name": "Gpt 5 Codex Mini",
327
- "options": {
328
- "reasoningEffort": "medium"
329
- },
330
- "reasoning": true
331
- },
332
- "gpt-5.1": {
333
- "limit": {
334
- "context": 336000,
335
- "output": 32768
336
- },
337
- "name": "Gpt 5 1",
338
- "options": {
339
- "reasoningEffort": "medium"
340
- },
341
- "reasoning": true
342
- },
343
- "gpt-5.1-codex": {
344
- "limit": {
345
- "context": 336000,
346
- "output": 32768
347
- },
348
- "name": "Gpt 5 1 Codex",
349
- "options": {
350
- "reasoningEffort": "medium"
351
- },
352
- "reasoning": true
353
- },
354
- "gpt-5.1-codex-max": {
355
- "limit": {
356
- "context": 336000,
357
- "output": 32768
358
- },
359
- "name": "Gpt 5 1 Codex Max",
360
- "options": {
361
- "reasoningEffort": "medium"
362
- },
363
- "reasoning": true
364
- },
365
- "gpt-5.1-codex-mini": {
366
- "limit": {
367
- "context": 336000,
368
- "output": 32768
369
- },
370
- "name": "Gpt 5 1 Codex Mini",
371
- "options": {
372
- "reasoningEffort": "medium"
373
- },
374
- "reasoning": true
375
- },
376
- "gpt-5.2": {
377
- "limit": {
378
- "context": 336000,
379
- "output": 32768
380
- },
381
- "name": "Gpt 5 2",
382
- "options": {
383
- "reasoningEffort": "medium"
384
- },
385
- "reasoning": true
386
- },
387
- "gpt-5.2-codex": {
388
- "limit": {
389
- "context": 336000,
390
- "output": 32768
391
- },
392
- "name": "Gpt 5 2 Codex",
393
- "options": {
394
- "reasoningEffort": "medium"
395
- },
396
- "reasoning": true
397
- },
398
- "gpt-oss-120b-medium": {
399
- "limit": {
400
- "context": 107520,
401
- "output": 16384
402
- },
403
- "name": "Gpt Oss 120b Medium"
404
- }
405
- },
406
- "name": "ProxyPal",
407
- "npm": "@ai-sdk/anthropic",
408
- "options": {
409
- "apiKey": "proxypal-local",
410
- "baseURL": "http://127.0.0.1:8317/v1",
411
- "includeUsage": true
412
- }
413
- },
414
- "zai-coding-plan": {
415
- "models": {
416
- "glm-4.6": {
417
- "limit": {
418
- "context": 128000,
419
- "output": 16384
420
- },
421
- "options": {
422
- "temperature": 1,
423
- "thinking": {
424
- "type": "enabled"
425
- }
426
- },
427
- "reasoning": true,
428
- "temperature": true,
429
- "tool_call": true
430
- },
431
- "glm-4.7": {
432
- "id": "glm-4.7",
433
- "interleaved": true,
434
- "limit": {
435
- "context": 200000,
436
- "output": 128000
437
- },
438
- "name": "GLM-4.7",
439
- "options": {
440
- "temperature": 1,
441
- "thinking": {
442
- "type": "enabled"
443
- }
444
- },
445
- "reasoning": true
446
- }
447
- },
448
- "name": "Z.AI Coding Plan"
449
- }
450
- },
451
- "share": "manual",
452
- "small_model": "opencode/gpt-5-nano",
453
- "permission": {
454
- "bash": {
455
- "git commit *": "ask",
456
- "git push *": "ask",
457
- "rm *": "ask",
458
- "rm -rf *": "ask"
459
- },
460
- "doom_loop": "ask",
461
- "edit": "allow",
462
- "external_directory": "allow"
463
- },
464
- "tui": {
465
- "diff_style": "auto",
466
- "scroll_acceleration": {
467
- "enabled": true
468
- },
469
- "scroll_speed": 3
470
- },
471
- "watcher": {
472
- "ignore": [
473
- "node_modules/**",
474
- ".git/**",
475
- "dist/**",
476
- "build/**",
477
- "*.log",
478
- ".DS_Store"
479
- ]
480
- }
481
- }
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
+ "compaction": {
9
+ "description": "Session summarizer for context continuity across compactions",
10
+ "model": "github-copilot/claude-haiku-4.5"
11
+ },
12
+ "explore": {
13
+ "description": "Fast codebase search specialist",
14
+ "model": "proxypal/gemini-3-flash-preview"
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.1"
25
+ },
26
+ "review": {
27
+ "description": "Code review, debugging, and security audit specialist",
28
+ "model": "proxypal/gemini-claude-opus-4-5-thinking"
29
+ },
30
+ "rush": {
31
+ "description": "Fast primary agent for small, well-defined tasks",
32
+ "model": "github-copilot/claude-haiku-4.5"
33
+ },
34
+ "scout": {
35
+ "description": "External research specialist for library docs and patterns",
36
+ "model": "proxypal/gemini-claude-sonnet-4-5"
37
+ },
38
+ "vision": {
39
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
40
+ "model": "proxypal/gemini-3-pro-preview"
41
+ }
42
+ },
43
+ "autoupdate": false,
44
+ "experimental": {
45
+ "batch_tool": true,
46
+ "chatMaxRetries": 2,
47
+ "primary_tools": [
48
+ "edit",
49
+ "write",
50
+ "bash",
51
+ "prune"
52
+ ]
53
+ },
54
+ "formatter": {
55
+ "biome": {
56
+ "command": [
57
+ "npx",
58
+ "@biomejs/biome",
59
+ "check",
60
+ "--write",
61
+ "$FILE"
62
+ ],
63
+ "extensions": [
64
+ ".js",
65
+ ".jsx",
66
+ ".ts",
67
+ ".tsx",
68
+ ".json",
69
+ ".jsonc"
70
+ ]
71
+ },
72
+ "java-formatter": {
73
+ "command": [
74
+ "google-java-format",
75
+ "--replace",
76
+ "$FILE"
77
+ ],
78
+ "environment": {
79
+ "JAVA_HOME": "{env:JAVA_HOME}"
80
+ },
81
+ "extensions": [
82
+ ".java"
83
+ ]
84
+ },
85
+ "prettier": {
86
+ "command": [
87
+ "npx",
88
+ "prettier",
89
+ "--write",
90
+ "$FILE"
91
+ ],
92
+ "extensions": [
93
+ ".html",
94
+ ".css",
95
+ ".scss",
96
+ ".sass",
97
+ ".md",
98
+ ".yaml",
99
+ ".yml"
100
+ ]
101
+ }
102
+ },
103
+ "instructions": [
104
+ ".opencode/memory/user.md",
105
+ ".opencode/memory/project/*.md"
106
+ ],
107
+ "keybinds": {
108
+ "command_list": ";",
109
+ "leader": "`",
110
+ "session_child_cycle": "ctrl+alt+right",
111
+ "session_child_cycle_reverse": "ctrl+alt+left",
112
+ "session_compact": "ctrl+k"
113
+ },
114
+ "mcp": {
115
+ "context7": {
116
+ "command": [
117
+ "npx",
118
+ "-y",
119
+ "@upstash/context7-mcp",
120
+ "--api-key",
121
+ "{env:CONTEXT7_API_KEY}"
122
+ ],
123
+ "enabled": true,
124
+ "type": "local"
125
+ },
126
+ "gh_grep": {
127
+ "enabled": true,
128
+ "type": "remote",
129
+ "url": "https://mcp.grep.app"
130
+ }
131
+ },
132
+ "model": "github-copilot/claude-haiku-4.5",
133
+ "permission": {
134
+ "bash": {
135
+ "git commit *": "ask",
136
+ "git push *": "ask",
137
+ "rm *": "ask",
138
+ "rm -rf *": "ask"
139
+ },
140
+ "doom_loop": "ask",
141
+ "edit": "allow",
142
+ "external_directory": "allow"
143
+ },
144
+ "plugin": [
145
+ "@tarquinen/opencode-dcp@latest",
146
+ "@franlol/opencode-md-table-formatter@0.0.3"
147
+ ],
148
+ "provider": {
149
+ "github-copilot": {
150
+ "models": {
151
+ "claude-haiku-4.5": {
152
+ "attachment": true,
153
+ "options": {
154
+ "thinking": {
155
+ "budgetTokens": 16000,
156
+ "type": "enabled"
157
+ }
158
+ },
159
+ "reasoning": true,
160
+ "temperature": true,
161
+ "tool_call": true
162
+ },
163
+ "claude-opus-4.5": {
164
+ "attachment": true,
165
+ "options": {
166
+ "thinking": {
167
+ "budgetTokens": 32000,
168
+ "type": "enabled"
169
+ }
170
+ },
171
+ "reasoning": true,
172
+ "temperature": true,
173
+ "tool_call": true
174
+ },
175
+ "claude-sonnet-4.5": {
176
+ "attachment": true,
177
+ "options": {
178
+ "thinking": {
179
+ "budgetTokens": 16000,
180
+ "type": "enabled"
181
+ }
182
+ },
183
+ "reasoning": true,
184
+ "temperature": true,
185
+ "tool_call": true
186
+ },
187
+ "gpt-5.1": {
188
+ "attachment": true,
189
+ "options": {
190
+ "reasoning": {
191
+ "effort": "high"
192
+ }
193
+ },
194
+ "reasoning": true,
195
+ "temperature": true,
196
+ "tool_call": true
197
+ },
198
+ "gpt-5.1-codex": {
199
+ "attachment": true,
200
+ "options": {
201
+ "reasoning": {
202
+ "effort": "high"
203
+ }
204
+ },
205
+ "reasoning": true,
206
+ "temperature": true,
207
+ "tool_call": true
208
+ }
209
+ },
210
+ "npm": "@ai-sdk/anthropic"
211
+ },
212
+ "opencode": {
213
+ "models": {
214
+ "big-pickle": {
215
+ "options": {
216
+ "reasoningEffort": "high",
217
+ "temperature": 1,
218
+ "top_k": 40,
219
+ "top_p": 0.95
220
+ },
221
+ "reasoning": true
222
+ }
223
+ }
224
+ },
225
+ "proxypal": {
226
+ "models": {
227
+ "gemini-2.5-computer-use-preview-10-2025": {
228
+ "limit": {
229
+ "context": 880964,
230
+ "output": 65536
231
+ },
232
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
233
+ },
234
+ "gemini-2.5-flash": {
235
+ "limit": {
236
+ "context": 880964,
237
+ "output": 65536
238
+ },
239
+ "name": "Gemini 2 5 Flash"
240
+ },
241
+ "gemini-2.5-flash-lite": {
242
+ "limit": {
243
+ "context": 880964,
244
+ "output": 65536
245
+ },
246
+ "name": "Gemini 2 5 Flash Lite"
247
+ },
248
+ "gemini-2.5-pro": {
249
+ "limit": {
250
+ "context": 880964,
251
+ "output": 65536
252
+ },
253
+ "name": "Gemini 2 5 Pro"
254
+ },
255
+ "gemini-3-flash-preview": {
256
+ "limit": {
257
+ "context": 880964,
258
+ "output": 65536
259
+ },
260
+ "name": "Gemini 3 Flash Preview",
261
+ "options": {
262
+ "thinking": {
263
+ "budgetTokens": 24576,
264
+ "type": "enabled"
265
+ }
266
+ },
267
+ "reasoning": true
268
+ },
269
+ "gemini-3-pro-image-preview": {
270
+ "limit": {
271
+ "context": 880964,
272
+ "output": 65536
273
+ },
274
+ "name": "Gemini 3 Pro Image Preview"
275
+ },
276
+ "gemini-3-pro-preview": {
277
+ "limit": {
278
+ "context": 880964,
279
+ "output": 65536
280
+ },
281
+ "name": "Gemini 3 Pro Preview",
282
+ "options": {
283
+ "thinking": {
284
+ "budgetTokens": 24576,
285
+ "type": "enabled"
286
+ }
287
+ },
288
+ "reasoning": true
289
+ },
290
+ "gemini-claude-opus-4-5-thinking": {
291
+ "limit": {
292
+ "context": 168000,
293
+ "output": 64000
294
+ },
295
+ "name": "Gemini Claude Opus 4 5 Thinking",
296
+ "options": {
297
+ "thinking": {
298
+ "budgetTokens": 32768,
299
+ "type": "enabled"
300
+ }
301
+ },
302
+ "reasoning": true
303
+ },
304
+ "gemini-claude-sonnet-4-5": {
305
+ "limit": {
306
+ "context": 168000,
307
+ "output": 64000
308
+ },
309
+ "name": "Gemini Claude Sonnet 4 5"
310
+ },
311
+ "gemini-claude-sonnet-4-5-thinking": {
312
+ "limit": {
313
+ "context": 168000,
314
+ "output": 64000
315
+ },
316
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
317
+ "options": {
318
+ "thinking": {
319
+ "budgetTokens": 32768,
320
+ "type": "enabled"
321
+ }
322
+ },
323
+ "reasoning": true
324
+ },
325
+ "glm-4.5": {
326
+ "limit": {
327
+ "context": 107520,
328
+ "output": 16384
329
+ },
330
+ "name": "Glm 4 5"
331
+ },
332
+ "glm-4.5-air": {
333
+ "limit": {
334
+ "context": 107520,
335
+ "output": 16384
336
+ },
337
+ "name": "Glm 4 5 Air"
338
+ },
339
+ "glm-4.6": {
340
+ "limit": {
341
+ "context": 107520,
342
+ "output": 16384
343
+ },
344
+ "name": "Glm 4 6"
345
+ },
346
+ "glm-4.7": {
347
+ "limit": {
348
+ "context": 107520,
349
+ "output": 16384
350
+ },
351
+ "name": "Glm 4 7"
352
+ },
353
+ "gpt-5": {
354
+ "limit": {
355
+ "context": 336000,
356
+ "output": 32768
357
+ },
358
+ "name": "Gpt 5",
359
+ "options": {
360
+ "reasoningEffort": "medium"
361
+ },
362
+ "reasoning": true
363
+ },
364
+ "gpt-5-codex": {
365
+ "limit": {
366
+ "context": 336000,
367
+ "output": 32768
368
+ },
369
+ "name": "Gpt 5 Codex",
370
+ "options": {
371
+ "reasoningEffort": "medium"
372
+ },
373
+ "reasoning": true
374
+ },
375
+ "gpt-5-codex-mini": {
376
+ "limit": {
377
+ "context": 336000,
378
+ "output": 32768
379
+ },
380
+ "name": "Gpt 5 Codex Mini",
381
+ "options": {
382
+ "reasoningEffort": "medium"
383
+ },
384
+ "reasoning": true
385
+ },
386
+ "gpt-5.1": {
387
+ "limit": {
388
+ "context": 336000,
389
+ "output": 32768
390
+ },
391
+ "name": "Gpt 5 1",
392
+ "options": {
393
+ "reasoningEffort": "medium"
394
+ },
395
+ "reasoning": true
396
+ },
397
+ "gpt-5.1-codex": {
398
+ "limit": {
399
+ "context": 336000,
400
+ "output": 32768
401
+ },
402
+ "name": "Gpt 5 1 Codex",
403
+ "options": {
404
+ "reasoningEffort": "medium"
405
+ },
406
+ "reasoning": true
407
+ },
408
+ "gpt-5.1-codex-max": {
409
+ "limit": {
410
+ "context": 336000,
411
+ "output": 32768
412
+ },
413
+ "name": "Gpt 5 1 Codex Max",
414
+ "options": {
415
+ "reasoningEffort": "medium"
416
+ },
417
+ "reasoning": true
418
+ },
419
+ "gpt-5.1-codex-mini": {
420
+ "limit": {
421
+ "context": 336000,
422
+ "output": 32768
423
+ },
424
+ "name": "Gpt 5 1 Codex Mini",
425
+ "options": {
426
+ "reasoningEffort": "medium"
427
+ },
428
+ "reasoning": true
429
+ },
430
+ "gpt-5.2": {
431
+ "limit": {
432
+ "context": 336000,
433
+ "output": 32768
434
+ },
435
+ "name": "Gpt 5 2",
436
+ "options": {
437
+ "reasoningEffort": "medium"
438
+ },
439
+ "reasoning": true
440
+ },
441
+ "gpt-5.2-codex": {
442
+ "limit": {
443
+ "context": 336000,
444
+ "output": 32768
445
+ },
446
+ "name": "Gpt 5 2 Codex",
447
+ "options": {
448
+ "reasoningEffort": "medium"
449
+ },
450
+ "reasoning": true
451
+ },
452
+ "gpt-oss-120b-medium": {
453
+ "limit": {
454
+ "context": 107520,
455
+ "output": 16384
456
+ },
457
+ "name": "Gpt Oss 120b Medium"
458
+ }
459
+ },
460
+ "name": "ProxyPal",
461
+ "npm": "@ai-sdk/anthropic",
462
+ "options": {
463
+ "apiKey": "proxypal-local",
464
+ "baseURL": "http://127.0.0.1:8317/v1",
465
+ "includeUsage": true
466
+ }
467
+ },
468
+ "zai-coding-plan": {
469
+ "models": {
470
+ "glm-4.6": {
471
+ "limit": {
472
+ "context": 128000,
473
+ "output": 16384
474
+ },
475
+ "options": {
476
+ "temperature": 1,
477
+ "thinking": {
478
+ "type": "enabled"
479
+ }
480
+ },
481
+ "reasoning": true,
482
+ "temperature": true,
483
+ "tool_call": true
484
+ },
485
+ "glm-4.7": {
486
+ "id": "glm-4.7",
487
+ "interleaved": true,
488
+ "limit": {
489
+ "context": 200000,
490
+ "output": 128000
491
+ },
492
+ "name": "GLM-4.7",
493
+ "options": {
494
+ "temperature": 1,
495
+ "thinking": {
496
+ "type": "enabled"
497
+ }
498
+ },
499
+ "reasoning": true
500
+ }
501
+ },
502
+ "name": "Z.AI Coding Plan"
503
+ }
504
+ },
505
+ "share": "manual",
506
+ "small_model": "opencode/gpt-5-nano",
507
+ "tui": {
508
+ "diff_style": "auto",
509
+ "scroll_acceleration": {
510
+ "enabled": true
511
+ },
512
+ "scroll_speed": 3
513
+ },
514
+ "watcher": {
515
+ "ignore": [
516
+ "node_modules/**",
517
+ ".git/**",
518
+ "dist/**",
519
+ "build/**",
520
+ "*.log",
521
+ ".DS_Store"
522
+ ]
523
+ }
524
+ }