opencodekit 0.11.0 → 0.12.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 (45) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/AGENTS.md +2 -2
  3. package/dist/template/.opencode/agent/build.md +20 -20
  4. package/dist/template/.opencode/agent/explore.md +13 -13
  5. package/dist/template/.opencode/agent/planner.md +20 -20
  6. package/dist/template/.opencode/agent/review.md +18 -18
  7. package/dist/template/.opencode/agent/rush.md +20 -20
  8. package/dist/template/.opencode/agent/scout.md +16 -16
  9. package/dist/template/.opencode/agent/vision.md +19 -19
  10. package/dist/template/.opencode/command/accessibility-check.md +6 -2
  11. package/dist/template/.opencode/command/analyze-mockup.md +6 -0
  12. package/dist/template/.opencode/command/analyze-project.md +6 -0
  13. package/dist/template/.opencode/command/brainstorm.md +6 -0
  14. package/dist/template/.opencode/command/commit.md +6 -1
  15. package/dist/template/.opencode/command/create.md +369 -134
  16. package/dist/template/.opencode/command/design-audit.md +6 -0
  17. package/dist/template/.opencode/command/design.md +6 -0
  18. package/dist/template/.opencode/command/finish.md +1 -0
  19. package/dist/template/.opencode/command/fix-ci.md +1 -0
  20. package/dist/template/.opencode/command/fix-types.md +6 -0
  21. package/dist/template/.opencode/command/fix-ui.md +6 -0
  22. package/dist/template/.opencode/command/fix.md +6 -0
  23. package/dist/template/.opencode/command/handoff.md +6 -1
  24. package/dist/template/.opencode/command/implement.md +1 -0
  25. package/dist/template/.opencode/command/import-plan.md +7 -2
  26. package/dist/template/.opencode/command/integration-test.md +5 -0
  27. package/dist/template/.opencode/command/issue.md +11 -2
  28. package/dist/template/.opencode/command/new-feature.md +8 -0
  29. package/dist/template/.opencode/command/plan.md +282 -21
  30. package/dist/template/.opencode/command/pr.md +6 -1
  31. package/dist/template/.opencode/command/research-and-implement.md +6 -0
  32. package/dist/template/.opencode/command/research.md +6 -0
  33. package/dist/template/.opencode/command/resume.md +8 -0
  34. package/dist/template/.opencode/command/revert-feature.md +7 -2
  35. package/dist/template/.opencode/command/review-codebase.md +6 -0
  36. package/dist/template/.opencode/command/status.md +6 -0
  37. package/dist/template/.opencode/command/triage.md +17 -12
  38. package/dist/template/.opencode/command/ui-review.md +4 -0
  39. package/dist/template/.opencode/opencode.json +479 -514
  40. package/dist/template/.opencode/package.json +1 -1
  41. package/dist/template/.opencode/plugin/beads.ts +857 -270
  42. package/dist/template/.opencode/skill/beads/SKILL.md +110 -17
  43. package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +3 -3
  44. package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +1 -1
  45. package/package.json +1 -1
