opencodekit 0.15.13 → 0.15.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,698 +1,699 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "opencode/big-pickle"
7
- },
8
- "compaction": {
9
- "description": "Session summarizer for context continuity across compactions"
10
- },
11
- "explore": {
12
- "description": "Fast codebase search specialist",
13
- "model": "opencode/big-pickle"
14
- },
15
- "general": {
16
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
- "model": "opencode/big-pickle"
18
- },
19
- "looker": {
20
- "description": "Media extraction specialist for images, PDFs, diagrams",
21
- "model": "opencode/gpt-5-nano"
22
- },
23
- "plan": {
24
- "description": "Primary planning agent for architecture and multi-phase execution",
25
- "model": "opencode/big-pickle"
26
- },
27
- "review": {
28
- "description": "Code review, debugging, and security audit specialist",
29
- "model": "opencode/big-pickle"
30
- },
31
- "scout": {
32
- "description": "External research specialist for library docs and patterns",
33
- "model": "opencode/big-pickle"
34
- },
35
- "vision": {
36
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
- "model": "opencode/gpt-5-nano"
38
- },
39
- "painter": {
40
- "description": "Image generation and editing specialist using Gemini 3 Pro Image. Use for creating UI mockups, app icons, hero images, visual assets, and editing/redacting existing images",
41
- "model": "opencode/gpt-5-nano"
42
- }
43
- },
44
- "autoupdate": false,
45
- "compaction": {
46
- "auto": true,
47
- "prune": true
48
- },
49
- "experimental": {},
50
- "formatter": {
51
- "biome": {
52
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
53
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
54
- },
55
- "cargo-fmt": {
56
- "command": ["cargo", "fmt", "--", "$FILE"],
57
- "extensions": [".rs"]
58
- },
59
- "java-formatter": {
60
- "command": ["google-java-format", "--replace", "$FILE"],
61
- "environment": {
62
- "JAVA_HOME": "{env:JAVA_HOME}"
63
- },
64
- "extensions": [".java"]
65
- },
66
- "oxfmt": {
67
- "command": ["npx", "oxfmt", "--write", "$FILE"],
68
- "extensions": [
69
- ".js",
70
- ".jsx",
71
- ".ts",
72
- ".tsx",
73
- ".json",
74
- ".jsonc",
75
- ".html",
76
- ".css",
77
- ".scss",
78
- ".sass",
79
- ".md",
80
- ".mdx",
81
- ".yaml",
82
- ".yml"
83
- ]
84
- },
85
- "laravel-pint": {
86
- "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
87
- "extensions": [".php"]
88
- }
89
- },
90
- "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
91
- "keybinds": {
92
- "command_list": ";",
93
- "leader": "`",
94
- "session_child_cycle": "ctrl+alt+right",
95
- "session_child_cycle_reverse": "ctrl+alt+left",
96
- "session_compact": "ctrl+k"
97
- },
98
- "mcp": {
99
- "stitch": {
100
- "enabled": false,
101
- "type": "remote",
102
- "url": "https://stitch.googleapis.com/mcp",
103
- "oauth": false,
104
- "headers": {
105
- "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
106
- "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
107
- }
108
- }
109
- },
110
- "model": "opencode/big-pickle",
111
- "permission": {
112
- "bash": {
113
- "*": "allow",
114
- "cat *": "allow",
115
- "git branch *": "allow",
116
- "git commit *": "ask",
117
- "git diff *": "allow",
118
- "git log *": "allow",
119
- "git push *": "ask",
120
- "git rebase *": "ask",
121
- "git reset *": "ask",
122
- "git status *": "allow",
123
- "ls *": "allow",
124
- "npm *": "allow",
125
- "npx *": "allow",
126
- "rm *": "deny",
127
- "rm -rf *": "deny",
128
- "sudo *": "deny"
129
- },
130
- "doom_loop": "ask",
131
- "edit": "allow",
132
- "external_directory": "ask",
133
- "question": "allow",
134
- "read": {
135
- "*": "allow",
136
- "*.env": "deny",
137
- "*.env.*": "deny",
138
- "*.env.example": "allow"
139
- }
140
- },
141
- "plugin": [
142
- "@tarquinen/opencode-dcp@latest",
143
- "@franlol/opencode-md-table-formatter@0.0.3"
144
- ],
145
- "tools": {
146
- "grep-search": true,
147
- "context7-resolve-library-id": true,
148
- "context7-query-docs": true
149
- },
150
- "provider": {
151
- "github-copilot": {
152
- "models": {
153
- "claude-opus-4.5": {
154
- "attachment": true,
155
- "reasoning": true,
156
- "temperature": true,
157
- "tool_call": true,
158
- "variants": {
159
- "high": {
160
- "options": {
161
- "thinking": {
162
- "budgetTokens": 32000,
163
- "type": "enabled"
164
- }
165
- }
166
- },
167
- "medium": {
168
- "options": {
169
- "thinking": {
170
- "budgetTokens": 16000,
171
- "type": "enabled"
172
- }
173
- }
174
- }
175
- }
176
- },
177
- "claude-sonnet-4.5": {
178
- "attachment": true,
179
- "reasoning": true,
180
- "temperature": true,
181
- "tool_call": true,
182
- "variants": {
183
- "high": {
184
- "options": {
185
- "thinking": {
186
- "budgetTokens": 16000,
187
- "type": "enabled"
188
- }
189
- }
190
- },
191
- "medium": {
192
- "options": {
193
- "thinking": {
194
- "budgetTokens": 8000,
195
- "type": "enabled"
196
- }
197
- }
198
- }
199
- }
200
- },
201
- "claude-haiku-4.5": {
202
- "attachment": true,
203
- "reasoning": true,
204
- "temperature": true,
205
- "tool_call": true,
206
- "variants": {
207
- "high": {
208
- "options": {
209
- "thinking": {
210
- "budgetTokens": 32000,
211
- "type": "enabled"
212
- }
213
- }
214
- },
215
- "medium": {
216
- "options": {
217
- "thinking": {
218
- "budgetTokens": 16000,
219
- "type": "enabled"
220
- }
221
- }
222
- }
223
- }
224
- },
225
- "gpt-5-mini": {
226
- "attachment": true,
227
- "reasoning": true,
228
- "temperature": true,
229
- "tool_call": true,
230
- "variants": {
231
- "high": {
232
- "options": {
233
- "reasoning": {
234
- "effort": "high"
235
- }
236
- }
237
- },
238
- "medium": {
239
- "options": {
240
- "reasoning": {
241
- "effort": "medium"
242
- }
243
- }
244
- },
245
- "low": {
246
- "options": {
247
- "reasoning": {
248
- "effort": "low"
249
- }
250
- }
251
- }
252
- }
253
- },
254
- "gpt-5.2-codex": {
255
- "attachment": true,
256
- "reasoning": true,
257
- "temperature": true,
258
- "tool_call": true,
259
- "variants": {
260
- "high": {
261
- "options": {
262
- "reasoning": {
263
- "effort": "high"
264
- }
265
- }
266
- },
267
- "medium": {
268
- "options": {
269
- "reasoning": {
270
- "effort": "medium"
271
- }
272
- }
273
- },
274
- "low": {
275
- "options": {
276
- "reasoning": {
277
- "effort": "low"
278
- }
279
- }
280
- }
281
- }
282
- }
283
- }
284
- },
285
- "openai": {
286
- "models": {
287
- "gpt-5.2": {
288
- "variants": {
289
- "fast": {
290
- "disabled": true
291
- },
292
- "high": {
293
- "include": ["reasoning.encrypted_content"],
294
- "reasoningEffort": "high",
295
- "reasoningSummary": "auto",
296
- "textVerbosity": "low"
297
- },
298
- "medium": {
299
- "include": ["reasoning.encrypted_content"],
300
- "reasoningEffort": "medium",
301
- "reasoningSummary": "auto",
302
- "textVerbosity": "low"
303
- }
304
- }
305
- },
306
- "gpt-5.2-codex": {
307
- "variants": {
308
- "fast": {
309
- "disabled": true
310
- },
311
- "high": {
312
- "include": ["reasoning.encrypted_content"],
313
- "reasoningEffort": "high",
314
- "reasoningSummary": "auto",
315
- "textVerbosity": "low"
316
- },
317
- "medium": {
318
- "include": ["reasoning.encrypted_content"],
319
- "reasoningEffort": "medium",
320
- "reasoningSummary": "auto",
321
- "textVerbosity": "low"
322
- }
323
- }
324
- }
325
- }
326
- },
327
- "opencode": {
328
- "models": {
329
- "big-pickle": {
330
- "options": {
331
- "reasoningEffort": "high",
332
- "temperature": 1,
333
- "top_k": 40,
334
- "top_p": 0.95
335
- },
336
- "reasoning": true
337
- }
338
- }
339
- },
340
- "proxypal": {
341
- "models": {
342
- "gemini-2.5-computer-use-preview-10-2025": {
343
- "limit": {
344
- "context": 880964,
345
- "output": 65536
346
- },
347
- "name": "Gemini 2 5 Computer Use Preview 10 2025",
348
- "modalities": {
349
- "input": ["text", "image", "pdf"],
350
- "output": ["text"]
351
- }
352
- },
353
- "gemini-2.5-flash": {
354
- "limit": {
355
- "context": 880964,
356
- "output": 65536
357
- },
358
- "name": "Gemini 2 5 Flash",
359
- "modalities": {
360
- "input": ["text", "image", "pdf"],
361
- "output": ["text"]
362
- }
363
- },
364
- "gemini-2.5-flash-lite": {
365
- "limit": {
366
- "context": 880964,
367
- "output": 65536
368
- },
369
- "name": "Gemini 2 5 Flash Lite",
370
- "modalities": {
371
- "input": ["text", "image", "pdf"],
372
- "output": ["text"]
373
- }
374
- },
375
- "gemini-2.5-pro": {
376
- "limit": {
377
- "context": 880964,
378
- "output": 65536
379
- },
380
- "name": "Gemini 2 5 Pro",
381
- "modalities": {
382
- "input": ["text", "image", "pdf"],
383
- "output": ["text"]
384
- }
385
- },
386
- "gemini-3-flash-preview": {
387
- "limit": {
388
- "context": 880964,
389
- "output": 65536
390
- },
391
- "name": "Gemini 3 Flash Preview",
392
- "modalities": {
393
- "input": ["text", "image", "pdf"],
394
- "output": ["text"]
395
- },
396
- "variants": {
397
- "low": {
398
- "thinkingLevel": "low"
399
- },
400
- "medium": {
401
- "thinkingLevel": "medium"
402
- },
403
- "high": {
404
- "thinkingLevel": "high"
405
- }
406
- },
407
- "reasoning": true
408
- },
409
- "gemini-3-pro-image-preview": {
410
- "limit": {
411
- "context": 880964,
412
- "output": 65536
413
- },
414
- "name": "Gemini 3 Pro Image Preview",
415
- "modalities": {
416
- "input": ["text", "image", "pdf"],
417
- "output": ["text"]
418
- }
419
- },
420
- "gemini-3-pro-preview": {
421
- "limit": {
422
- "context": 880964,
423
- "output": 65536
424
- },
425
- "name": "Gemini 3 Pro Preview",
426
- "modalities": {
427
- "input": ["text", "image", "pdf"],
428
- "output": ["text"]
429
- },
430
- "variants": {
431
- "low": {
432
- "thinkingLevel": "low"
433
- },
434
- "high": {
435
- "thinkingLevel": "high"
436
- }
437
- },
438
- "reasoning": true
439
- },
440
- "gemini-claude-opus-4-5-thinking": {
441
- "limit": {
442
- "context": 168000,
443
- "output": 64000
444
- },
445
- "modalities": {
446
- "input": ["text", "image", "pdf"],
447
- "output": ["text"]
448
- },
449
- "name": "Gemini Claude Opus 4 5 Thinking",
450
- "variants": {
451
- "low": {
452
- "thinkingConfig": {
453
- "thinkingBudget": 8192
454
- }
455
- },
456
- "max": {
457
- "thinkingConfig": {
458
- "thinkingBudget": 32768
459
- }
460
- }
461
- },
462
- "reasoning": true
463
- },
464
- "gemini-claude-sonnet-4-5": {
465
- "limit": {
466
- "context": 168000,
467
- "output": 64000
468
- },
469
- "modalities": {
470
- "input": ["text", "image", "pdf"],
471
- "output": ["text"]
472
- },
473
- "name": "Gemini Claude Sonnet 4 5"
474
- },
475
- "gemini-claude-sonnet-4-5-thinking": {
476
- "limit": {
477
- "context": 168000,
478
- "output": 64000
479
- },
480
- "modalities": {
481
- "input": ["text", "image", "pdf"],
482
- "output": ["text"]
483
- },
484
- "name": "Gemini Claude Sonnet 4 5 Thinking",
485
- "variants": {
486
- "low": {
487
- "thinkingConfig": {
488
- "thinkingBudget": 8192
489
- }
490
- },
491
- "max": {
492
- "thinkingConfig": {
493
- "thinkingBudget": 32768
494
- }
495
- }
496
- },
497
- "reasoning": true
498
- },
499
- "glm-4.5": {
500
- "limit": {
501
- "context": 107520,
502
- "output": 16384
503
- },
504
- "name": "Glm 4 5"
505
- },
506
- "glm-4.5-air": {
507
- "limit": {
508
- "context": 107520,
509
- "output": 16384
510
- },
511
- "name": "Glm 4 5 Air"
512
- },
513
- "glm-4.6": {
514
- "limit": {
515
- "context": 107520,
516
- "output": 16384
517
- },
518
- "name": "Glm 4 6"
519
- },
520
- "glm-4.7": {
521
- "limit": {
522
- "context": 107520,
523
- "output": 16384
524
- },
525
- "name": "Glm 4 7"
526
- },
527
- "gpt-5": {
528
- "limit": {
529
- "context": 336000,
530
- "output": 32768
531
- },
532
- "name": "Gpt 5",
533
- "options": {
534
- "reasoningEffort": "medium"
535
- },
536
- "reasoning": true
537
- },
538
- "gpt-5-codex": {
539
- "limit": {
540
- "context": 336000,
541
- "output": 32768
542
- },
543
- "name": "Gpt 5 Codex",
544
- "options": {
545
- "reasoningEffort": "medium"
546
- },
547
- "reasoning": true
548
- },
549
- "gpt-5-codex-mini": {
550
- "limit": {
551
- "context": 336000,
552
- "output": 32768
553
- },
554
- "name": "Gpt 5 Codex Mini",
555
- "options": {
556
- "reasoningEffort": "medium"
557
- },
558
- "reasoning": true
559
- },
560
- "gpt-5.1": {
561
- "limit": {
562
- "context": 336000,
563
- "output": 32768
564
- },
565
- "name": "Gpt 5 1",
566
- "options": {
567
- "reasoningEffort": "medium"
568
- },
569
- "reasoning": true
570
- },
571
- "gpt-5.1-codex": {
572
- "limit": {
573
- "context": 336000,
574
- "output": 32768
575
- },
576
- "name": "Gpt 5 1 Codex",
577
- "options": {
578
- "reasoningEffort": "medium"
579
- },
580
- "reasoning": true
581
- },
582
- "gpt-5.1-codex-max": {
583
- "limit": {
584
- "context": 336000,
585
- "output": 32768
586
- },
587
- "name": "Gpt 5 1 Codex Max",
588
- "options": {
589
- "reasoningEffort": "medium"
590
- },
591
- "reasoning": true
592
- },
593
- "gpt-5.1-codex-mini": {
594
- "limit": {
595
- "context": 336000,
596
- "output": 32768
597
- },
598
- "name": "Gpt 5 1 Codex Mini",
599
- "options": {
600
- "reasoningEffort": "medium"
601
- },
602
- "reasoning": true
603
- },
604
- "gpt-5.2": {
605
- "limit": {
606
- "context": 336000,
607
- "output": 32768
608
- },
609
- "name": "Gpt 5 2",
610
- "options": {
611
- "reasoningEffort": "medium"
612
- },
613
- "reasoning": true
614
- },
615
- "gpt-5.2-codex": {
616
- "limit": {
617
- "context": 336000,
618
- "output": 32768
619
- },
620
- "name": "Gpt 5 2 Codex",
621
- "options": {
622
- "reasoningEffort": "medium"
623
- },
624
- "reasoning": true
625
- },
626
- "gpt-oss-120b-medium": {
627
- "limit": {
628
- "context": 107520,
629
- "output": 16384
630
- },
631
- "name": "Gpt Oss 120b Medium"
632
- }
633
- },
634
- "name": "ProxyPal",
635
- "npm": "@ai-sdk/anthropic",
636
- "options": {
637
- "apiKey": "proxypal-local",
638
- "baseURL": "http://127.0.0.1:8317/v1",
639
- "includeUsage": true
640
- }
641
- },
642
- "zai-coding-plan": {
643
- "models": {
644
- "glm-4.6": {
645
- "limit": {
646
- "context": 128000,
647
- "output": 16384
648
- },
649
- "options": {
650
- "temperature": 1,
651
- "thinking": {
652
- "type": "enabled"
653
- }
654
- },
655
- "reasoning": true,
656
- "temperature": true,
657
- "tool_call": true
658
- },
659
- "glm-4.7": {
660
- "id": "glm-4.7",
661
- "interleaved": true,
662
- "limit": {
663
- "context": 200000,
664
- "output": 128000
665
- },
666
- "name": "GLM-4.7",
667
- "options": {
668
- "temperature": 1,
669
- "thinking": {
670
- "type": "enabled"
671
- }
672
- },
673
- "reasoning": true
674
- }
675
- },
676
- "name": "Z.AI Coding Plan"
677
- }
678
- },
679
- "share": "manual",
680
- "small_model": "opencode/gpt-5-nano",
681
- "tui": {
682
- "diff_style": "auto",
683
- "scroll_acceleration": {
684
- "enabled": true
685
- },
686
- "scroll_speed": 3
687
- },
688
- "watcher": {
689
- "ignore": [
690
- "node_modules/**",
691
- ".git/**",
692
- "dist/**",
693
- "build/**",
694
- "*.log",
695
- ".DS_Store"
696
- ]
697
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "opencode/big-pickle"
7
+ },
8
+ "compaction": {
9
+ "description": "Session summarizer for context continuity across compactions"
10
+ },
11
+ "explore": {
12
+ "description": "Fast codebase search specialist",
13
+ "model": "opencode/big-pickle"
14
+ },
15
+ "general": {
16
+ "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
+ "model": "opencode/big-pickle"
18
+ },
19
+ "looker": {
20
+ "description": "Media extraction specialist for images, PDFs, diagrams",
21
+ "model": "opencode/gpt-5-nano"
22
+ },
23
+ "plan": {
24
+ "description": "Primary planning agent for architecture and multi-phase execution",
25
+ "model": "opencode/big-pickle"
26
+ },
27
+ "review": {
28
+ "description": "Code review, debugging, and security audit specialist",
29
+ "model": "opencode/big-pickle"
30
+ },
31
+ "scout": {
32
+ "description": "External research specialist for library docs and patterns",
33
+ "model": "opencode/big-pickle"
34
+ },
35
+ "vision": {
36
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
+ "model": "opencode/gpt-5-nano"
38
+ },
39
+ "painter": {
40
+ "description": "Image generation and editing specialist using Gemini 3 Pro Image. Use for creating UI mockups, app icons, hero images, visual assets, and editing/redacting existing images",
41
+ "model": "opencode/gpt-5-nano"
42
+ }
43
+ },
44
+ "autoupdate": false,
45
+ "compaction": {
46
+ "auto": true,
47
+ "prune": true
48
+ },
49
+ "experimental": {},
50
+ "formatter": {
51
+ "biome": {
52
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
53
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
54
+ },
55
+ "cargo-fmt": {
56
+ "command": ["cargo", "fmt", "--", "$FILE"],
57
+ "extensions": [".rs"]
58
+ },
59
+ "java-formatter": {
60
+ "command": ["google-java-format", "--replace", "$FILE"],
61
+ "environment": {
62
+ "JAVA_HOME": "{env:JAVA_HOME}"
63
+ },
64
+ "extensions": [".java"]
65
+ },
66
+ "oxfmt": {
67
+ "command": ["npx", "oxfmt", "--write", "$FILE"],
68
+ "extensions": [
69
+ ".js",
70
+ ".jsx",
71
+ ".ts",
72
+ ".tsx",
73
+ ".json",
74
+ ".jsonc",
75
+ ".html",
76
+ ".css",
77
+ ".scss",
78
+ ".sass",
79
+ ".md",
80
+ ".mdx",
81
+ ".yaml",
82
+ ".yml"
83
+ ]
84
+ },
85
+ "laravel-pint": {
86
+ "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
87
+ "extensions": [".php"]
88
+ }
89
+ },
90
+ "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
91
+ "keybinds": {
92
+ "command_list": ";",
93
+ "leader": "`",
94
+ "session_child_cycle": "ctrl+alt+right",
95
+ "session_child_cycle_reverse": "ctrl+alt+left",
96
+ "session_compact": "ctrl+k"
97
+ },
98
+ "mcp": {
99
+ "stitch": {
100
+ "enabled": false,
101
+ "type": "remote",
102
+ "url": "https://stitch.googleapis.com/mcp",
103
+ "oauth": false,
104
+ "headers": {
105
+ "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
106
+ "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
107
+ }
108
+ }
109
+ },
110
+ "model": "opencode/big-pickle",
111
+ "permission": {
112
+ "bash": {
113
+ "*": "allow",
114
+ "cat *": "allow",
115
+ "git branch *": "allow",
116
+ "git commit *": "ask",
117
+ "git diff *": "allow",
118
+ "git log *": "allow",
119
+ "git push *": "ask",
120
+ "git rebase *": "ask",
121
+ "git reset *": "ask",
122
+ "git status *": "allow",
123
+ "ls *": "allow",
124
+ "npm *": "allow",
125
+ "npx *": "allow",
126
+ "rm *": "deny",
127
+ "rm -rf *": "deny",
128
+ "sudo *": "deny"
129
+ },
130
+ "doom_loop": "ask",
131
+ "edit": "allow",
132
+ "external_directory": "ask",
133
+ "question": "allow",
134
+ "read": {
135
+ "*": "allow",
136
+ "*.env": "deny",
137
+ "*.env.*": "deny",
138
+ "*.env.example": "allow"
139
+ }
140
+ },
141
+ "plugin": [
142
+ "@tarquinen/opencode-dcp@latest",
143
+ "@franlol/opencode-md-table-formatter@0.0.3"
144
+ ],
145
+ "tools": {
146
+ "grep-search": true,
147
+ "context7-resolve-library-id": true,
148
+ "context7-query-docs": true,
149
+ "oracle": true
150
+ },
151
+ "provider": {
152
+ "github-copilot": {
153
+ "models": {
154
+ "claude-opus-4.5": {
155
+ "attachment": true,
156
+ "reasoning": true,
157
+ "temperature": true,
158
+ "tool_call": true,
159
+ "variants": {
160
+ "high": {
161
+ "options": {
162
+ "thinking": {
163
+ "budgetTokens": 32000,
164
+ "type": "enabled"
165
+ }
166
+ }
167
+ },
168
+ "medium": {
169
+ "options": {
170
+ "thinking": {
171
+ "budgetTokens": 16000,
172
+ "type": "enabled"
173
+ }
174
+ }
175
+ }
176
+ }
177
+ },
178
+ "claude-sonnet-4.5": {
179
+ "attachment": true,
180
+ "reasoning": true,
181
+ "temperature": true,
182
+ "tool_call": true,
183
+ "variants": {
184
+ "high": {
185
+ "options": {
186
+ "thinking": {
187
+ "budgetTokens": 16000,
188
+ "type": "enabled"
189
+ }
190
+ }
191
+ },
192
+ "medium": {
193
+ "options": {
194
+ "thinking": {
195
+ "budgetTokens": 8000,
196
+ "type": "enabled"
197
+ }
198
+ }
199
+ }
200
+ }
201
+ },
202
+ "claude-haiku-4.5": {
203
+ "attachment": true,
204
+ "reasoning": true,
205
+ "temperature": true,
206
+ "tool_call": true,
207
+ "variants": {
208
+ "high": {
209
+ "options": {
210
+ "thinking": {
211
+ "budgetTokens": 32000,
212
+ "type": "enabled"
213
+ }
214
+ }
215
+ },
216
+ "medium": {
217
+ "options": {
218
+ "thinking": {
219
+ "budgetTokens": 16000,
220
+ "type": "enabled"
221
+ }
222
+ }
223
+ }
224
+ }
225
+ },
226
+ "gpt-5-mini": {
227
+ "attachment": true,
228
+ "reasoning": true,
229
+ "temperature": true,
230
+ "tool_call": true,
231
+ "variants": {
232
+ "high": {
233
+ "options": {
234
+ "reasoning": {
235
+ "effort": "high"
236
+ }
237
+ }
238
+ },
239
+ "medium": {
240
+ "options": {
241
+ "reasoning": {
242
+ "effort": "medium"
243
+ }
244
+ }
245
+ },
246
+ "low": {
247
+ "options": {
248
+ "reasoning": {
249
+ "effort": "low"
250
+ }
251
+ }
252
+ }
253
+ }
254
+ },
255
+ "gpt-5.2-codex": {
256
+ "attachment": true,
257
+ "reasoning": true,
258
+ "temperature": true,
259
+ "tool_call": true,
260
+ "variants": {
261
+ "high": {
262
+ "options": {
263
+ "reasoning": {
264
+ "effort": "high"
265
+ }
266
+ }
267
+ },
268
+ "medium": {
269
+ "options": {
270
+ "reasoning": {
271
+ "effort": "medium"
272
+ }
273
+ }
274
+ },
275
+ "low": {
276
+ "options": {
277
+ "reasoning": {
278
+ "effort": "low"
279
+ }
280
+ }
281
+ }
282
+ }
283
+ }
284
+ }
285
+ },
286
+ "openai": {
287
+ "models": {
288
+ "gpt-5.2": {
289
+ "variants": {
290
+ "fast": {
291
+ "disabled": true
292
+ },
293
+ "high": {
294
+ "include": ["reasoning.encrypted_content"],
295
+ "reasoningEffort": "high",
296
+ "reasoningSummary": "auto",
297
+ "textVerbosity": "low"
298
+ },
299
+ "medium": {
300
+ "include": ["reasoning.encrypted_content"],
301
+ "reasoningEffort": "medium",
302
+ "reasoningSummary": "auto",
303
+ "textVerbosity": "low"
304
+ }
305
+ }
306
+ },
307
+ "gpt-5.2-codex": {
308
+ "variants": {
309
+ "fast": {
310
+ "disabled": true
311
+ },
312
+ "high": {
313
+ "include": ["reasoning.encrypted_content"],
314
+ "reasoningEffort": "high",
315
+ "reasoningSummary": "auto",
316
+ "textVerbosity": "low"
317
+ },
318
+ "medium": {
319
+ "include": ["reasoning.encrypted_content"],
320
+ "reasoningEffort": "medium",
321
+ "reasoningSummary": "auto",
322
+ "textVerbosity": "low"
323
+ }
324
+ }
325
+ }
326
+ }
327
+ },
328
+ "opencode": {
329
+ "models": {
330
+ "big-pickle": {
331
+ "options": {
332
+ "reasoningEffort": "high",
333
+ "temperature": 1,
334
+ "top_k": 40,
335
+ "top_p": 0.95
336
+ },
337
+ "reasoning": true
338
+ }
339
+ }
340
+ },
341
+ "proxypal": {
342
+ "models": {
343
+ "gemini-2.5-computer-use-preview-10-2025": {
344
+ "limit": {
345
+ "context": 880964,
346
+ "output": 65536
347
+ },
348
+ "name": "Gemini 2 5 Computer Use Preview 10 2025",
349
+ "modalities": {
350
+ "input": ["text", "image", "pdf"],
351
+ "output": ["text"]
352
+ }
353
+ },
354
+ "gemini-2.5-flash": {
355
+ "limit": {
356
+ "context": 880964,
357
+ "output": 65536
358
+ },
359
+ "name": "Gemini 2 5 Flash",
360
+ "modalities": {
361
+ "input": ["text", "image", "pdf"],
362
+ "output": ["text"]
363
+ }
364
+ },
365
+ "gemini-2.5-flash-lite": {
366
+ "limit": {
367
+ "context": 880964,
368
+ "output": 65536
369
+ },
370
+ "name": "Gemini 2 5 Flash Lite",
371
+ "modalities": {
372
+ "input": ["text", "image", "pdf"],
373
+ "output": ["text"]
374
+ }
375
+ },
376
+ "gemini-2.5-pro": {
377
+ "limit": {
378
+ "context": 880964,
379
+ "output": 65536
380
+ },
381
+ "name": "Gemini 2 5 Pro",
382
+ "modalities": {
383
+ "input": ["text", "image", "pdf"],
384
+ "output": ["text"]
385
+ }
386
+ },
387
+ "gemini-3-flash-preview": {
388
+ "limit": {
389
+ "context": 880964,
390
+ "output": 65536
391
+ },
392
+ "name": "Gemini 3 Flash Preview",
393
+ "modalities": {
394
+ "input": ["text", "image", "pdf"],
395
+ "output": ["text"]
396
+ },
397
+ "variants": {
398
+ "low": {
399
+ "thinkingLevel": "low"
400
+ },
401
+ "medium": {
402
+ "thinkingLevel": "medium"
403
+ },
404
+ "high": {
405
+ "thinkingLevel": "high"
406
+ }
407
+ },
408
+ "reasoning": true
409
+ },
410
+ "gemini-3-pro-image-preview": {
411
+ "limit": {
412
+ "context": 880964,
413
+ "output": 65536
414
+ },
415
+ "name": "Gemini 3 Pro Image Preview",
416
+ "modalities": {
417
+ "input": ["text", "image", "pdf"],
418
+ "output": ["text"]
419
+ }
420
+ },
421
+ "gemini-3-pro-preview": {
422
+ "limit": {
423
+ "context": 880964,
424
+ "output": 65536
425
+ },
426
+ "name": "Gemini 3 Pro Preview",
427
+ "modalities": {
428
+ "input": ["text", "image", "pdf"],
429
+ "output": ["text"]
430
+ },
431
+ "variants": {
432
+ "low": {
433
+ "thinkingLevel": "low"
434
+ },
435
+ "high": {
436
+ "thinkingLevel": "high"
437
+ }
438
+ },
439
+ "reasoning": true
440
+ },
441
+ "gemini-claude-opus-4-5-thinking": {
442
+ "limit": {
443
+ "context": 168000,
444
+ "output": 64000
445
+ },
446
+ "modalities": {
447
+ "input": ["text", "image", "pdf"],
448
+ "output": ["text"]
449
+ },
450
+ "name": "Gemini Claude Opus 4 5 Thinking",
451
+ "variants": {
452
+ "low": {
453
+ "thinkingConfig": {
454
+ "thinkingBudget": 8192
455
+ }
456
+ },
457
+ "max": {
458
+ "thinkingConfig": {
459
+ "thinkingBudget": 32768
460
+ }
461
+ }
462
+ },
463
+ "reasoning": true
464
+ },
465
+ "gemini-claude-sonnet-4-5": {
466
+ "limit": {
467
+ "context": 168000,
468
+ "output": 64000
469
+ },
470
+ "modalities": {
471
+ "input": ["text", "image", "pdf"],
472
+ "output": ["text"]
473
+ },
474
+ "name": "Gemini Claude Sonnet 4 5"
475
+ },
476
+ "gemini-claude-sonnet-4-5-thinking": {
477
+ "limit": {
478
+ "context": 168000,
479
+ "output": 64000
480
+ },
481
+ "modalities": {
482
+ "input": ["text", "image", "pdf"],
483
+ "output": ["text"]
484
+ },
485
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
486
+ "variants": {
487
+ "low": {
488
+ "thinkingConfig": {
489
+ "thinkingBudget": 8192
490
+ }
491
+ },
492
+ "max": {
493
+ "thinkingConfig": {
494
+ "thinkingBudget": 32768
495
+ }
496
+ }
497
+ },
498
+ "reasoning": true
499
+ },
500
+ "glm-4.5": {
501
+ "limit": {
502
+ "context": 107520,
503
+ "output": 16384
504
+ },
505
+ "name": "Glm 4 5"
506
+ },
507
+ "glm-4.5-air": {
508
+ "limit": {
509
+ "context": 107520,
510
+ "output": 16384
511
+ },
512
+ "name": "Glm 4 5 Air"
513
+ },
514
+ "glm-4.6": {
515
+ "limit": {
516
+ "context": 107520,
517
+ "output": 16384
518
+ },
519
+ "name": "Glm 4 6"
520
+ },
521
+ "glm-4.7": {
522
+ "limit": {
523
+ "context": 107520,
524
+ "output": 16384
525
+ },
526
+ "name": "Glm 4 7"
527
+ },
528
+ "gpt-5": {
529
+ "limit": {
530
+ "context": 336000,
531
+ "output": 32768
532
+ },
533
+ "name": "Gpt 5",
534
+ "options": {
535
+ "reasoningEffort": "medium"
536
+ },
537
+ "reasoning": true
538
+ },
539
+ "gpt-5-codex": {
540
+ "limit": {
541
+ "context": 336000,
542
+ "output": 32768
543
+ },
544
+ "name": "Gpt 5 Codex",
545
+ "options": {
546
+ "reasoningEffort": "medium"
547
+ },
548
+ "reasoning": true
549
+ },
550
+ "gpt-5-codex-mini": {
551
+ "limit": {
552
+ "context": 336000,
553
+ "output": 32768
554
+ },
555
+ "name": "Gpt 5 Codex Mini",
556
+ "options": {
557
+ "reasoningEffort": "medium"
558
+ },
559
+ "reasoning": true
560
+ },
561
+ "gpt-5.1": {
562
+ "limit": {
563
+ "context": 336000,
564
+ "output": 32768
565
+ },
566
+ "name": "Gpt 5 1",
567
+ "options": {
568
+ "reasoningEffort": "medium"
569
+ },
570
+ "reasoning": true
571
+ },
572
+ "gpt-5.1-codex": {
573
+ "limit": {
574
+ "context": 336000,
575
+ "output": 32768
576
+ },
577
+ "name": "Gpt 5 1 Codex",
578
+ "options": {
579
+ "reasoningEffort": "medium"
580
+ },
581
+ "reasoning": true
582
+ },
583
+ "gpt-5.1-codex-max": {
584
+ "limit": {
585
+ "context": 336000,
586
+ "output": 32768
587
+ },
588
+ "name": "Gpt 5 1 Codex Max",
589
+ "options": {
590
+ "reasoningEffort": "medium"
591
+ },
592
+ "reasoning": true
593
+ },
594
+ "gpt-5.1-codex-mini": {
595
+ "limit": {
596
+ "context": 336000,
597
+ "output": 32768
598
+ },
599
+ "name": "Gpt 5 1 Codex Mini",
600
+ "options": {
601
+ "reasoningEffort": "medium"
602
+ },
603
+ "reasoning": true
604
+ },
605
+ "gpt-5.2": {
606
+ "limit": {
607
+ "context": 336000,
608
+ "output": 32768
609
+ },
610
+ "name": "Gpt 5 2",
611
+ "options": {
612
+ "reasoningEffort": "medium"
613
+ },
614
+ "reasoning": true
615
+ },
616
+ "gpt-5.2-codex": {
617
+ "limit": {
618
+ "context": 336000,
619
+ "output": 32768
620
+ },
621
+ "name": "Gpt 5 2 Codex",
622
+ "options": {
623
+ "reasoningEffort": "medium"
624
+ },
625
+ "reasoning": true
626
+ },
627
+ "gpt-oss-120b-medium": {
628
+ "limit": {
629
+ "context": 107520,
630
+ "output": 16384
631
+ },
632
+ "name": "Gpt Oss 120b Medium"
633
+ }
634
+ },
635
+ "name": "ProxyPal",
636
+ "npm": "@ai-sdk/anthropic",
637
+ "options": {
638
+ "apiKey": "proxypal-local",
639
+ "baseURL": "http://127.0.0.1:8317/v1",
640
+ "includeUsage": true
641
+ }
642
+ },
643
+ "zai-coding-plan": {
644
+ "models": {
645
+ "glm-4.6": {
646
+ "limit": {
647
+ "context": 128000,
648
+ "output": 16384
649
+ },
650
+ "options": {
651
+ "temperature": 1,
652
+ "thinking": {
653
+ "type": "enabled"
654
+ }
655
+ },
656
+ "reasoning": true,
657
+ "temperature": true,
658
+ "tool_call": true
659
+ },
660
+ "glm-4.7": {
661
+ "id": "glm-4.7",
662
+ "interleaved": true,
663
+ "limit": {
664
+ "context": 200000,
665
+ "output": 128000
666
+ },
667
+ "name": "GLM-4.7",
668
+ "options": {
669
+ "temperature": 1,
670
+ "thinking": {
671
+ "type": "enabled"
672
+ }
673
+ },
674
+ "reasoning": true
675
+ }
676
+ },
677
+ "name": "Z.AI Coding Plan"
678
+ }
679
+ },
680
+ "share": "manual",
681
+ "small_model": "opencode/gpt-5-nano",
682
+ "tui": {
683
+ "diff_style": "auto",
684
+ "scroll_acceleration": {
685
+ "enabled": true
686
+ },
687
+ "scroll_speed": 3
688
+ },
689
+ "watcher": {
690
+ "ignore": [
691
+ "node_modules/**",
692
+ ".git/**",
693
+ "dist/**",
694
+ "build/**",
695
+ "*.log",
696
+ ".DS_Store"
697
+ ]
698
+ }
698
699
  }