opencodekit 0.21.2 → 0.21.3

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