@@ -1,516 +1,481 @@
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": "proxypal/gemini-3-flash-preview"
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
- },
262
- "gemini-3-pro-image-preview": {
263
- "limit": {
264
- "context": 880964,
265
- "output": 65536
266
- },
267
- "name": "Gemini 3 Pro Image Preview"
268
- },
269
- "gemini-3-pro-preview": {
270
- "limit": {
271
- "context": 880964,
272
- "output": 65536
273
- },
274
- "name": "Gemini 3 Pro Preview"
275
- },
276
- "gemini-claude-opus-4-5-thinking": {
277
- "limit": {
278
- "context": 168000,
279
- "output": 64000
280
- },
281
- "name": "Gemini Claude Opus 4 5 Thinking",
282
- "options": {
283
- "thinking": {
284
- "budgetTokens": 32768,
285
- "type": "enabled"
286
- }
287
- },
288
- "reasoning": true
289
- },
290
- "gemini-claude-sonnet-4-5": {
291
- "limit": {
292
- "context": 168000,
293
- "output": 64000
294
- },
295
- "name": "Gemini Claude Sonnet 4 5"
296
- },
297
- "gemini-claude-sonnet-4-5-thinking": {
298
- "limit": {
299
- "context": 168000,
300
- "output": 64000
301
- },
302
- "name": "Gemini Claude Sonnet 4 5 Thinking",
303
- "options": {
304
- "thinking": {
305
- "budgetTokens": 32768,
306
- "type": "enabled"
307
- }
308
- },
309
- "reasoning": true
310
- },
311
- "glm-4.5": {
312
- "limit": {
313
- "context": 107520,
314
- "output": 16384
315
- },
316
- "name": "Glm 4 5"
317
- },
318
- "glm-4.5-air": {
319
- "limit": {
320
- "context": 107520,
321
- "output": 16384
322
- },
323
- "name": "Glm 4 5 Air"
324
- },
325
- "glm-4.6": {
326
- "limit": {
327
- "context": 107520,
328
- "output": 16384
329
- },
330
- "name": "Glm 4 6"
331
- },
332
- "glm-4.7": {
333
- "limit": {
334
- "context": 107520,
335
- "output": 16384
336
- },
337
- "name": "Glm 4 7"
338
- },
339
- "gpt-5": {
340
- "limit": {
341
- "context": 336000,
342
- "output": 32768
343
- },
344
- "name": "Gpt 5",
345
- "options": {
346
- "reasoningEffort": "medium"
347
- },
348
- "reasoning": true
349
- },
350
- "gpt-5-codex": {
351
- "limit": {
352
- "context": 336000,
353
- "output": 32768
354
- },
355
- "name": "Gpt 5 Codex",
356
- "options": {
357
- "reasoningEffort": "medium"
358
- },
359
- "reasoning": true
360
- },
361
- "gpt-5-codex-mini": {
362
- "limit": {
363
- "context": 336000,
364
- "output": 32768
365
- },
366
- "name": "Gpt 5 Codex Mini",
367
- "options": {
368
- "reasoningEffort": "medium"
369
- },
370
- "reasoning": true
371
- },
372
- "gpt-5.1": {
373
- "limit": {
374
- "context": 336000,
375
- "output": 32768
376
- },
377
- "name": "Gpt 5 1",
378
- "options": {
379
- "reasoningEffort": "medium"
380
- },
381
- "reasoning": true
382
- },
383
- "gpt-5.1-codex": {
384
- "limit": {
385
- "context": 336000,
386
- "output": 32768
387
- },
388
- "name": "Gpt 5 1 Codex",
389
- "options": {
390
- "reasoningEffort": "medium"
391
- },
392
- "reasoning": true
393
- },
394
- "gpt-5.1-codex-max": {
395
- "limit": {
396
- "context": 336000,
397
- "output": 32768
398
- },
399
- "name": "Gpt 5 1 Codex Max",
400
- "options": {
401
- "reasoningEffort": "medium"
402
- },
403
- "reasoning": true
404
- },
405
- "gpt-5.1-codex-mini": {
406
- "limit": {
407
- "context": 336000,
408
- "output": 32768
409
- },
410
- "name": "Gpt 5 1 Codex Mini",
411
- "options": {
412
- "reasoningEffort": "medium"
413
- },
414
- "reasoning": true
415
- },
416
- "gpt-5.2": {
417
- "limit": {
418
- "context": 336000,
419
- "output": 32768
420
- },
421
- "name": "Gpt 5 2",
422
- "options": {
423
- "reasoningEffort": "medium"
424
- },
425
- "reasoning": true
426
- },
427
- "gpt-5.2-codex": {
428
- "limit": {
429
- "context": 336000,
430
- "output": 32768
431
- },
432
- "name": "Gpt 5 2 Codex",
433
- "options": {
434
- "reasoningEffort": "medium"
435
- },
436
- "reasoning": true
437
- },
438
- "gpt-oss-120b-medium": {
439
- "limit": {
440
- "context": 107520,
441
- "output": 16384
442
- },
443
- "name": "Gpt Oss 120b Medium"
444
- }
445
- },
446
- "name": "ProxyPal",
447
- "npm": "@ai-sdk/anthropic",
448
- "options": {
449
- "apiKey": "proxypal-local",
450
- "baseURL": "http://127.0.0.1:8317/v1",
451
- "includeUsage": true
452
- }
453
- },
454
- "zai-coding-plan": {
455
- "models": {
456
- "glm-4.6": {
457
- "limit": {
458
- "context": 128000,
459
- "output": 16384
460
- },
461
- "options": {
462
- "temperature": 1,
463
- "thinking": {
464
- "type": "enabled"
465
- }
466
- },
467
- "reasoning": true,
468
- "temperature": true,
469
- "tool_call": true
470
- },
471
- "glm-4.7": {
472
- "id": "glm-4.7",
473
- "interleaved": true,
474
- "limit": {
475
- "context": 200000,
476
- "output": 128000
477
- },
478
- "name": "GLM-4.7",
479
- "options": {
480
- "temperature": 1,
481
- "thinking": {
482
- "type": "enabled"
483
- }
484
- },
485
- "reasoning": true
486
- }
487
- },
488
- "name": "Z.AI Coding Plan"
489
- }
490
- },
491
- "share": "manual",
492
- "small_model": "opencode/gpt-5-nano",
493
- "theme": "system",
494
- "tools": {
495
- "beads-village*": false,
496
- "context7*": true,
497
- "gh_grep*": true
498
- },
499
- "tui": {
500
- "diff_style": "auto",
501
- "scroll_acceleration": {
502
- "enabled": true
503
- },
504
- "scroll_speed": 3
505
- },
506
- "watcher": {
507
- "ignore": [
508
- "node_modules/**",
509
- ".git/**",
510
- "dist/**",
511
- "build/**",
512
- "*.log",
513
- ".DS_Store"
514
- ]
515
- }
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
+ }
516
481
  }