opencodekit 0.21.2 → 0.21.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.
@@ -1,1136 +1,1148 @@
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/gpt-5.4"
7
- },
8
- "compaction": {
9
- "description": "Session summarizer for context continuity across compactions"
10
- },
11
- "explore": {
12
- "description": "Fast codebase search specialist",
13
- "model": "github-copilot/claude-haiku-4.5"
14
- },
15
- "general": {
16
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
- "model": "github-copilot/gpt-5.3-codex"
18
- },
19
- "painter": {
20
- "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",
21
- "model": "proxypal/gemini-3.1-flash-image"
22
- },
23
- "plan": {
24
- "description": "Primary planning agent for architecture and multi-phase execution",
25
- "model": "github-copilot/gpt-5.4"
26
- },
27
- "review": {
28
- "description": "Code review, debugging, and security audit specialist",
29
- "model": "github-copilot/gpt-5.3-codex"
30
- },
31
- "scout": {
32
- "description": "External research specialist for library docs and patterns",
33
- "model": "github-copilot/claude-sonnet-4.6"
34
- },
35
- "vision": {
36
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
- "model": "github-copilot/gemini-3.1-pro-preview"
38
- }
39
- },
40
- "autoupdate": false,
41
- "compaction": {
42
- "auto": false,
43
- "reserved": 16000
44
- },
45
- "formatter": {
46
- "biome": {
47
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
- },
50
- "cargo-fmt": {
51
- "command": ["cargo", "fmt", "--", "$FILE"],
52
- "extensions": [".rs"]
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
- "laravel-pint": {
62
- "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
63
- "extensions": [".php"]
64
- },
65
- "oxfmt": {
66
- "command": ["npx", "oxfmt", "--write", "$FILE"],
67
- "extensions": [
68
- ".js",
69
- ".jsx",
70
- ".ts",
71
- ".tsx",
72
- ".json",
73
- ".jsonc",
74
- ".html",
75
- ".css",
76
- ".scss",
77
- ".sass",
78
- ".md",
79
- ".mdx",
80
- ".yaml",
81
- ".yml"
82
- ]
83
- }
84
- },
85
- "instructions": [
86
- ".opencode/memory/project/user.md",
87
- ".opencode/memory/project/tech-stack.md",
88
- ".opencode/memory/project/project.md",
89
- ".opencode/context/git-context.md"
90
- ],
91
- "keybinds": {
92
- "leader": "ctrl+x",
93
- "session_parent": "up"
94
- },
95
- "mcp": {
96
- "figma-mcp-go": {
97
- "command": ["npx", "-y", "@vkhanhqui/figma-mcp-go@latest"],
98
- "enabled": false,
99
- "timeout": 120000,
100
- "type": "local"
101
- },
102
- "tilth": {
103
- "command": ["npx", "-y", "tilth", "--mcp", "--edit"],
104
- "enabled": true,
105
- "environment": {
106
- "TILTH_THREADS": "8"
107
- },
108
- "timeout": 120000,
109
- "type": "local"
110
- },
111
- "webclaw": {
112
- "command": ["webclaw-mcp"],
113
- "enabled": true,
114
- "timeout": 120000,
115
- "type": "local"
116
- }
117
- },
118
- "model": "opencode/minimax-m2.5-free",
119
- "permission": {
120
- "bash": {
121
- "*": "allow",
122
- "cat *": "allow",
123
- "git branch *": "allow",
124
- "git checkout *": "ask",
125
- "git clean *": "ask",
126
- "git commit *": "ask",
127
- "git diff *": "allow",
128
- "git log *": "allow",
129
- "git merge *": "ask",
130
- "git push *": "ask",
131
- "git rebase *": "ask",
132
- "git reset *": "ask",
133
- "git status *": "allow",
134
- "ls *": "allow",
135
- "npm *": "allow",
136
- "npm publish *": "ask",
137
- "npm run db:push*": "ask",
138
- "npm run db:reset*": "deny",
139
- "npx *": "allow",
140
- "rm *": "deny",
141
- "rm -rf *": "deny",
142
- "sudo *": "deny"
143
- },
144
- "doom_loop": "ask",
145
- "edit": "allow",
146
- "external_directory": "ask",
147
- "question": "allow",
148
- "read": {
149
- "*": "allow",
150
- "*.env": "deny",
151
- "*.env.*": "deny",
152
- "*.env.example": "allow",
153
- "*.key": "deny",
154
- "*.pem": "deny",
155
- "*credentials*": "deny",
156
- "*password*": "deny",
157
- "*secret*": "deny",
158
- "*token*": "deny"
159
- }
160
- },
161
- "plugin": [
162
- "@tarquinen/opencode-dcp@latest",
163
- "@franlol/opencode-md-table-formatter@0.0.3",
164
- "openslimedit@latest",
165
- "opencodex-fast@latest"
166
- ],
167
- "provider": {
168
- "github-copilot": {
169
- "models": {
170
- "claude-haiku-4.5": {
171
- "attachment": true,
172
- "limit": {
173
- "context": 216000,
174
- "output": 32000
175
- },
176
- "options": {
177
- "reasoningEffort": "high"
178
- },
179
- "reasoning": true,
180
- "temperature": true,
181
- "tool_call": true,
182
- "variants": {
183
- "high": {
184
- "options": {
185
- "reasoningEffort": "high"
186
- }
187
- },
188
- "low": {
189
- "options": {
190
- "reasoningEffort": "low"
191
- }
192
- },
193
- "medium": {
194
- "options": {
195
- "reasoningEffort": "medium"
196
- }
197
- }
198
- }
199
- },
200
- "claude-opus-4.5": {
201
- "attachment": true,
202
- "limit": {
203
- "context": 216000,
204
- "output": 32000
205
- },
206
- "options": {
207
- "reasoningEffort": "medium"
208
- },
209
- "reasoning": true,
210
- "temperature": true,
211
- "tool_call": true,
212
- "variants": {
213
- "high": {
214
- "options": {
215
- "reasoningEffort": "high"
216
- }
217
- },
218
- "low": {
219
- "options": {
220
- "reasoningEffort": "low"
221
- }
222
- },
223
- "medium": {
224
- "options": {
225
- "reasoningEffort": "medium"
226
- }
227
- }
228
- }
229
- },
230
- "claude-opus-4.6": {
231
- "attachment": true,
232
- "limit": {
233
- "context": 216000,
234
- "output": 64000
235
- },
236
- "options": {
237
- "reasoningEffort": "high"
238
- },
239
- "reasoning": true,
240
- "temperature": true,
241
- "tool_call": true,
242
- "variants": {
243
- "high": {
244
- "options": {
245
- "reasoningEffort": "high"
246
- }
247
- },
248
- "low": {
249
- "options": {
250
- "reasoningEffort": "low"
251
- }
252
- },
253
- "medium": {
254
- "options": {
255
- "reasoningEffort": "medium"
256
- }
257
- }
258
- }
259
- },
260
- "claude-sonnet-4": {
261
- "attachment": true,
262
- "limit": {
263
- "context": 216000,
264
- "output": 16000
265
- },
266
- "options": {
267
- "reasoningEffort": "medium"
268
- },
269
- "reasoning": true,
270
- "temperature": true,
271
- "tool_call": true,
272
- "variants": {
273
- "high": {
274
- "options": {
275
- "reasoningEffort": "high"
276
- }
277
- },
278
- "low": {
279
- "options": {
280
- "reasoningEffort": "low"
281
- }
282
- },
283
- "medium": {
284
- "options": {
285
- "reasoningEffort": "medium"
286
- }
287
- }
288
- }
289
- },
290
- "claude-sonnet-4.5": {
291
- "attachment": true,
292
- "limit": {
293
- "context": 216000,
294
- "output": 32000
295
- },
296
- "options": {
297
- "reasoningEffort": "medium"
298
- },
299
- "reasoning": true,
300
- "temperature": true,
301
- "tool_call": true,
302
- "variants": {
303
- "high": {
304
- "options": {
305
- "reasoningEffort": "high"
306
- }
307
- },
308
- "low": {
309
- "options": {
310
- "reasoningEffort": "low"
311
- }
312
- },
313
- "medium": {
314
- "options": {
315
- "reasoningEffort": "medium"
316
- }
317
- }
318
- }
319
- },
320
- "claude-sonnet-4.6": {
321
- "attachment": true,
322
- "limit": {
323
- "context": 216000,
324
- "output": 32000
325
- },
326
- "options": {
327
- "reasoningEffort": "high"
328
- },
329
- "reasoning": true,
330
- "temperature": true,
331
- "tool_call": true,
332
- "variants": {
333
- "high": {
334
- "options": {
335
- "reasoningEffort": "high"
336
- }
337
- },
338
- "low": {
339
- "options": {
340
- "reasoningEffort": "low"
341
- }
342
- },
343
- "medium": {
344
- "options": {
345
- "reasoningEffort": "medium"
346
- }
347
- }
348
- }
349
- },
350
- "gemini-2.5-pro": {
351
- "attachment": true,
352
- "limit": {
353
- "context": 173000,
354
- "output": 64000
355
- },
356
- "reasoning": true,
357
- "temperature": true,
358
- "tool_call": true
359
- },
360
- "gemini-3-flash-preview": {
361
- "attachment": true,
362
- "limit": {
363
- "context": 173000,
364
- "output": 64000
365
- },
366
- "reasoning": true,
367
- "temperature": true,
368
- "tool_call": true
369
- },
370
- "gemini-3-pro-preview": {
371
- "attachment": true,
372
- "limit": {
373
- "context": 173000,
374
- "output": 64000
375
- },
376
- "reasoning": true,
377
- "temperature": true,
378
- "tool_call": true
379
- },
380
- "gemini-3.1-pro-preview": {
381
- "attachment": true,
382
- "limit": {
383
- "context": 173000,
384
- "output": 64000
385
- },
386
- "reasoning": true,
387
- "temperature": true,
388
- "tool_call": true
389
- },
390
- "gpt-5.1": {
391
- "attachment": true,
392
- "limit": {
393
- "context": 192000,
394
- "output": 128000
395
- },
396
- "options": {
397
- "reasoningEffort": "medium",
398
- "reasoningSummary": "auto"
399
- },
400
- "reasoning": true,
401
- "temperature": true,
402
- "tool_call": true
403
- },
404
- "gpt-5.1-codex": {
405
- "attachment": true,
406
- "limit": {
407
- "context": 256000,
408
- "input": 256000,
409
- "output": 128000
410
- },
411
- "options": {
412
- "reasoningEffort": "medium",
413
- "reasoningSummary": "auto"
414
- },
415
- "reasoning": true,
416
- "temperature": true,
417
- "tool_call": true
418
- },
419
- "gpt-5.1-codex-max": {
420
- "attachment": true,
421
- "limit": {
422
- "context": 256000,
423
- "input": 256000,
424
- "output": 128000
425
- },
426
- "options": {
427
- "reasoningEffort": "medium",
428
- "reasoningSummary": "auto"
429
- },
430
- "reasoning": true,
431
- "temperature": true,
432
- "tool_call": true
433
- },
434
- "gpt-5.1-codex-mini": {
435
- "attachment": true,
436
- "limit": {
437
- "context": 256000,
438
- "input": 256000,
439
- "output": 128000
440
- },
441
- "options": {
442
- "reasoningEffort": "medium",
443
- "reasoningSummary": "auto"
444
- },
445
- "reasoning": true,
446
- "temperature": true,
447
- "tool_call": true
448
- },
449
- "gpt-5.2": {
450
- "attachment": true,
451
- "limit": {
452
- "context": 192000,
453
- "output": 128000
454
- },
455
- "options": {
456
- "reasoningEffort": "medium",
457
- "reasoningSummary": "auto",
458
- "textVerbosity": "medium"
459
- },
460
- "reasoning": true,
461
- "temperature": true,
462
- "tool_call": true,
463
- "variants": {
464
- "high": {
465
- "include": ["reasoning.encrypted_content"],
466
- "reasoningEffort": "high",
467
- "reasoningSummary": "auto"
468
- },
469
- "low": {
470
- "reasoningEffort": "low",
471
- "reasoningSummary": "auto"
472
- },
473
- "medium": {
474
- "reasoningEffort": "medium",
475
- "reasoningSummary": "auto"
476
- }
477
- }
478
- },
479
- "gpt-5.2-codex": {
480
- "attachment": true,
481
- "limit": {
482
- "context": 400000,
483
- "input": 400000,
484
- "output": 128000
485
- },
486
- "options": {
487
- "reasoningEffort": "medium",
488
- "reasoningSummary": "auto",
489
- "textVerbosity": "medium"
490
- },
491
- "reasoning": true,
492
- "temperature": true,
493
- "tool_call": true,
494
- "variants": {
495
- "fast": {
496
- "disabled": true
497
- },
498
- "high": {
499
- "include": ["reasoning.encrypted_content"],
500
- "reasoningEffort": "high",
501
- "reasoningSummary": "auto",
502
- "textVerbosity": "medium"
503
- },
504
- "low": {
505
- "reasoningEffort": "low",
506
- "reasoningSummary": "auto"
507
- },
508
- "medium": {
509
- "reasoningEffort": "medium",
510
- "reasoningSummary": "auto",
511
- "textVerbosity": "medium"
512
- }
513
- }
514
- },
515
- "gpt-5.3-codex": {
516
- "attachment": true,
517
- "limit": {
518
- "context": 400000,
519
- "input": 400000,
520
- "output": 128000
521
- },
522
- "name": "Gpt 5 3 Codex",
523
- "options": {
524
- "reasoningEffort": "medium",
525
- "reasoningSummary": "auto",
526
- "textVerbosity": "medium"
527
- },
528
- "reasoning": true,
529
- "temperature": true,
530
- "tool_call": true,
531
- "variants": {
532
- "fast": {
533
- "disabled": true
534
- },
535
- "high": {
536
- "include": ["reasoning.encrypted_content"],
537
- "reasoningEffort": "high",
538
- "reasoningSummary": "auto",
539
- "textVerbosity": "medium"
540
- },
541
- "low": {
542
- "reasoningEffort": "low",
543
- "reasoningSummary": "auto"
544
- },
545
- "medium": {
546
- "reasoningEffort": "medium",
547
- "reasoningSummary": "auto",
548
- "textVerbosity": "medium"
549
- }
550
- }
551
- },
552
- "gpt-5.4": {
553
- "attachment": true,
554
- "limit": {
555
- "context": 400000,
556
- "input": 400000,
557
- "output": 128000
558
- },
559
- "modalities": {
560
- "input": ["text", "image"],
561
- "output": ["text"]
562
- },
563
- "options": {
564
- "reasoningEffort": "medium",
565
- "reasoningSummary": "auto",
566
- "textVerbosity": "medium"
567
- },
568
- "reasoning": true,
569
- "temperature": true,
570
- "tool_call": true,
571
- "variants": {
572
- "high": {
573
- "include": ["reasoning.encrypted_content"],
574
- "reasoningEffort": "high",
575
- "reasoningSummary": "auto"
576
- },
577
- "low": {
578
- "reasoningEffort": "low",
579
- "reasoningSummary": "auto"
580
- },
581
- "medium": {
582
- "reasoningEffort": "medium",
583
- "reasoningSummary": "auto"
584
- }
585
- }
586
- },
587
- "grok-code-fast": {
588
- "attachment": true,
589
- "limit": {
590
- "context": 173000,
591
- "output": 64000
592
- },
593
- "reasoning": true,
594
- "temperature": true,
595
- "tool_call": true
596
- },
597
- "grok-code-fast-1": {
598
- "attachment": true,
599
- "limit": {
600
- "context": 173000,
601
- "output": 64000
602
- },
603
- "reasoning": true,
604
- "temperature": true,
605
- "tool_call": true
606
- },
607
- "minimax-m2.5": {
608
- "attachment": true,
609
- "limit": {
610
- "context": 204800,
611
- "output": 16384
612
- },
613
- "options": {
614
- "temperature": 1,
615
- "top_k": 40,
616
- "top_p": 0.95
617
- },
618
- "reasoning": true,
619
- "temperature": true,
620
- "tool_call": true
621
- }
622
- },
623
- "options": {
624
- "timeout": 600000
625
- }
626
- },
627
- "kimi-for-coding": {
628
- "models": {
629
- "k2p5": {
630
- "limit": {
631
- "context": 262144,
632
- "output": 32768
633
- },
634
- "options": {
635
- "interleaved": {
636
- "field": "reasoning_content"
637
- },
638
- "thinking": {
639
- "budgetTokens": 8192,
640
- "reasoning_effort": "high",
641
- "type": "enabled"
642
- }
643
- },
644
- "reasoning": true,
645
- "temperature": true,
646
- "tool_call": true,
647
- "variants": {
648
- "high": {
649
- "interleaved": {
650
- "field": "reasoning_content"
651
- },
652
- "options": {
653
- "reasoning_effort": "high",
654
- "thinkingBudget": 16384,
655
- "type": "enabled"
656
- }
657
- },
658
- "max": {
659
- "interleaved": {
660
- "field": "reasoning_content"
661
- },
662
- "options": {
663
- "reasoning_effort": "high",
664
- "thinkingBudget": 32768,
665
- "type": "enabled"
666
- }
667
- }
668
- }
669
- }
670
- }
671
- },
672
- "modal": {
673
- "models": {
674
- "zai-org/GLM-5-FP8": {
675
- "modalities": {
676
- "input": ["text", "image", "pdf"],
677
- "output": ["text"]
678
- },
679
- "name": "GLM-5",
680
- "options": {
681
- "maxOutputTokens": 131072,
682
- "reasoningEffort": "high",
683
- "reasoningSummary": "true",
684
- "temperature": 1,
685
- "thinking": {
686
- "type": "enabled"
687
- },
688
- "top_k": 40,
689
- "top_p": 0.95
690
- },
691
- "reasoning": true
692
- }
693
- },
694
- "name": "Modal",
695
- "options": {
696
- "apiKey": "{env:MODAL_API_KEY}",
697
- "baseURL": "https://api.us-west-2.modal.direct/v1"
698
- }
699
- },
700
- "openai": {
701
- "models": {
702
- "gpt-5.2": {
703
- "variants": {
704
- "fast": {
705
- "disabled": true
706
- },
707
- "high": {
708
- "include": ["reasoning.encrypted_content"],
709
- "reasoningEffort": "high",
710
- "reasoningSummary": "auto",
711
- "textVerbosity": "low"
712
- },
713
- "medium": {
714
- "include": ["reasoning.encrypted_content"],
715
- "reasoningEffort": "medium",
716
- "reasoningSummary": "auto",
717
- "textVerbosity": "low"
718
- }
719
- }
720
- },
721
- "gpt-5.2-codex": {
722
- "variants": {
723
- "fast": {
724
- "disabled": true
725
- },
726
- "high": {
727
- "include": ["reasoning.encrypted_content"],
728
- "reasoningEffort": "high",
729
- "reasoningSummary": "auto",
730
- "textVerbosity": "low"
731
- },
732
- "medium": {
733
- "include": ["reasoning.encrypted_content"],
734
- "reasoningEffort": "medium",
735
- "reasoningSummary": "auto",
736
- "textVerbosity": "low"
737
- },
738
- "xhigh": {
739
- "include": ["reasoning.encrypted_content"],
740
- "reasoningEffort": "xhigh",
741
- "reasoningSummary": "auto",
742
- "textVerbosity": "low"
743
- }
744
- }
745
- },
746
- "gpt-5.3-codex": {
747
- "variants": {
748
- "fast": {
749
- "disabled": true
750
- },
751
- "high": {
752
- "include": ["reasoning.encrypted_content"],
753
- "reasoningEffort": "high",
754
- "reasoningSummary": "auto",
755
- "textVerbosity": "low"
756
- },
757
- "medium": {
758
- "include": ["reasoning.encrypted_content"],
759
- "reasoningEffort": "medium",
760
- "reasoningSummary": "auto",
761
- "textVerbosity": "low"
762
- },
763
- "xhigh": {
764
- "include": ["reasoning.encrypted_content"],
765
- "reasoningEffort": "xhigh",
766
- "reasoningSummary": "auto",
767
- "textVerbosity": "low"
768
- }
769
- }
770
- },
771
- "gpt-5.4": {
772
- "attachment": true,
773
- "limit": {
774
- "context": 400000,
775
- "output": 128000
776
- },
777
- "modalities": {
778
- "input": ["text", "image"],
779
- "output": ["text"]
780
- },
781
- "options": {
782
- "reasoningEffort": "medium",
783
- "reasoningSummary": "auto",
784
- "textVerbosity": "medium"
785
- },
786
- "reasoning": true,
787
- "temperature": true,
788
- "tool_call": true,
789
- "variants": {
790
- "high": {
791
- "include": ["reasoning.encrypted_content"],
792
- "reasoningEffort": "high",
793
- "reasoningSummary": "auto"
794
- },
795
- "low": {
796
- "reasoningEffort": "low",
797
- "reasoningSummary": "auto"
798
- },
799
- "medium": {
800
- "reasoningEffort": "medium",
801
- "reasoningSummary": "auto"
802
- }
803
- }
804
- }
805
- }
806
- },
807
- "opencode": {
808
- "models": {
809
- "big-pickle": {
810
- "options": {
811
- "reasoningEffort": "high",
812
- "temperature": 1,
813
- "top_k": 40,
814
- "top_p": 0.95
815
- },
816
- "reasoning": true
817
- }
818
- }
819
- },
820
- "proxypal": {
821
- "models": {
822
- "claude-opus-4.6": {
823
- "limit": {
824
- "context": 200000,
825
- "output": 64000
826
- },
827
- "modalities": {
828
- "input": ["text", "image", "pdf"],
829
- "output": ["text"]
830
- },
831
- "name": "Claude Opus 4 6"
832
- },
833
- "coder-model": {
834
- "limit": {
835
- "context": 262144,
836
- "output": 65536
837
- },
838
- "name": "Coder Model"
839
- },
840
- "glm-4.5": {
841
- "limit": {
842
- "context": 128000,
843
- "output": 16384
844
- },
845
- "name": "Glm 4 5"
846
- },
847
- "glm-4.5-air": {
848
- "limit": {
849
- "context": 128000,
850
- "output": 16384
851
- },
852
- "name": "Glm 4 5 Air"
853
- },
854
- "glm-4.6": {
855
- "limit": {
856
- "context": 128000,
857
- "output": 16384
858
- },
859
- "name": "Glm 4 6"
860
- },
861
- "glm-4.7": {
862
- "limit": {
863
- "context": 128000,
864
- "output": 16384
865
- },
866
- "name": "Glm 4 7"
867
- },
868
- "gpt-5": {
869
- "limit": {
870
- "context": 400000,
871
- "output": 32768
872
- },
873
- "modalities": {
874
- "input": ["text", "image", "pdf"],
875
- "output": ["text"]
876
- },
877
- "name": "Gpt 5",
878
- "options": {
879
- "reasoningEffort": "medium"
880
- },
881
- "reasoning": true
882
- },
883
- "gpt-5-codex": {
884
- "limit": {
885
- "context": 400000,
886
- "output": 32768
887
- },
888
- "modalities": {
889
- "input": ["text", "image", "pdf"],
890
- "output": ["text"]
891
- },
892
- "name": "Gpt 5 Codex",
893
- "options": {
894
- "reasoningEffort": "medium"
895
- },
896
- "reasoning": true
897
- },
898
- "gpt-5-codex-mini": {
899
- "limit": {
900
- "context": 400000,
901
- "output": 32768
902
- },
903
- "modalities": {
904
- "input": ["text", "image", "pdf"],
905
- "output": ["text"]
906
- },
907
- "name": "Gpt 5 Codex Mini",
908
- "options": {
909
- "reasoningEffort": "medium"
910
- },
911
- "reasoning": true
912
- },
913
- "gpt-5.1": {
914
- "limit": {
915
- "context": 400000,
916
- "output": 32768
917
- },
918
- "modalities": {
919
- "input": ["text", "image", "pdf"],
920
- "output": ["text"]
921
- },
922
- "name": "Gpt 5 1",
923
- "options": {
924
- "reasoningEffort": "medium"
925
- },
926
- "reasoning": true
927
- },
928
- "gpt-5.1-codex": {
929
- "limit": {
930
- "context": 400000,
931
- "output": 32768
932
- },
933
- "modalities": {
934
- "input": ["text", "image", "pdf"],
935
- "output": ["text"]
936
- },
937
- "name": "Gpt 5 1 Codex",
938
- "options": {
939
- "reasoningEffort": "medium"
940
- },
941
- "reasoning": true
942
- },
943
- "gpt-5.1-codex-max": {
944
- "limit": {
945
- "context": 400000,
946
- "output": 32768
947
- },
948
- "modalities": {
949
- "input": ["text", "image", "pdf"],
950
- "output": ["text"]
951
- },
952
- "name": "Gpt 5 1 Codex Max",
953
- "options": {
954
- "reasoningEffort": "medium"
955
- },
956
- "reasoning": true
957
- },
958
- "gpt-5.1-codex-mini": {
959
- "limit": {
960
- "context": 400000,
961
- "output": 32768
962
- },
963
- "modalities": {
964
- "input": ["text", "image", "pdf"],
965
- "output": ["text"]
966
- },
967
- "name": "Gpt 5 1 Codex Mini",
968
- "options": {
969
- "reasoningEffort": "medium"
970
- },
971
- "reasoning": true
972
- },
973
- "gpt-5.2": {
974
- "limit": {
975
- "context": 400000,
976
- "output": 32768
977
- },
978
- "modalities": {
979
- "input": ["text", "image", "pdf"],
980
- "output": ["text"]
981
- },
982
- "name": "Gpt 5 2",
983
- "options": {
984
- "reasoningEffort": "medium"
985
- },
986
- "reasoning": true
987
- },
988
- "gpt-5.2-codex": {
989
- "limit": {
990
- "context": 400000,
991
- "output": 32768
992
- },
993
- "modalities": {
994
- "input": ["text", "image", "pdf"],
995
- "output": ["text"]
996
- },
997
- "name": "Gpt 5 2 Codex",
998
- "options": {
999
- "reasoningEffort": "medium"
1000
- },
1001
- "reasoning": true
1002
- },
1003
- "gpt-5.3-codex": {
1004
- "limit": {
1005
- "context": 400000,
1006
- "output": 32768
1007
- },
1008
- "modalities": {
1009
- "input": ["text", "image", "pdf"],
1010
- "output": ["text"]
1011
- },
1012
- "name": "Gpt 5 3 Codex",
1013
- "options": {
1014
- "reasoningEffort": "medium"
1015
- },
1016
- "reasoning": true
1017
- },
1018
- "gpt-5.3-codex-spark": {
1019
- "limit": {
1020
- "context": 400000,
1021
- "output": 32768
1022
- },
1023
- "modalities": {
1024
- "input": ["text", "image", "pdf"],
1025
- "output": ["text"]
1026
- },
1027
- "name": "Gpt 5 3 Codex Spark",
1028
- "options": {
1029
- "reasoningEffort": "medium"
1030
- },
1031
- "reasoning": true
1032
- },
1033
- "gpt-5.4": {
1034
- "limit": {
1035
- "context": 400000,
1036
- "output": 128000
1037
- },
1038
- "modalities": {
1039
- "input": ["text", "image", "pdf"],
1040
- "output": ["text"]
1041
- },
1042
- "name": "Gpt 5 4",
1043
- "options": {
1044
- "reasoningEffort": "medium"
1045
- },
1046
- "reasoning": true
1047
- },
1048
- "gpt-5.4-mini": {
1049
- "limit": {
1050
- "context": 400000,
1051
- "output": 32768
1052
- },
1053
- "modalities": {
1054
- "input": ["text", "image", "pdf"],
1055
- "output": ["text"]
1056
- },
1057
- "name": "Gpt 5 4 Mini",
1058
- "options": {
1059
- "reasoningEffort": "medium"
1060
- },
1061
- "reasoning": true
1062
- }
1063
- },
1064
- "name": "ProxyPal",
1065
- "npm": "@ai-sdk/anthropic",
1066
- "options": {
1067
- "apiKey": "proxypal-local",
1068
- "baseURL": "http://127.0.0.1:8317/v1",
1069
- "includeUsage": true
1070
- }
1071
- },
1072
- "zai-coding-plan": {
1073
- "models": {
1074
- "glm-4.6": {
1075
- "limit": {
1076
- "context": 128000,
1077
- "output": 16384
1078
- },
1079
- "options": {
1080
- "temperature": 1,
1081
- "thinking": {
1082
- "type": "enabled"
1083
- }
1084
- },
1085
- "reasoning": true,
1086
- "temperature": true,
1087
- "tool_call": true
1088
- },
1089
- "glm-4.7": {
1090
- "id": "glm-4.7",
1091
- "interleaved": true,
1092
- "limit": {
1093
- "context": 200000,
1094
- "output": 128000
1095
- },
1096
- "name": "GLM-4.7",
1097
- "options": {
1098
- "temperature": 1,
1099
- "thinking": {
1100
- "type": "enabled"
1101
- }
1102
- },
1103
- "reasoning": true
1104
- },
1105
- "glm-5": {
1106
- "name": "GLM-5",
1107
- "options": {
1108
- "maxOutputTokens": 131072,
1109
- "reasoningEffort": "high",
1110
- "reasoningSummary": "true",
1111
- "temperature": 1,
1112
- "thinking": {
1113
- "type": "enabled"
1114
- },
1115
- "top_k": 40,
1116
- "top_p": 0.95
1117
- },
1118
- "reasoning": true
1119
- }
1120
- },
1121
- "name": "Z.AI Coding Plan"
1122
- }
1123
- },
1124
- "share": "manual",
1125
- "small_model": "opencode/gpt-5-nano",
1126
- "watcher": {
1127
- "ignore": [
1128
- "node_modules/**",
1129
- ".git/**",
1130
- "dist/**",
1131
- "build/**",
1132
- "*.log",
1133
- ".DS_Store"
1134
- ]
1135
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "github-copilot/gpt-5.5"
7
+ },
8
+ "compaction": {
9
+ "description": "Session summarizer for context continuity across compactions"
10
+ },
11
+ "explore": {
12
+ "description": "Fast codebase search specialist",
13
+ "model": "github-copilot/gpt-5.4-mini"
14
+ },
15
+ "general": {
16
+ "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
+ "model": "github-copilot/gpt-5.3-codex"
18
+ },
19
+ "painter": {
20
+ "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",
21
+ "model": "proxypal/gemini-3.1-flash-image"
22
+ },
23
+ "plan": {
24
+ "description": "Primary planning agent for architecture and multi-phase execution",
25
+ "model": "github-copilot/gpt-5.4"
26
+ },
27
+ "review": {
28
+ "description": "Code review, debugging, and security audit specialist",
29
+ "model": "github-copilot/gpt-5.3-codex"
30
+ },
31
+ "scout": {
32
+ "description": "External research specialist for library docs and patterns",
33
+ "model": "github-copilot/gpt-5.4"
34
+ },
35
+ "vision": {
36
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
+ "model": "github-copilot/gemini-3.1-pro-preview"
38
+ }
39
+ },
40
+ "autoupdate": false,
41
+ "compaction": {
42
+ "auto": false,
43
+ "reserved": 16000
44
+ },
45
+ "formatter": {
46
+ "biome": {
47
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
+ },
50
+ "cargo-fmt": {
51
+ "command": ["cargo", "fmt", "--", "$FILE"],
52
+ "extensions": [".rs"]
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
+ "laravel-pint": {
62
+ "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
63
+ "extensions": [".php"]
64
+ },
65
+ "oxfmt": {
66
+ "command": ["npx", "oxfmt", "--write", "$FILE"],
67
+ "extensions": [
68
+ ".js",
69
+ ".jsx",
70
+ ".ts",
71
+ ".tsx",
72
+ ".json",
73
+ ".jsonc",
74
+ ".html",
75
+ ".css",
76
+ ".scss",
77
+ ".sass",
78
+ ".md",
79
+ ".mdx",
80
+ ".yaml",
81
+ ".yml"
82
+ ]
83
+ }
84
+ },
85
+ "instructions": [
86
+ ".opencode/memory/project/user.md",
87
+ ".opencode/memory/project/tech-stack.md",
88
+ ".opencode/memory/project/project.md",
89
+ ".opencode/context/git-context.md"
90
+ ],
91
+ "keybinds": {
92
+ "leader": "ctrl+x",
93
+ "session_parent": "up"
94
+ },
95
+ "mcp": {
96
+ "figma-mcp-go": {
97
+ "command": ["npx", "-y", "@vkhanhqui/figma-mcp-go@latest"],
98
+ "enabled": false,
99
+ "timeout": 120000,
100
+ "type": "local"
101
+ },
102
+ "tilth": {
103
+ "command": ["npx", "-y", "tilth", "--mcp", "--edit"],
104
+ "enabled": true,
105
+ "environment": {
106
+ "TILTH_THREADS": "8"
107
+ },
108
+ "timeout": 120000,
109
+ "type": "local"
110
+ },
111
+ "webclaw": {
112
+ "command": ["webclaw-mcp"],
113
+ "enabled": true,
114
+ "timeout": 120000,
115
+ "type": "local"
116
+ }
117
+ },
118
+ "model": "github-copilot/gpt-5.5",
119
+ "permission": {
120
+ "bash": {
121
+ "*": "allow",
122
+ "cat *": "allow",
123
+ "git branch *": "allow",
124
+ "git checkout *": "ask",
125
+ "git clean *": "ask",
126
+ "git commit *": "ask",
127
+ "git diff *": "allow",
128
+ "git log *": "allow",
129
+ "git merge *": "ask",
130
+ "git push *": "ask",
131
+ "git rebase *": "ask",
132
+ "git reset *": "ask",
133
+ "git status *": "allow",
134
+ "ls *": "allow",
135
+ "npm *": "allow",
136
+ "npm publish *": "ask",
137
+ "npm run db:push*": "ask",
138
+ "npm run db:reset*": "deny",
139
+ "npx *": "allow",
140
+ "rm *": "deny",
141
+ "rm -rf *": "deny",
142
+ "sudo *": "deny"
143
+ },
144
+ "doom_loop": "ask",
145
+ "edit": "allow",
146
+ "external_directory": "ask",
147
+ "question": "allow",
148
+ "read": {
149
+ "*": "allow",
150
+ "*.env": "deny",
151
+ "*.env.*": "deny",
152
+ "*.env.example": "allow",
153
+ "*.key": "deny",
154
+ "*.pem": "deny",
155
+ "*credentials*": "deny",
156
+ "*password*": "deny",
157
+ "*secret*": "deny",
158
+ "*token*": "deny"
159
+ }
160
+ },
161
+ "plugin": [
162
+ "@tarquinen/opencode-dcp@latest",
163
+ "@franlol/opencode-md-table-formatter@0.0.3",
164
+ "openslimedit@latest",
165
+ "opencodex-fast@latest"
166
+ ],
167
+ "provider": {
168
+ "github-copilot": {
169
+ "models": {
170
+ "claude-haiku-4.5": {
171
+ "attachment": true,
172
+ "limit": {
173
+ "context": 216000,
174
+ "output": 32000
175
+ },
176
+ "options": {
177
+ "reasoningEffort": "high"
178
+ },
179
+ "reasoning": true,
180
+ "temperature": true,
181
+ "tool_call": true,
182
+ "variants": {
183
+ "high": {
184
+ "options": {
185
+ "reasoningEffort": "high"
186
+ }
187
+ },
188
+ "low": {
189
+ "options": {
190
+ "reasoningEffort": "low"
191
+ }
192
+ },
193
+ "medium": {
194
+ "options": {
195
+ "reasoningEffort": "medium"
196
+ }
197
+ }
198
+ }
199
+ },
200
+ "claude-opus-4.5": {
201
+ "attachment": true,
202
+ "limit": {
203
+ "context": 216000,
204
+ "output": 32000
205
+ },
206
+ "options": {
207
+ "reasoningEffort": "medium"
208
+ },
209
+ "reasoning": true,
210
+ "temperature": true,
211
+ "tool_call": true,
212
+ "variants": {
213
+ "high": {
214
+ "options": {
215
+ "reasoningEffort": "high"
216
+ }
217
+ },
218
+ "low": {
219
+ "options": {
220
+ "reasoningEffort": "low"
221
+ }
222
+ },
223
+ "medium": {
224
+ "options": {
225
+ "reasoningEffort": "medium"
226
+ }
227
+ }
228
+ }
229
+ },
230
+ "claude-opus-4.6": {
231
+ "attachment": true,
232
+ "limit": {
233
+ "context": 216000,
234
+ "output": 64000
235
+ },
236
+ "options": {
237
+ "reasoningEffort": "high"
238
+ },
239
+ "reasoning": true,
240
+ "temperature": true,
241
+ "tool_call": true,
242
+ "variants": {
243
+ "high": {
244
+ "options": {
245
+ "reasoningEffort": "high"
246
+ }
247
+ },
248
+ "low": {
249
+ "options": {
250
+ "reasoningEffort": "low"
251
+ }
252
+ },
253
+ "medium": {
254
+ "options": {
255
+ "reasoningEffort": "medium"
256
+ }
257
+ }
258
+ }
259
+ },
260
+ "claude-sonnet-4.5": {
261
+ "attachment": true,
262
+ "limit": {
263
+ "context": 216000,
264
+ "output": 32000
265
+ },
266
+ "options": {
267
+ "reasoningEffort": "medium"
268
+ },
269
+ "reasoning": true,
270
+ "temperature": true,
271
+ "tool_call": true,
272
+ "variants": {
273
+ "high": {
274
+ "options": {
275
+ "reasoningEffort": "high"
276
+ }
277
+ },
278
+ "low": {
279
+ "options": {
280
+ "reasoningEffort": "low"
281
+ }
282
+ },
283
+ "medium": {
284
+ "options": {
285
+ "reasoningEffort": "medium"
286
+ }
287
+ }
288
+ }
289
+ },
290
+ "claude-sonnet-4.6": {
291
+ "attachment": true,
292
+ "limit": {
293
+ "context": 216000,
294
+ "output": 32000
295
+ },
296
+ "options": {
297
+ "reasoningEffort": "high"
298
+ },
299
+ "reasoning": true,
300
+ "temperature": true,
301
+ "tool_call": true,
302
+ "variants": {
303
+ "high": {
304
+ "options": {
305
+ "reasoningEffort": "high"
306
+ }
307
+ },
308
+ "low": {
309
+ "options": {
310
+ "reasoningEffort": "low"
311
+ }
312
+ },
313
+ "medium": {
314
+ "options": {
315
+ "reasoningEffort": "medium"
316
+ }
317
+ }
318
+ }
319
+ },
320
+ "gemini-2.5-pro": {
321
+ "attachment": true,
322
+ "limit": {
323
+ "context": 173000,
324
+ "output": 64000
325
+ },
326
+ "reasoning": true,
327
+ "temperature": true,
328
+ "tool_call": true
329
+ },
330
+ "gemini-3-flash-preview": {
331
+ "attachment": true,
332
+ "limit": {
333
+ "context": 173000,
334
+ "output": 64000
335
+ },
336
+ "reasoning": true,
337
+ "temperature": true,
338
+ "tool_call": true
339
+ },
340
+ "gemini-3-pro-preview": {
341
+ "attachment": true,
342
+ "limit": {
343
+ "context": 173000,
344
+ "output": 64000
345
+ },
346
+ "reasoning": true,
347
+ "temperature": true,
348
+ "tool_call": true
349
+ },
350
+ "gemini-3.1-pro-preview": {
351
+ "attachment": true,
352
+ "limit": {
353
+ "context": 173000,
354
+ "output": 64000
355
+ },
356
+ "reasoning": true,
357
+ "temperature": true,
358
+ "tool_call": true
359
+ },
360
+ "gpt-5.2": {
361
+ "attachment": true,
362
+ "limit": {
363
+ "context": 192000,
364
+ "output": 128000
365
+ },
366
+ "options": {
367
+ "reasoningEffort": "medium",
368
+ "reasoningSummary": "auto",
369
+ "textVerbosity": "medium"
370
+ },
371
+ "reasoning": true,
372
+ "temperature": true,
373
+ "tool_call": true,
374
+ "variants": {
375
+ "xhigh": {
376
+ "include": ["reasoning.encrypted_content"],
377
+ "reasoningEffort": "xhigh",
378
+ "reasoningSummary": "auto"
379
+ },
380
+ "high": {
381
+ "include": ["reasoning.encrypted_content"],
382
+ "reasoningEffort": "high",
383
+ "reasoningSummary": "auto"
384
+ },
385
+ "low": {
386
+ "reasoningEffort": "low",
387
+ "reasoningSummary": "auto"
388
+ },
389
+ "medium": {
390
+ "reasoningEffort": "medium",
391
+ "reasoningSummary": "auto"
392
+ }
393
+ }
394
+ },
395
+ "gpt-5.2-codex": {
396
+ "attachment": true,
397
+ "limit": {
398
+ "context": 400000,
399
+ "input": 400000,
400
+ "output": 128000
401
+ },
402
+ "options": {
403
+ "reasoningEffort": "medium",
404
+ "reasoningSummary": "auto",
405
+ "textVerbosity": "medium"
406
+ },
407
+ "reasoning": true,
408
+ "temperature": true,
409
+ "tool_call": true,
410
+ "variants": {
411
+ "fast": {
412
+ "disabled": true
413
+ },
414
+ "xhigh": {
415
+ "include": ["reasoning.encrypted_content"],
416
+ "reasoningEffort": "xhigh",
417
+ "reasoningSummary": "auto"
418
+ },
419
+ "high": {
420
+ "include": ["reasoning.encrypted_content"],
421
+ "reasoningEffort": "high",
422
+ "reasoningSummary": "auto",
423
+ "textVerbosity": "medium"
424
+ },
425
+ "low": {
426
+ "reasoningEffort": "low",
427
+ "reasoningSummary": "auto"
428
+ },
429
+ "medium": {
430
+ "reasoningEffort": "medium",
431
+ "reasoningSummary": "auto",
432
+ "textVerbosity": "medium"
433
+ }
434
+ }
435
+ },
436
+ "gpt-5.3-codex": {
437
+ "attachment": true,
438
+ "limit": {
439
+ "context": 400000,
440
+ "input": 400000,
441
+ "output": 128000
442
+ },
443
+ "name": "Gpt 5 3 Codex",
444
+ "options": {
445
+ "reasoningEffort": "medium",
446
+ "reasoningSummary": "auto",
447
+ "textVerbosity": "medium"
448
+ },
449
+ "reasoning": true,
450
+ "temperature": true,
451
+ "tool_call": true,
452
+ "variants": {
453
+ "fast": {
454
+ "disabled": true
455
+ },
456
+ "xhigh": {
457
+ "include": ["reasoning.encrypted_content"],
458
+ "reasoningEffort": "xhigh",
459
+ "reasoningSummary": "auto"
460
+ },
461
+ "high": {
462
+ "include": ["reasoning.encrypted_content"],
463
+ "reasoningEffort": "high",
464
+ "reasoningSummary": "auto",
465
+ "textVerbosity": "medium"
466
+ },
467
+ "low": {
468
+ "reasoningEffort": "low",
469
+ "reasoningSummary": "auto"
470
+ },
471
+ "medium": {
472
+ "reasoningEffort": "medium",
473
+ "reasoningSummary": "auto",
474
+ "textVerbosity": "medium"
475
+ }
476
+ }
477
+ },
478
+ "gpt-5.4-mini": {
479
+ "attachment": true,
480
+ "limit": {
481
+ "context": 400000,
482
+ "input": 400000,
483
+ "output": 128000
484
+ },
485
+ "modalities": {
486
+ "input": ["text", "image"],
487
+ "output": ["text"]
488
+ },
489
+ "options": {
490
+ "reasoningEffort": "low",
491
+ "reasoningSummary": "auto",
492
+ "textVerbosity": "medium"
493
+ },
494
+ "reasoning": true,
495
+ "temperature": true,
496
+ "tool_call": true,
497
+ "variants": {
498
+ "xhigh": {
499
+ "include": ["reasoning.encrypted_content"],
500
+ "reasoningEffort": "xhigh",
501
+ "reasoningSummary": "auto"
502
+ },
503
+ "high": {
504
+ "include": ["reasoning.encrypted_content"],
505
+ "reasoningEffort": "high",
506
+ "reasoningSummary": "auto"
507
+ },
508
+ "low": {
509
+ "reasoningEffort": "low",
510
+ "reasoningSummary": "auto"
511
+ },
512
+ "medium": {
513
+ "reasoningEffort": "medium",
514
+ "reasoningSummary": "auto"
515
+ }
516
+ }
517
+ },
518
+ "gpt-5.4": {
519
+ "attachment": true,
520
+ "limit": {
521
+ "context": 400000,
522
+ "input": 400000,
523
+ "output": 128000
524
+ },
525
+ "modalities": {
526
+ "input": ["text", "image"],
527
+ "output": ["text"]
528
+ },
529
+ "options": {
530
+ "reasoningEffort": "low",
531
+ "reasoningSummary": "auto",
532
+ "textVerbosity": "medium"
533
+ },
534
+ "reasoning": true,
535
+ "temperature": true,
536
+ "tool_call": true,
537
+ "variants": {
538
+ "xhigh": {
539
+ "include": ["reasoning.encrypted_content"],
540
+ "reasoningEffort": "xhigh",
541
+ "reasoningSummary": "auto"
542
+ },
543
+ "high": {
544
+ "include": ["reasoning.encrypted_content"],
545
+ "reasoningEffort": "high",
546
+ "reasoningSummary": "auto"
547
+ },
548
+ "low": {
549
+ "reasoningEffort": "low",
550
+ "reasoningSummary": "auto"
551
+ },
552
+ "medium": {
553
+ "reasoningEffort": "medium",
554
+ "reasoningSummary": "auto"
555
+ }
556
+ }
557
+ },
558
+ "gpt-5.5": {
559
+ "name": "GPT-5.5",
560
+ "attachment": true,
561
+ "limit": {
562
+ "context": 400000,
563
+ "input": 400000,
564
+ "output": 128000
565
+ },
566
+ "modalities": {
567
+ "input": ["text", "image"],
568
+ "output": ["text"]
569
+ },
570
+ "options": {
571
+ "reasoningEffort": "medium",
572
+ "reasoningSummary": "auto",
573
+ "textVerbosity": "medium"
574
+ },
575
+ "reasoning": true,
576
+ "temperature": true,
577
+ "tool_call": true,
578
+ "variants": {
579
+ "xhigh": {
580
+ "include": ["reasoning.encrypted_content"],
581
+ "reasoningEffort": "xhigh",
582
+ "reasoningSummary": "auto"
583
+ },
584
+ "high": {
585
+ "include": ["reasoning.encrypted_content"],
586
+ "reasoningEffort": "high",
587
+ "reasoningSummary": "auto"
588
+ },
589
+ "low": {
590
+ "reasoningEffort": "low",
591
+ "reasoningSummary": "auto"
592
+ },
593
+ "medium": {
594
+ "reasoningEffort": "medium",
595
+ "reasoningSummary": "auto"
596
+ }
597
+ }
598
+ },
599
+ "grok-code-fast": {
600
+ "attachment": true,
601
+ "limit": {
602
+ "context": 173000,
603
+ "output": 64000
604
+ },
605
+ "reasoning": true,
606
+ "temperature": true,
607
+ "tool_call": true
608
+ },
609
+ "grok-code-fast-1": {
610
+ "attachment": true,
611
+ "limit": {
612
+ "context": 173000,
613
+ "output": 64000
614
+ },
615
+ "reasoning": true,
616
+ "temperature": true,
617
+ "tool_call": true
618
+ },
619
+ "minimax-m2.5": {
620
+ "attachment": true,
621
+ "limit": {
622
+ "context": 204800,
623
+ "output": 16384
624
+ },
625
+ "options": {
626
+ "temperature": 1,
627
+ "top_k": 40,
628
+ "top_p": 0.95
629
+ },
630
+ "reasoning": true,
631
+ "temperature": true,
632
+ "tool_call": true
633
+ }
634
+ },
635
+ "options": {
636
+ "timeout": 600000
637
+ }
638
+ },
639
+ "kimi-for-coding": {
640
+ "models": {
641
+ "k2p5": {
642
+ "limit": {
643
+ "context": 262144,
644
+ "output": 32768
645
+ },
646
+ "options": {
647
+ "interleaved": {
648
+ "field": "reasoning_content"
649
+ },
650
+ "thinking": {
651
+ "budgetTokens": 8192,
652
+ "reasoning_effort": "high",
653
+ "type": "enabled"
654
+ }
655
+ },
656
+ "reasoning": true,
657
+ "temperature": true,
658
+ "tool_call": true,
659
+ "variants": {
660
+ "high": {
661
+ "interleaved": {
662
+ "field": "reasoning_content"
663
+ },
664
+ "options": {
665
+ "reasoning_effort": "high",
666
+ "thinkingBudget": 16384,
667
+ "type": "enabled"
668
+ }
669
+ },
670
+ "max": {
671
+ "interleaved": {
672
+ "field": "reasoning_content"
673
+ },
674
+ "options": {
675
+ "reasoning_effort": "high",
676
+ "thinkingBudget": 32768,
677
+ "type": "enabled"
678
+ }
679
+ }
680
+ }
681
+ }
682
+ }
683
+ },
684
+ "modal": {
685
+ "models": {
686
+ "zai-org/GLM-5-FP8": {
687
+ "modalities": {
688
+ "input": ["text", "image", "pdf"],
689
+ "output": ["text"]
690
+ },
691
+ "name": "GLM-5",
692
+ "options": {
693
+ "maxOutputTokens": 131072,
694
+ "reasoningEffort": "high",
695
+ "reasoningSummary": "true",
696
+ "temperature": 1,
697
+ "thinking": {
698
+ "type": "enabled"
699
+ },
700
+ "top_k": 40,
701
+ "top_p": 0.95
702
+ },
703
+ "reasoning": true
704
+ }
705
+ },
706
+ "name": "Modal",
707
+ "options": {
708
+ "apiKey": "{env:MODAL_API_KEY}",
709
+ "baseURL": "https://api.us-west-2.modal.direct/v1"
710
+ }
711
+ },
712
+ "openai": {
713
+ "models": {
714
+ "gpt-5.2": {
715
+ "variants": {
716
+ "fast": {
717
+ "disabled": true
718
+ },
719
+ "high": {
720
+ "include": ["reasoning.encrypted_content"],
721
+ "reasoningEffort": "high",
722
+ "reasoningSummary": "auto",
723
+ "textVerbosity": "low"
724
+ },
725
+ "medium": {
726
+ "include": ["reasoning.encrypted_content"],
727
+ "reasoningEffort": "medium",
728
+ "reasoningSummary": "auto",
729
+ "textVerbosity": "low"
730
+ }
731
+ }
732
+ },
733
+ "gpt-5.2-codex": {
734
+ "variants": {
735
+ "fast": {
736
+ "disabled": true
737
+ },
738
+ "high": {
739
+ "include": ["reasoning.encrypted_content"],
740
+ "reasoningEffort": "high",
741
+ "reasoningSummary": "auto",
742
+ "textVerbosity": "low"
743
+ },
744
+ "medium": {
745
+ "include": ["reasoning.encrypted_content"],
746
+ "reasoningEffort": "medium",
747
+ "reasoningSummary": "auto",
748
+ "textVerbosity": "low"
749
+ },
750
+ "xhigh": {
751
+ "include": ["reasoning.encrypted_content"],
752
+ "reasoningEffort": "xhigh",
753
+ "reasoningSummary": "auto",
754
+ "textVerbosity": "low"
755
+ }
756
+ }
757
+ },
758
+ "gpt-5.3-codex": {
759
+ "variants": {
760
+ "fast": {
761
+ "disabled": true
762
+ },
763
+ "high": {
764
+ "include": ["reasoning.encrypted_content"],
765
+ "reasoningEffort": "high",
766
+ "reasoningSummary": "auto",
767
+ "textVerbosity": "low"
768
+ },
769
+ "medium": {
770
+ "include": ["reasoning.encrypted_content"],
771
+ "reasoningEffort": "medium",
772
+ "reasoningSummary": "auto",
773
+ "textVerbosity": "low"
774
+ },
775
+ "xhigh": {
776
+ "include": ["reasoning.encrypted_content"],
777
+ "reasoningEffort": "xhigh",
778
+ "reasoningSummary": "auto",
779
+ "textVerbosity": "low"
780
+ }
781
+ }
782
+ },
783
+ "gpt-5.4": {
784
+ "attachment": true,
785
+ "limit": {
786
+ "context": 400000,
787
+ "output": 128000
788
+ },
789
+ "modalities": {
790
+ "input": ["text", "image"],
791
+ "output": ["text"]
792
+ },
793
+ "options": {
794
+ "reasoningEffort": "medium",
795
+ "reasoningSummary": "auto",
796
+ "textVerbosity": "medium"
797
+ },
798
+ "reasoning": true,
799
+ "temperature": true,
800
+ "tool_call": true,
801
+ "variants": {
802
+ "high": {
803
+ "include": ["reasoning.encrypted_content"],
804
+ "reasoningEffort": "high",
805
+ "reasoningSummary": "auto"
806
+ },
807
+ "low": {
808
+ "reasoningEffort": "low",
809
+ "reasoningSummary": "auto"
810
+ },
811
+ "medium": {
812
+ "reasoningEffort": "medium",
813
+ "reasoningSummary": "auto"
814
+ }
815
+ }
816
+ }
817
+ }
818
+ },
819
+ "opencode": {
820
+ "models": {
821
+ "big-pickle": {
822
+ "options": {
823
+ "reasoningEffort": "high",
824
+ "temperature": 1,
825
+ "top_k": 40,
826
+ "top_p": 0.95
827
+ },
828
+ "reasoning": true
829
+ }
830
+ }
831
+ },
832
+ "proxypal": {
833
+ "models": {
834
+ "claude-opus-4.6": {
835
+ "limit": {
836
+ "context": 200000,
837
+ "output": 64000
838
+ },
839
+ "modalities": {
840
+ "input": ["text", "image", "pdf"],
841
+ "output": ["text"]
842
+ },
843
+ "name": "Claude Opus 4 6"
844
+ },
845
+ "coder-model": {
846
+ "limit": {
847
+ "context": 262144,
848
+ "output": 65536
849
+ },
850
+ "name": "Coder Model"
851
+ },
852
+ "glm-4.5": {
853
+ "limit": {
854
+ "context": 128000,
855
+ "output": 16384
856
+ },
857
+ "name": "Glm 4 5"
858
+ },
859
+ "glm-4.5-air": {
860
+ "limit": {
861
+ "context": 128000,
862
+ "output": 16384
863
+ },
864
+ "name": "Glm 4 5 Air"
865
+ },
866
+ "glm-4.6": {
867
+ "limit": {
868
+ "context": 128000,
869
+ "output": 16384
870
+ },
871
+ "name": "Glm 4 6"
872
+ },
873
+ "glm-4.7": {
874
+ "limit": {
875
+ "context": 128000,
876
+ "output": 16384
877
+ },
878
+ "name": "Glm 4 7"
879
+ },
880
+ "gpt-5": {
881
+ "limit": {
882
+ "context": 400000,
883
+ "output": 32768
884
+ },
885
+ "modalities": {
886
+ "input": ["text", "image", "pdf"],
887
+ "output": ["text"]
888
+ },
889
+ "name": "Gpt 5",
890
+ "options": {
891
+ "reasoningEffort": "medium"
892
+ },
893
+ "reasoning": true
894
+ },
895
+ "gpt-5-codex": {
896
+ "limit": {
897
+ "context": 400000,
898
+ "output": 32768
899
+ },
900
+ "modalities": {
901
+ "input": ["text", "image", "pdf"],
902
+ "output": ["text"]
903
+ },
904
+ "name": "Gpt 5 Codex",
905
+ "options": {
906
+ "reasoningEffort": "medium"
907
+ },
908
+ "reasoning": true
909
+ },
910
+ "gpt-5-codex-mini": {
911
+ "limit": {
912
+ "context": 400000,
913
+ "output": 32768
914
+ },
915
+ "modalities": {
916
+ "input": ["text", "image", "pdf"],
917
+ "output": ["text"]
918
+ },
919
+ "name": "Gpt 5 Codex Mini",
920
+ "options": {
921
+ "reasoningEffort": "medium"
922
+ },
923
+ "reasoning": true
924
+ },
925
+ "gpt-5.1": {
926
+ "limit": {
927
+ "context": 400000,
928
+ "output": 32768
929
+ },
930
+ "modalities": {
931
+ "input": ["text", "image", "pdf"],
932
+ "output": ["text"]
933
+ },
934
+ "name": "Gpt 5 1",
935
+ "options": {
936
+ "reasoningEffort": "medium"
937
+ },
938
+ "reasoning": true
939
+ },
940
+ "gpt-5.1-codex": {
941
+ "limit": {
942
+ "context": 400000,
943
+ "output": 32768
944
+ },
945
+ "modalities": {
946
+ "input": ["text", "image", "pdf"],
947
+ "output": ["text"]
948
+ },
949
+ "name": "Gpt 5 1 Codex",
950
+ "options": {
951
+ "reasoningEffort": "medium"
952
+ },
953
+ "reasoning": true
954
+ },
955
+ "gpt-5.1-codex-max": {
956
+ "limit": {
957
+ "context": 400000,
958
+ "output": 32768
959
+ },
960
+ "modalities": {
961
+ "input": ["text", "image", "pdf"],
962
+ "output": ["text"]
963
+ },
964
+ "name": "Gpt 5 1 Codex Max",
965
+ "options": {
966
+ "reasoningEffort": "medium"
967
+ },
968
+ "reasoning": true
969
+ },
970
+ "gpt-5.1-codex-mini": {
971
+ "limit": {
972
+ "context": 400000,
973
+ "output": 32768
974
+ },
975
+ "modalities": {
976
+ "input": ["text", "image", "pdf"],
977
+ "output": ["text"]
978
+ },
979
+ "name": "Gpt 5 1 Codex Mini",
980
+ "options": {
981
+ "reasoningEffort": "medium"
982
+ },
983
+ "reasoning": true
984
+ },
985
+ "gpt-5.2": {
986
+ "limit": {
987
+ "context": 400000,
988
+ "output": 32768
989
+ },
990
+ "modalities": {
991
+ "input": ["text", "image", "pdf"],
992
+ "output": ["text"]
993
+ },
994
+ "name": "Gpt 5 2",
995
+ "options": {
996
+ "reasoningEffort": "medium"
997
+ },
998
+ "reasoning": true
999
+ },
1000
+ "gpt-5.2-codex": {
1001
+ "limit": {
1002
+ "context": 400000,
1003
+ "output": 32768
1004
+ },
1005
+ "modalities": {
1006
+ "input": ["text", "image", "pdf"],
1007
+ "output": ["text"]
1008
+ },
1009
+ "name": "Gpt 5 2 Codex",
1010
+ "options": {
1011
+ "reasoningEffort": "medium"
1012
+ },
1013
+ "reasoning": true
1014
+ },
1015
+ "gpt-5.3-codex": {
1016
+ "limit": {
1017
+ "context": 400000,
1018
+ "output": 32768
1019
+ },
1020
+ "modalities": {
1021
+ "input": ["text", "image", "pdf"],
1022
+ "output": ["text"]
1023
+ },
1024
+ "name": "Gpt 5 3 Codex",
1025
+ "options": {
1026
+ "reasoningEffort": "medium"
1027
+ },
1028
+ "reasoning": true
1029
+ },
1030
+ "gpt-5.3-codex-spark": {
1031
+ "limit": {
1032
+ "context": 400000,
1033
+ "output": 32768
1034
+ },
1035
+ "modalities": {
1036
+ "input": ["text", "image", "pdf"],
1037
+ "output": ["text"]
1038
+ },
1039
+ "name": "Gpt 5 3 Codex Spark",
1040
+ "options": {
1041
+ "reasoningEffort": "medium"
1042
+ },
1043
+ "reasoning": true
1044
+ },
1045
+ "gpt-5.4": {
1046
+ "limit": {
1047
+ "context": 400000,
1048
+ "output": 128000
1049
+ },
1050
+ "modalities": {
1051
+ "input": ["text", "image", "pdf"],
1052
+ "output": ["text"]
1053
+ },
1054
+ "name": "Gpt 5 4",
1055
+ "options": {
1056
+ "reasoningEffort": "medium"
1057
+ },
1058
+ "reasoning": true
1059
+ },
1060
+ "gpt-5.4-mini": {
1061
+ "limit": {
1062
+ "context": 400000,
1063
+ "output": 32768
1064
+ },
1065
+ "modalities": {
1066
+ "input": ["text", "image", "pdf"],
1067
+ "output": ["text"]
1068
+ },
1069
+ "name": "Gpt 5 4 Mini",
1070
+ "options": {
1071
+ "reasoningEffort": "medium"
1072
+ },
1073
+ "reasoning": true
1074
+ }
1075
+ },
1076
+ "name": "ProxyPal",
1077
+ "npm": "@ai-sdk/anthropic",
1078
+ "options": {
1079
+ "apiKey": "proxypal-local",
1080
+ "baseURL": "http://127.0.0.1:8317/v1",
1081
+ "includeUsage": true
1082
+ }
1083
+ },
1084
+ "zai-coding-plan": {
1085
+ "models": {
1086
+ "glm-4.6": {
1087
+ "limit": {
1088
+ "context": 128000,
1089
+ "output": 16384
1090
+ },
1091
+ "options": {
1092
+ "temperature": 1,
1093
+ "thinking": {
1094
+ "type": "enabled"
1095
+ }
1096
+ },
1097
+ "reasoning": true,
1098
+ "temperature": true,
1099
+ "tool_call": true
1100
+ },
1101
+ "glm-4.7": {
1102
+ "id": "glm-4.7",
1103
+ "interleaved": true,
1104
+ "limit": {
1105
+ "context": 200000,
1106
+ "output": 128000
1107
+ },
1108
+ "name": "GLM-4.7",
1109
+ "options": {
1110
+ "temperature": 1,
1111
+ "thinking": {
1112
+ "type": "enabled"
1113
+ }
1114
+ },
1115
+ "reasoning": true
1116
+ },
1117
+ "glm-5": {
1118
+ "name": "GLM-5",
1119
+ "options": {
1120
+ "maxOutputTokens": 131072,
1121
+ "reasoningEffort": "high",
1122
+ "reasoningSummary": "true",
1123
+ "temperature": 1,
1124
+ "thinking": {
1125
+ "type": "enabled"
1126
+ },
1127
+ "top_k": 40,
1128
+ "top_p": 0.95
1129
+ },
1130
+ "reasoning": true
1131
+ }
1132
+ },
1133
+ "name": "Z.AI Coding Plan"
1134
+ }
1135
+ },
1136
+ "share": "manual",
1137
+ "small_model": "opencode/gpt-5-nano",
1138
+ "watcher": {
1139
+ "ignore": [
1140
+ "node_modules/**",
1141
+ ".git/**",
1142
+ "dist/**",
1143
+ "build/**",
1144
+ "*.log",
1145
+ ".DS_Store"
1146
+ ]
1147
+ }
1136
1148
  }