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