opencodekit 0.12.2 → 0.12.4

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 (33) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/AGENTS.md +40 -417
  3. package/dist/template/.opencode/agent/build.md +119 -9
  4. package/dist/template/.opencode/agent/planner.md +0 -1
  5. package/dist/template/.opencode/agent/rush.md +81 -19
  6. package/dist/template/.opencode/command/accessibility-check.md +1 -1
  7. package/dist/template/.opencode/command/commit.md +1 -1
  8. package/dist/template/.opencode/command/create.md +68 -441
  9. package/dist/template/.opencode/command/finish.md +82 -252
  10. package/dist/template/.opencode/command/fix-ci.md +52 -247
  11. package/dist/template/.opencode/command/fix-types.md +32 -292
  12. package/dist/template/.opencode/command/fix-ui.md +49 -234
  13. package/dist/template/.opencode/command/fix.md +57 -194
  14. package/dist/template/.opencode/command/handoff.md +66 -243
  15. package/dist/template/.opencode/command/implement.md +67 -231
  16. package/dist/template/.opencode/command/issue.md +42 -190
  17. package/dist/template/.opencode/command/plan.md +86 -442
  18. package/dist/template/.opencode/command/pr.md +3 -1
  19. package/dist/template/.opencode/command/research-and-implement.md +69 -370
  20. package/dist/template/.opencode/command/research.md +72 -197
  21. package/dist/template/.opencode/command/resume.md +70 -438
  22. package/dist/template/.opencode/command/status.md +11 -11
  23. package/dist/template/.opencode/command/triage.md +23 -18
  24. package/dist/template/.opencode/memory/project/commands.md +139 -7
  25. package/dist/template/.opencode/memory/project/gotchas.md +85 -0
  26. package/dist/template/.opencode/opencode.json +556 -510
  27. package/dist/template/.opencode/plugin/beads.ts +181 -16
  28. package/dist/template/.opencode/skill/beads/SKILL.md +15 -0
  29. package/dist/template/.opencode/skill/context-engineering/SKILL.md +94 -0
  30. package/dist/template/.opencode/skill/memory-system/SKILL.md +107 -0
  31. package/dist/template/.opencode/skill/session-management/SKILL.md +111 -0
  32. package/dist/template/.opencode/skill/tool-priority/SKILL.md +115 -0
  33. package/package.json +1 -1
