opencodekit 0.12.5 → 0.12.7

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