@@ -1,512 +1,558 @@
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
- "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
- "git status *": "allow",
107
- "git diff *": "allow",
108
- "git log *": "allow",
109
- "git branch *": "allow",
110
- "npm *": "allow",
111
- "npx *": "allow",
112
- "ls *": "allow",
113
- "cat *": "allow",
114
- "git commit *": "ask",
115
- "git push *": "ask",
116
- "git reset *": "ask",
117
- "git rebase *": "ask",
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
- "options": {
250
- "thinking": {
251
- "budgetTokens": 24576,
252
- "type": "enabled"
253
- }
254
- },
255
- "reasoning": true
256
- },
257
- "gemini-3-pro-image-preview": {
258
- "limit": {
259
- "context": 880964,
260
- "output": 65536
261
- },
262
- "name": "Gemini 3 Pro Image Preview"
263
- },
264
- "gemini-3-pro-preview": {
265
- "limit": {
266
- "context": 880964,
267
- "output": 65536
268
- },
269
- "name": "Gemini 3 Pro Preview",
270
- "options": {
271
- "thinking": {
272
- "budgetTokens": 24576,
273
- "type": "enabled"
274
- }
275
- },
276
- "reasoning": true
277
- },
278
- "gemini-claude-opus-4-5-thinking": {
279
- "limit": {
280
- "context": 168000,
281
- "output": 64000
282
- },
283
- "name": "Gemini Claude Opus 4 5 Thinking",
284
- "options": {
285
- "thinking": {
286
- "budgetTokens": 32768,
287
- "type": "enabled"
288
- }
289
- },
290
- "reasoning": true
291
- },
292
- "gemini-claude-sonnet-4-5": {
293
- "limit": {
294
- "context": 168000,
295
- "output": 64000
296
- },
297
- "name": "Gemini Claude Sonnet 4 5"
298
- },
299
- "gemini-claude-sonnet-4-5-thinking": {
300
- "limit": {
301
- "context": 168000,
302
- "output": 64000
303
- },
304
- "name": "Gemini Claude Sonnet 4 5 Thinking",
305
- "options": {
306
- "thinking": {
307
- "budgetTokens": 32768,
308
- "type": "enabled"
309
- }
310
- },
311
- "reasoning": true
312
- },
313
- "glm-4.5": {
314
- "limit": {
315
- "context": 107520,
316
- "output": 16384
317
- },
318
- "name": "Glm 4 5"
319
- },
320
- "glm-4.5-air": {
321
- "limit": {
322
- "context": 107520,
323
- "output": 16384
324
- },
325
- "name": "Glm 4 5 Air"
326
- },
327
- "glm-4.6": {
328
- "limit": {
329
- "context": 107520,
330
- "output": 16384
331
- },
332
- "name": "Glm 4 6"
333
- },
334
- "glm-4.7": {
335
- "limit": {
336
- "context": 107520,
337
- "output": 16384
338
- },
339
- "name": "Glm 4 7"
340
- },
341
- "gpt-5": {
342
- "limit": {
343
- "context": 336000,
344
- "output": 32768
345
- },
346
- "name": "Gpt 5",
347
- "options": {
348
- "reasoningEffort": "medium"
349
- },
350
- "reasoning": true
351
- },
352
- "gpt-5-codex": {
353
- "limit": {
354
- "context": 336000,
355
- "output": 32768
356
- },
357
- "name": "Gpt 5 Codex",
358
- "options": {
359
- "reasoningEffort": "medium"
360
- },
361
- "reasoning": true
362
- },
363
- "gpt-5-codex-mini": {
364
- "limit": {
365
- "context": 336000,
366
- "output": 32768
367
- },
368
- "name": "Gpt 5 Codex Mini",
369
- "options": {
370
- "reasoningEffort": "medium"
371
- },
372
- "reasoning": true
373
- },
374
- "gpt-5.1": {
375
- "limit": {
376
- "context": 336000,
377
- "output": 32768
378
- },
379
- "name": "Gpt 5 1",
380
- "options": {
381
- "reasoningEffort": "medium"
382
- },
383
- "reasoning": true
384
- },
385
- "gpt-5.1-codex": {
386
- "limit": {
387
- "context": 336000,
388
- "output": 32768
389
- },
390
- "name": "Gpt 5 1 Codex",
391
- "options": {
392
- "reasoningEffort": "medium"
393
- },
394
- "reasoning": true
395
- },
396
- "gpt-5.1-codex-max": {
397
- "limit": {
398
- "context": 336000,
399
- "output": 32768
400
- },
401
- "name": "Gpt 5 1 Codex Max",
402
- "options": {
403
- "reasoningEffort": "medium"
404
- },
405
- "reasoning": true
406
- },
407
- "gpt-5.1-codex-mini": {
408
- "limit": {
409
- "context": 336000,
410
- "output": 32768
411
- },
412
- "name": "Gpt 5 1 Codex Mini",
413
- "options": {
414
- "reasoningEffort": "medium"
415
- },
416
- "reasoning": true
417
- },
418
- "gpt-5.2": {
419
- "limit": {
420
- "context": 336000,
421
- "output": 32768
422
- },
423
- "name": "Gpt 5 2",
424
- "options": {
425
- "reasoningEffort": "medium"
426
- },
427
- "reasoning": true
428
- },
429
- "gpt-5.2-codex": {
430
- "limit": {
431
- "context": 336000,
432
- "output": 32768
433
- },
434
- "name": "Gpt 5 2 Codex",
435
- "options": {
436
- "reasoningEffort": "medium"
437
- },
438
- "reasoning": true
439
- },
440
- "gpt-oss-120b-medium": {
441
- "limit": {
442
- "context": 107520,
443
- "output": 16384
444
- },
445
- "name": "Gpt Oss 120b Medium"
446
- }
447
- },
448
- "name": "ProxyPal",
449
- "npm": "@ai-sdk/anthropic",
450
- "options": {
451
- "apiKey": "proxypal-local",
452
- "baseURL": "http://127.0.0.1:8317/v1",
453
- "includeUsage": true
454
- }
455
- },
456
- "zai-coding-plan": {
457
- "models": {
458
- "glm-4.6": {
459
- "limit": {
460
- "context": 128000,
461
- "output": 16384
462
- },
463
- "options": {
464
- "temperature": 1,
465
- "thinking": {
466
- "type": "enabled"
467
- }
468
- },
469
- "reasoning": true,
470
- "temperature": true,
471
- "tool_call": true
472
- },
473
- "glm-4.7": {
474
- "id": "glm-4.7",
475
- "interleaved": true,
476
- "limit": {
477
- "context": 200000,
478
- "output": 128000
479
- },
480
- "name": "GLM-4.7",
481
- "options": {
482
- "temperature": 1,
483
- "thinking": {
484
- "type": "enabled"
485
- }
486
- },
487
- "reasoning": true
488
- }
489
- },
490
- "name": "Z.AI Coding Plan"
491
- }
492
- },
493
- "share": "manual",
494
- "small_model": "opencode/gpt-5-nano",
495
- "tui": {
496
- "diff_style": "auto",
497
- "scroll_acceleration": {
498
- "enabled": true
499
- },
500
- "scroll_speed": 3
501
- },
502
- "watcher": {
503
- "ignore": [
504
- "node_modules/**",
505
- ".git/**",
506
- "dist/**",
507
- "build/**",
508
- "*.log",
509
- ".DS_Store"
510
- ]
511
- }
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-opus-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
+ "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
+ "git status *": "allow",
153
+ "git diff *": "allow",
154
+ "git log *": "allow",
155
+ "git branch *": "allow",
156
+ "npm *": "allow",
157
+ "npx *": "allow",
158
+ "ls *": "allow",
159
+ "cat *": "allow",
160
+ "git commit *": "ask",
161
+ "git push *": "ask",
162
+ "git reset *": "ask",
163
+ "git rebase *": "ask",
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
+ "options": {
296
+ "thinking": {
297
+ "budgetTokens": 24576,
298
+ "type": "enabled"
299
+ }
300
+ },
301
+ "reasoning": true
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
+ "thinking": {
318
+ "budgetTokens": 24576,
319
+ "type": "enabled"
320
+ }
321
+ },
322
+ "reasoning": true
323
+ },
324
+ "gemini-claude-opus-4-5-thinking": {
325
+ "limit": {
326
+ "context": 168000,
327
+ "output": 64000
328
+ },
329
+ "name": "Gemini Claude Opus 4 5 Thinking",
330
+ "options": {
331
+ "thinking": {
332
+ "budgetTokens": 32768,
333
+ "type": "enabled"
334
+ }
335
+ },
336
+ "reasoning": true
337
+ },
338
+ "gemini-claude-sonnet-4-5": {
339
+ "limit": {
340
+ "context": 168000,
341
+ "output": 64000
342
+ },
343
+ "name": "Gemini Claude Sonnet 4 5"
344
+ },
345
+ "gemini-claude-sonnet-4-5-thinking": {
346
+ "limit": {
347
+ "context": 168000,
348
+ "output": 64000
349
+ },
350
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
351
+ "options": {
352
+ "thinking": {
353
+ "budgetTokens": 32768,
354
+ "type": "enabled"
355
+ }
356
+ },
357
+ "reasoning": true
358
+ },
359
+ "glm-4.5": {
360
+ "limit": {
361
+ "context": 107520,
362
+ "output": 16384
363
+ },
364
+ "name": "Glm 4 5"
365
+ },
366
+ "glm-4.5-air": {
367
+ "limit": {
368
+ "context": 107520,
369
+ "output": 16384
370
+ },
371
+ "name": "Glm 4 5 Air"
372
+ },
373
+ "glm-4.6": {
374
+ "limit": {
375
+ "context": 107520,
376
+ "output": 16384
377
+ },
378
+ "name": "Glm 4 6"
379
+ },
380
+ "glm-4.7": {
381
+ "limit": {
382
+ "context": 107520,
383
+ "output": 16384
384
+ },
385
+ "name": "Glm 4 7"
386
+ },
387
+ "gpt-5": {
388
+ "limit": {
389
+ "context": 336000,
390
+ "output": 32768
391
+ },
392
+ "name": "Gpt 5",
393
+ "options": {
394
+ "reasoningEffort": "medium"
395
+ },
396
+ "reasoning": true
397
+ },
398
+ "gpt-5-codex": {
399
+ "limit": {
400
+ "context": 336000,
401
+ "output": 32768
402
+ },
403
+ "name": "Gpt 5 Codex",
404
+ "options": {
405
+ "reasoningEffort": "medium"
406
+ },
407
+ "reasoning": true
408
+ },
409
+ "gpt-5-codex-mini": {
410
+ "limit": {
411
+ "context": 336000,
412
+ "output": 32768
413
+ },
414
+ "name": "Gpt 5 Codex Mini",
415
+ "options": {
416
+ "reasoningEffort": "medium"
417
+ },
418
+ "reasoning": true
419
+ },
420
+ "gpt-5.1": {
421
+ "limit": {
422
+ "context": 336000,
423
+ "output": 32768
424
+ },
425
+ "name": "Gpt 5 1",
426
+ "options": {
427
+ "reasoningEffort": "medium"
428
+ },
429
+ "reasoning": true
430
+ },
431
+ "gpt-5.1-codex": {
432
+ "limit": {
433
+ "context": 336000,
434
+ "output": 32768
435
+ },
436
+ "name": "Gpt 5 1 Codex",
437
+ "options": {
438
+ "reasoningEffort": "medium"
439
+ },
440
+ "reasoning": true
441
+ },
442
+ "gpt-5.1-codex-max": {
443
+ "limit": {
444
+ "context": 336000,
445
+ "output": 32768
446
+ },
447
+ "name": "Gpt 5 1 Codex Max",
448
+ "options": {
449
+ "reasoningEffort": "medium"
450
+ },
451
+ "reasoning": true
452
+ },
453
+ "gpt-5.1-codex-mini": {
454
+ "limit": {
455
+ "context": 336000,
456
+ "output": 32768
457
+ },
458
+ "name": "Gpt 5 1 Codex Mini",
459
+ "options": {
460
+ "reasoningEffort": "medium"
461
+ },
462
+ "reasoning": true
463
+ },
464
+ "gpt-5.2": {
465
+ "limit": {
466
+ "context": 336000,
467
+ "output": 32768
468
+ },
469
+ "name": "Gpt 5 2",
470
+ "options": {
471
+ "reasoningEffort": "medium"
472
+ },
473
+ "reasoning": true
474
+ },
475
+ "gpt-5.2-codex": {
476
+ "limit": {
477
+ "context": 336000,
478
+ "output": 32768
479
+ },
480
+ "name": "Gpt 5 2 Codex",
481
+ "options": {
482
+ "reasoningEffort": "medium"
483
+ },
484
+ "reasoning": true
485
+ },
486
+ "gpt-oss-120b-medium": {
487
+ "limit": {
488
+ "context": 107520,
489
+ "output": 16384
490
+ },
491
+ "name": "Gpt Oss 120b Medium"
492
+ }
493
+ },
494
+ "name": "ProxyPal",
495
+ "npm": "@ai-sdk/anthropic",
496
+ "options": {
497
+ "apiKey": "proxypal-local",
498
+ "baseURL": "http://127.0.0.1:8317/v1",
499
+ "includeUsage": true
500
+ }
501
+ },
502
+ "zai-coding-plan": {
503
+ "models": {
504
+ "glm-4.6": {
505
+ "limit": {
506
+ "context": 128000,
507
+ "output": 16384
508
+ },
509
+ "options": {
510
+ "temperature": 1,
511
+ "thinking": {
512
+ "type": "enabled"
513
+ }
514
+ },
515
+ "reasoning": true,
516
+ "temperature": true,
517
+ "tool_call": true
518
+ },
519
+ "glm-4.7": {
520
+ "id": "glm-4.7",
521
+ "interleaved": true,
522
+ "limit": {
523
+ "context": 200000,
524
+ "output": 128000
525
+ },
526
+ "name": "GLM-4.7",
527
+ "options": {
528
+ "temperature": 1,
529
+ "thinking": {
530
+ "type": "enabled"
531
+ }
532
+ },
533
+ "reasoning": true
534
+ }
535
+ },
536
+ "name": "Z.AI Coding Plan"
537
+ }
538
+ },
539
+ "share": "manual",
540
+ "small_model": "opencode/gpt-5-nano",
541
+ "tui": {
542
+ "diff_style": "auto",
543
+ "scroll_acceleration": {
544
+ "enabled": true
545
+ },
546
+ "scroll_speed": 3
547
+ },
548
+ "watcher": {
549
+ "ignore": [
550
+ "node_modules/**",
551
+ ".git/**",
552
+ "dist/**",
553
+ "build/**",
554
+ "*.log",
555
+ ".DS_Store"
556
+ ]
557
+ }
512
558
  }