opencodekit 0.18.12 → 0.18.13

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,1560 +1,1933 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "keybinds": {
4
- "leader": "`",
5
- "session_parent": "<leader>up"
6
- },
7
- "agent": {
8
- "build": {
9
- "description": "Primary development agent with full codebase access",
10
- "model": "github-copilot/claude-opus-4.6"
11
- },
12
- "compaction": {
13
- "description": "Session summarizer for context continuity across compactions"
14
- },
15
- "explore": {
16
- "description": "Fast codebase search specialist",
17
- "model": "github-copilot/claude-haiku-4.5"
18
- },
19
- "general": {
20
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
21
- "model": "github-copilot/gpt-5.3-codex"
22
- },
23
- "painter": {
24
- "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",
25
- "model": "proxypal/gemini-3.1-flash-image"
26
- },
27
- "plan": {
28
- "description": "Primary planning agent for architecture and multi-phase execution",
29
- "model": "github-copilot/gpt-5.4"
30
- },
31
- "review": {
32
- "description": "Code review, debugging, and security audit specialist",
33
- "model": "github-copilot/claude-opus-4.6"
34
- },
35
- "scout": {
36
- "description": "External research specialist for library docs and patterns",
37
- "model": "github-copilot/claude-sonnet-4.6"
38
- },
39
- "vision": {
40
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
41
- "model": "github-copilot/gemini-3.1-pro-preview"
42
- }
43
- },
44
- "autoupdate": false,
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/memory/project/roadmap.md",
90
- ".opencode/memory/project/state.md"
91
- ],
92
- "mcp": {
93
- "tilth": {
94
- "command": ["npx", "-y", "tilth", "--mcp", "--edit"],
95
- "enabled": true,
96
- "timeout": 60000,
97
- "type": "local"
98
- },
99
- "stitch": {
100
- "enabled": false,
101
- "headers": {
102
- "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
103
- "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
104
- },
105
- "oauth": false,
106
- "type": "remote",
107
- "url": "https://stitch.googleapis.com/mcp"
108
- }
109
- },
110
- "model": "opencode/minimax-m2.5-free",
111
- "permission": {
112
- "bash": {
113
- "*": "allow",
114
- "cat *": "allow",
115
- "git branch *": "allow",
116
- "git checkout *": "ask",
117
- "git clean *": "ask",
118
- "git commit *": "ask",
119
- "git diff *": "allow",
120
- "git log *": "allow",
121
- "git merge *": "ask",
122
- "git push *": "ask",
123
- "git rebase *": "ask",
124
- "git reset *": "ask",
125
- "git status *": "allow",
126
- "ls *": "allow",
127
- "npm *": "allow",
128
- "npm publish *": "ask",
129
- "npm run db:push*": "ask",
130
- "npm run db:reset*": "deny",
131
- "npx *": "allow",
132
- "rm *": "deny",
133
- "rm -rf *": "deny",
134
- "sudo *": "deny"
135
- },
136
- "doom_loop": "ask",
137
- "edit": "allow",
138
- "external_directory": "ask",
139
- "question": "allow",
140
- "read": {
141
- "*": "allow",
142
- "*.env": "deny",
143
- "*.env.*": "deny",
144
- "*.env.example": "allow",
145
- "*.key": "deny",
146
- "*.pem": "deny",
147
- "*credentials*": "deny",
148
- "*password*": "deny",
149
- "*secret*": "deny",
150
- "*token*": "deny"
151
- }
152
- },
153
- "plugin": [
154
- "@tarquinen/opencode-dcp@latest",
155
- "@franlol/opencode-md-table-formatter@0.0.3",
156
- "openslimedit@latest"
157
- ],
158
- "provider": {
159
- "github-copilot": {
160
- "models": {
161
- "claude-haiku-4.5": {
162
- "attachment": true,
163
- "limit": {
164
- "context": 200000,
165
- "output": 64000
166
- },
167
- "options": {
168
- "thinking_budget": 10000,
169
- "type": "enabled"
170
- },
171
- "reasoning": true,
172
- "temperature": true,
173
- "tool_call": true,
174
- "variants": {
175
- "high": {
176
- "options": {
177
- "thinking_budget": 8000,
178
- "type": "enabled"
179
- }
180
- },
181
- "max": {
182
- "options": {
183
- "thinking_budget": 16000,
184
- "type": "enabled"
185
- }
186
- }
187
- }
188
- },
189
- "claude-opus-4.5": {
190
- "attachment": true,
191
- "limit": {
192
- "context": 128000,
193
- "output": 64000
194
- },
195
- "options": {
196
- "thinking_budget": 10000
197
- },
198
- "reasoning": true,
199
- "temperature": true,
200
- "tool_call": true,
201
- "variants": {
202
- "high": {
203
- "options": {
204
- "thinking_budget": 8000
205
- }
206
- },
207
- "max": {
208
- "options": {
209
- "thinking_budget": 16000
210
- }
211
- }
212
- }
213
- },
214
- "claude-opus-4.6": {
215
- "attachment": true,
216
- "limit": {
217
- "context": 128000,
218
- "output": 64000
219
- },
220
- "options": {
221
- "thinking": {
222
- "budget_tokens": 16000,
223
- "type": "enabled"
224
- }
225
- },
226
- "reasoning": true,
227
- "temperature": true,
228
- "tool_call": true,
229
- "variants": {
230
- "adaptive": {
231
- "options": {
232
- "max_tokens": 16000,
233
- "output_config": {
234
- "effort": "max"
235
- },
236
- "thinking": {
237
- "type": "adaptive"
238
- }
239
- }
240
- },
241
- "high": {
242
- "options": {
243
- "thinking": {
244
- "budget_tokens": 24000,
245
- "type": "enabled"
246
- }
247
- }
248
- },
249
- "max": {
250
- "options": {
251
- "thinking": {
252
- "budget_tokens": 32000,
253
- "type": "enabled"
254
- }
255
- }
256
- }
257
- }
258
- },
259
- "claude-sonnet-4.5": {
260
- "attachment": true,
261
- "limit": {
262
- "context": 128000,
263
- "output": 64000
264
- },
265
- "options": {
266
- "thinking_budget": 10000
267
- },
268
- "reasoning": true,
269
- "temperature": true,
270
- "tool_call": true,
271
- "variants": {
272
- "high": {
273
- "options": {
274
- "thinking_budget": 8000
275
- }
276
- },
277
- "max": {
278
- "options": {
279
- "thinking_budget": 16000
280
- }
281
- }
282
- }
283
- },
284
- "claude-sonnet-4.6": {
285
- "attachment": true,
286
- "limit": {
287
- "context": 128000,
288
- "output": 64000
289
- },
290
- "options": {
291
- "thinking": {
292
- "budget_tokens": 16000,
293
- "type": "enabled"
294
- }
295
- },
296
- "reasoning": true,
297
- "temperature": true,
298
- "tool_call": true,
299
- "variants": {
300
- "adaptive": {
301
- "options": {
302
- "max_tokens": 16000,
303
- "output_config": {
304
- "effort": "max"
305
- },
306
- "thinking": {
307
- "type": "adaptive"
308
- }
309
- }
310
- },
311
- "high": {
312
- "options": {
313
- "thinking": {
314
- "budget_tokens": 16000,
315
- "type": "enabled"
316
- }
317
- }
318
- },
319
- "max": {
320
- "options": {
321
- "thinking": {
322
- "budget_tokens": 32000,
323
- "type": "enabled"
324
- }
325
- }
326
- }
327
- }
328
- },
329
- "gpt-5.2": {
330
- "attachment": true,
331
- "limit": {
332
- "context": 192000,
333
- "output": 128000
334
- },
335
- "options": {
336
- "reasoningEffort": "medium",
337
- "reasoningSummary": "auto",
338
- "textVerbosity": "medium"
339
- },
340
- "reasoning": true,
341
- "temperature": true,
342
- "tool_call": true,
343
- "variants": {
344
- "high": {
345
- "include": ["reasoning.encrypted_content"],
346
- "reasoningEffort": "high",
347
- "reasoningSummary": "auto"
348
- },
349
- "low": {
350
- "reasoningEffort": "low",
351
- "reasoningSummary": "auto"
352
- },
353
- "medium": {
354
- "reasoningEffort": "medium",
355
- "reasoningSummary": "auto"
356
- }
357
- }
358
- },
359
- "gpt-5.4": {
360
- "modalities": {
361
- "input": ["text", "image"],
362
- "output": ["text"]
363
- },
364
- "attachment": true,
365
- "limit": {
366
- "context": 400000,
367
- "output": 128000
368
- },
369
- "options": {
370
- "reasoningEffort": "medium",
371
- "reasoningSummary": "auto",
372
- "textVerbosity": "medium"
373
- },
374
- "reasoning": true,
375
- "temperature": true,
376
- "tool_call": true,
377
- "variants": {
378
- "high": {
379
- "include": ["reasoning.encrypted_content"],
380
- "reasoningEffort": "high",
381
- "reasoningSummary": "auto"
382
- },
383
- "low": {
384
- "reasoningEffort": "low",
385
- "reasoningSummary": "auto"
386
- },
387
- "medium": {
388
- "reasoningEffort": "medium",
389
- "reasoningSummary": "auto"
390
- }
391
- }
392
- },
393
- "gpt-5.2-codex": {
394
- "attachment": true,
395
- "limit": {
396
- "context": 400000,
397
- "output": 128000
398
- },
399
- "options": {
400
- "reasoningEffort": "medium",
401
- "reasoningSummary": "auto",
402
- "textVerbosity": "medium"
403
- },
404
- "reasoning": true,
405
- "temperature": true,
406
- "tool_call": true,
407
- "variants": {
408
- "fast": {
409
- "disabled": true
410
- },
411
- "high": {
412
- "include": ["reasoning.encrypted_content"],
413
- "reasoningEffort": "high",
414
- "reasoningSummary": "auto",
415
- "textVerbosity": "medium"
416
- },
417
- "low": {
418
- "reasoningEffort": "low",
419
- "reasoningSummary": "auto"
420
- },
421
- "medium": {
422
- "reasoningEffort": "medium",
423
- "reasoningSummary": "auto",
424
- "textVerbosity": "medium"
425
- }
426
- }
427
- },
428
- "gpt-5.3-codex": {
429
- "name": "Gpt 5 3 Codex",
430
- "attachment": true,
431
- "limit": {
432
- "context": 400000,
433
- "output": 128000
434
- },
435
- "options": {
436
- "reasoningEffort": "medium",
437
- "reasoningSummary": "auto",
438
- "textVerbosity": "medium"
439
- },
440
- "reasoning": true,
441
- "temperature": true,
442
- "tool_call": true,
443
- "variants": {
444
- "fast": {
445
- "disabled": true
446
- },
447
- "high": {
448
- "include": ["reasoning.encrypted_content"],
449
- "reasoningEffort": "high",
450
- "reasoningSummary": "auto",
451
- "textVerbosity": "medium"
452
- },
453
- "low": {
454
- "reasoningEffort": "low",
455
- "reasoningSummary": "auto"
456
- },
457
- "medium": {
458
- "reasoningEffort": "medium",
459
- "reasoningSummary": "auto",
460
- "textVerbosity": "medium"
461
- }
462
- }
463
- },
464
- "claude-sonnet-4": {
465
- "attachment": true,
466
- "limit": {
467
- "context": 200000,
468
- "output": 64000
469
- },
470
- "options": {
471
- "thinking_budget": 10000
472
- },
473
- "reasoning": true,
474
- "temperature": true,
475
- "tool_call": true
476
- },
477
- "gemini-2.5-pro": {
478
- "attachment": true,
479
- "limit": {
480
- "context": 173000,
481
- "output": 64000
482
- },
483
- "reasoning": true,
484
- "temperature": true,
485
- "tool_call": true
486
- },
487
- "gemini-3-flash-preview": {
488
- "attachment": true,
489
- "limit": {
490
- "context": 173000,
491
- "output": 64000
492
- },
493
- "reasoning": true,
494
- "temperature": true,
495
- "tool_call": true
496
- },
497
- "gemini-3-pro-preview": {
498
- "attachment": true,
499
- "limit": {
500
- "context": 173000,
501
- "output": 64000
502
- },
503
- "reasoning": true,
504
- "temperature": true,
505
- "tool_call": true
506
- },
507
- "gemini-3.1-pro-preview": {
508
- "attachment": true,
509
- "limit": {
510
- "context": 173000,
511
- "output": 64000
512
- },
513
- "reasoning": true,
514
- "temperature": true,
515
- "tool_call": true
516
- },
517
- "gpt-5.1": {
518
- "attachment": true,
519
- "limit": {
520
- "context": 192000,
521
- "output": 128000
522
- },
523
- "options": {
524
- "reasoningEffort": "medium",
525
- "reasoningSummary": "auto"
526
- },
527
- "reasoning": true,
528
- "temperature": true,
529
- "tool_call": true
530
- },
531
- "gpt-5.1-codex": {
532
- "attachment": true,
533
- "limit": {
534
- "context": 256000,
535
- "output": 128000
536
- },
537
- "options": {
538
- "reasoningEffort": "medium",
539
- "reasoningSummary": "auto"
540
- },
541
- "reasoning": true,
542
- "temperature": true,
543
- "tool_call": true
544
- },
545
- "gpt-5.1-codex-max": {
546
- "attachment": true,
547
- "limit": {
548
- "context": 256000,
549
- "output": 128000
550
- },
551
- "options": {
552
- "reasoningEffort": "medium",
553
- "reasoningSummary": "auto"
554
- },
555
- "reasoning": true,
556
- "temperature": true,
557
- "tool_call": true
558
- },
559
- "gpt-5.1-codex-mini": {
560
- "attachment": true,
561
- "limit": {
562
- "context": 256000,
563
- "output": 128000
564
- },
565
- "options": {
566
- "reasoningEffort": "medium",
567
- "reasoningSummary": "auto"
568
- },
569
- "reasoning": true,
570
- "temperature": true,
571
- "tool_call": true
572
- },
573
- "grok-code-fast": {
574
- "attachment": true,
575
- "limit": {
576
- "context": 173000,
577
- "output": 64000
578
- },
579
- "reasoning": true,
580
- "temperature": true,
581
- "tool_call": true
582
- },
583
- "grok-code-fast-1": {
584
- "attachment": true,
585
- "limit": {
586
- "context": 173000,
587
- "output": 64000
588
- },
589
- "reasoning": true,
590
- "temperature": true,
591
- "tool_call": true
592
- }
593
- },
594
- "options": {
595
- "timeout": 600000
596
- }
597
- },
598
- "kimi-for-coding": {
599
- "models": {
600
- "k2p5": {
601
- "limit": {
602
- "context": 262144,
603
- "output": 32768
604
- },
605
- "options": {
606
- "interleaved": {
607
- "field": "reasoning_content"
608
- },
609
- "thinking": {
610
- "budgetTokens": 8192,
611
- "reasoning_effort": "high",
612
- "type": "enabled"
613
- }
614
- },
615
- "reasoning": true,
616
- "temperature": true,
617
- "tool_call": true,
618
- "variants": {
619
- "high": {
620
- "interleaved": {
621
- "field": "reasoning_content"
622
- },
623
- "options": {
624
- "reasoning_effort": "high",
625
- "thinkingBudget": 16384,
626
- "type": "enabled"
627
- }
628
- },
629
- "max": {
630
- "interleaved": {
631
- "field": "reasoning_content"
632
- },
633
- "options": {
634
- "reasoning_effort": "high",
635
- "thinkingBudget": 32768,
636
- "type": "enabled"
637
- }
638
- }
639
- }
640
- }
641
- }
642
- },
643
- "modal": {
644
- "models": {
645
- "zai-org/GLM-5-FP8": {
646
- "modalities": {
647
- "input": ["text", "image", "pdf"],
648
- "output": ["text"]
649
- },
650
- "name": "GLM-5",
651
- "options": {
652
- "maxOutputTokens": 131072,
653
- "reasoningEffort": "high",
654
- "reasoningSummary": "true",
655
- "temperature": 1,
656
- "thinking": {
657
- "type": "enabled"
658
- },
659
- "top_k": 40,
660
- "top_p": 0.95
661
- },
662
- "reasoning": true
663
- }
664
- },
665
- "name": "Modal",
666
- "options": {
667
- "apiKey": "{env:MODAL_API_KEY}",
668
- "baseURL": "https://api.us-west-2.modal.direct/v1"
669
- }
670
- },
671
- "openai": {
672
- "models": {
673
- "gpt-5.2": {
674
- "variants": {
675
- "fast": {
676
- "disabled": true
677
- },
678
- "high": {
679
- "include": ["reasoning.encrypted_content"],
680
- "reasoningEffort": "high",
681
- "reasoningSummary": "auto",
682
- "textVerbosity": "low"
683
- },
684
- "medium": {
685
- "include": ["reasoning.encrypted_content"],
686
- "reasoningEffort": "medium",
687
- "reasoningSummary": "auto",
688
- "textVerbosity": "low"
689
- }
690
- }
691
- },
692
- "gpt-5.4": {
693
- "modalities": {
694
- "input": ["text", "image"],
695
- "output": ["text"]
696
- },
697
- "attachment": true,
698
- "limit": {
699
- "context": 400000,
700
- "output": 128000
701
- },
702
- "options": {
703
- "reasoningEffort": "medium",
704
- "reasoningSummary": "auto",
705
- "textVerbosity": "medium"
706
- },
707
- "reasoning": true,
708
- "temperature": true,
709
- "tool_call": true,
710
- "variants": {
711
- "high": {
712
- "include": ["reasoning.encrypted_content"],
713
- "reasoningEffort": "high",
714
- "reasoningSummary": "auto"
715
- },
716
- "low": {
717
- "reasoningEffort": "low",
718
- "reasoningSummary": "auto"
719
- },
720
- "medium": {
721
- "reasoningEffort": "medium",
722
- "reasoningSummary": "auto"
723
- }
724
- }
725
- },
726
- "gpt-5.2-codex": {
727
- "variants": {
728
- "fast": {
729
- "disabled": true
730
- },
731
- "high": {
732
- "include": ["reasoning.encrypted_content"],
733
- "reasoningEffort": "high",
734
- "reasoningSummary": "auto",
735
- "textVerbosity": "low"
736
- },
737
- "medium": {
738
- "include": ["reasoning.encrypted_content"],
739
- "reasoningEffort": "medium",
740
- "reasoningSummary": "auto",
741
- "textVerbosity": "low"
742
- },
743
- "xhigh": {
744
- "include": ["reasoning.encrypted_content"],
745
- "reasoningEffort": "xhigh",
746
- "reasoningSummary": "auto",
747
- "textVerbosity": "low"
748
- }
749
- }
750
- },
751
- "gpt-5.3-codex": {
752
- "variants": {
753
- "fast": {
754
- "disabled": true
755
- },
756
- "high": {
757
- "include": ["reasoning.encrypted_content"],
758
- "reasoningEffort": "high",
759
- "reasoningSummary": "auto",
760
- "textVerbosity": "low"
761
- },
762
- "medium": {
763
- "include": ["reasoning.encrypted_content"],
764
- "reasoningEffort": "medium",
765
- "reasoningSummary": "auto",
766
- "textVerbosity": "low"
767
- },
768
- "xhigh": {
769
- "include": ["reasoning.encrypted_content"],
770
- "reasoningEffort": "xhigh",
771
- "reasoningSummary": "auto",
772
- "textVerbosity": "low"
773
- }
774
- }
775
- }
776
- }
777
- },
778
- "opencode": {
779
- "models": {
780
- "big-pickle": {
781
- "options": {
782
- "reasoningEffort": "high",
783
- "temperature": 1,
784
- "top_k": 40,
785
- "top_p": 0.95
786
- },
787
- "reasoning": true
788
- }
789
- }
790
- },
791
- "proxypal": {
792
- "models": {
793
- "claude-haiku-4-5": {
794
- "limit": {
795
- "context": 200000,
796
- "output": 64000
797
- },
798
- "modalities": {
799
- "input": ["text", "image", "pdf"],
800
- "output": ["text"]
801
- },
802
- "name": "Claude Haiku 4 5"
803
- },
804
- "claude-haiku-4-5-20251001": {
805
- "limit": {
806
- "context": 200000,
807
- "output": 64000
808
- },
809
- "modalities": {
810
- "input": ["text", "image", "pdf"],
811
- "output": ["text"]
812
- },
813
- "name": "Claude Haiku 4 5 20251001"
814
- },
815
- "claude-opus-4-6-thinking": {
816
- "limit": {
817
- "context": 200000,
818
- "output": 64000
819
- },
820
- "modalities": {
821
- "input": ["text", "image", "pdf"],
822
- "output": ["text"]
823
- },
824
- "name": "Claude Opus 4 6 Thinking",
825
- "options": {
826
- "thinking": {
827
- "budgetTokens": 8192,
828
- "type": "enabled"
829
- }
830
- },
831
- "reasoning": true,
832
- "variants": {
833
- "low": {
834
- "thinkingConfig": {
835
- "thinkingBudget": 8192
836
- }
837
- },
838
- "max": {
839
- "thinkingConfig": {
840
- "thinkingBudget": 32768
841
- }
842
- }
843
- }
844
- },
845
- "claude-sonnet-4": {
846
- "limit": {
847
- "context": 200000,
848
- "output": 64000
849
- },
850
- "modalities": {
851
- "input": ["text", "image", "pdf"],
852
- "output": ["text"]
853
- },
854
- "name": "Claude Sonnet 4"
855
- },
856
- "claude-sonnet-4-20250514": {
857
- "limit": {
858
- "context": 200000,
859
- "output": 64000
860
- },
861
- "modalities": {
862
- "input": ["text", "image", "pdf"],
863
- "output": ["text"]
864
- },
865
- "name": "Claude Sonnet 4 20250514"
866
- },
867
- "claude-sonnet-4-5": {
868
- "limit": {
869
- "context": 200000,
870
- "output": 64000
871
- },
872
- "modalities": {
873
- "input": ["text", "image", "pdf"],
874
- "output": ["text"]
875
- },
876
- "name": "Claude Sonnet 4 5"
877
- },
878
- "claude-sonnet-4-5-20250929": {
879
- "limit": {
880
- "context": 200000,
881
- "output": 64000
882
- },
883
- "modalities": {
884
- "input": ["text", "image", "pdf"],
885
- "output": ["text"]
886
- },
887
- "name": "Claude Sonnet 4 5 20250929"
888
- },
889
- "claude-sonnet-4-6": {
890
- "limit": {
891
- "context": 200000,
892
- "output": 64000
893
- },
894
- "modalities": {
895
- "input": ["text", "image", "pdf"],
896
- "output": ["text"]
897
- },
898
- "name": "Claude Sonnet 4 6"
899
- },
900
- "gemini-2.5-flash": {
901
- "limit": {
902
- "context": 1000000,
903
- "output": 65536
904
- },
905
- "modalities": {
906
- "input": ["text", "image", "pdf"],
907
- "output": ["text"]
908
- },
909
- "name": "Gemini 2 5 Flash"
910
- },
911
- "gemini-2.5-flash-lite": {
912
- "limit": {
913
- "context": 1000000,
914
- "output": 65536
915
- },
916
- "modalities": {
917
- "input": ["text", "image", "pdf"],
918
- "output": ["text"]
919
- },
920
- "name": "Gemini 2 5 Flash Lite"
921
- },
922
- "gemini-2.5-pro": {
923
- "limit": {
924
- "context": 1000000,
925
- "output": 65536
926
- },
927
- "modalities": {
928
- "input": ["text", "image", "pdf"],
929
- "output": ["text"]
930
- },
931
- "name": "Gemini 2 5 Pro"
932
- },
933
- "gemini-3-flash": {
934
- "limit": {
935
- "context": 1000000,
936
- "output": 65536
937
- },
938
- "modalities": {
939
- "input": ["text", "image", "pdf"],
940
- "output": ["text"]
941
- },
942
- "name": "Gemini 3 Flash",
943
- "options": {
944
- "generationConfig": {
945
- "thinkingConfig": {
946
- "includeThoughts": true,
947
- "thinkingLevel": "medium"
948
- }
949
- }
950
- },
951
- "reasoning": true,
952
- "variants": {
953
- "high": {
954
- "thinkingLevel": "high"
955
- },
956
- "low": {
957
- "thinkingLevel": "low"
958
- },
959
- "medium": {
960
- "thinkingLevel": "medium"
961
- }
962
- }
963
- },
964
- "gemini-3-flash-preview": {
965
- "limit": {
966
- "context": 1000000,
967
- "output": 65536
968
- },
969
- "modalities": {
970
- "input": ["text", "image", "pdf"],
971
- "output": ["text"]
972
- },
973
- "name": "Gemini 3 Flash Preview",
974
- "options": {
975
- "generationConfig": {
976
- "thinkingConfig": {
977
- "includeThoughts": true,
978
- "thinkingLevel": "medium"
979
- }
980
- }
981
- },
982
- "reasoning": true,
983
- "variants": {
984
- "high": {
985
- "thinkingLevel": "high"
986
- },
987
- "low": {
988
- "thinkingLevel": "low"
989
- },
990
- "medium": {
991
- "thinkingLevel": "medium"
992
- }
993
- }
994
- },
995
- "gemini-3-pro-high": {
996
- "limit": {
997
- "context": 1000000,
998
- "output": 65536
999
- },
1000
- "modalities": {
1001
- "input": ["text", "image", "pdf"],
1002
- "output": ["text"]
1003
- },
1004
- "name": "Gemini 3 Pro High",
1005
- "options": {
1006
- "generationConfig": {
1007
- "thinkingConfig": {
1008
- "includeThoughts": true,
1009
- "thinkingLevel": "medium"
1010
- }
1011
- }
1012
- },
1013
- "reasoning": true,
1014
- "variants": {
1015
- "high": {
1016
- "thinkingLevel": "high"
1017
- },
1018
- "low": {
1019
- "thinkingLevel": "low"
1020
- },
1021
- "medium": {
1022
- "thinkingLevel": "medium"
1023
- }
1024
- }
1025
- },
1026
- "gemini-3-pro-preview": {
1027
- "limit": {
1028
- "context": 1000000,
1029
- "output": 65536
1030
- },
1031
- "modalities": {
1032
- "input": ["text", "image", "pdf"],
1033
- "output": ["text"]
1034
- },
1035
- "name": "Gemini 3 Pro Preview",
1036
- "options": {
1037
- "generationConfig": {
1038
- "thinkingConfig": {
1039
- "includeThoughts": true,
1040
- "thinkingLevel": "medium"
1041
- }
1042
- }
1043
- },
1044
- "reasoning": true,
1045
- "variants": {
1046
- "high": {
1047
- "thinkingLevel": "high"
1048
- },
1049
- "low": {
1050
- "thinkingLevel": "low"
1051
- },
1052
- "medium": {
1053
- "thinkingLevel": "medium"
1054
- }
1055
- }
1056
- },
1057
- "gemini-3.1-flash-image": {
1058
- "limit": {
1059
- "context": 1000000,
1060
- "output": 65536
1061
- },
1062
- "name": "Gemini 3 1 Flash Image"
1063
- },
1064
- "gemini-3.1-pro-high": {
1065
- "limit": {
1066
- "context": 1000000,
1067
- "output": 65536
1068
- },
1069
- "modalities": {
1070
- "input": ["text", "image", "pdf"],
1071
- "output": ["text"]
1072
- },
1073
- "name": "Gemini 3 1 Pro High",
1074
- "options": {
1075
- "generationConfig": {
1076
- "thinkingConfig": {
1077
- "includeThoughts": true,
1078
- "thinkingLevel": "medium"
1079
- }
1080
- }
1081
- },
1082
- "reasoning": true,
1083
- "variants": {
1084
- "high": {
1085
- "thinkingLevel": "high"
1086
- },
1087
- "low": {
1088
- "thinkingLevel": "low"
1089
- },
1090
- "medium": {
1091
- "thinkingLevel": "medium"
1092
- }
1093
- }
1094
- },
1095
- "gemini-3.1-pro-low": {
1096
- "limit": {
1097
- "context": 1000000,
1098
- "output": 65536
1099
- },
1100
- "modalities": {
1101
- "input": ["text", "image", "pdf"],
1102
- "output": ["text"]
1103
- },
1104
- "name": "Gemini 3 1 Pro Low",
1105
- "options": {
1106
- "generationConfig": {
1107
- "thinkingConfig": {
1108
- "includeThoughts": true,
1109
- "thinkingLevel": "medium"
1110
- }
1111
- }
1112
- },
1113
- "reasoning": true,
1114
- "variants": {
1115
- "high": {
1116
- "thinkingLevel": "high"
1117
- },
1118
- "low": {
1119
- "thinkingLevel": "low"
1120
- },
1121
- "medium": {
1122
- "thinkingLevel": "medium"
1123
- }
1124
- }
1125
- },
1126
- "gemini-3.1-pro-preview": {
1127
- "limit": {
1128
- "context": 1000000,
1129
- "output": 65536
1130
- },
1131
- "modalities": {
1132
- "input": ["text", "image", "pdf"],
1133
- "output": ["text"]
1134
- },
1135
- "name": "Gemini 3 1 Pro Preview",
1136
- "options": {
1137
- "generationConfig": {
1138
- "thinkingConfig": {
1139
- "includeThoughts": true,
1140
- "thinkingLevel": "medium"
1141
- }
1142
- }
1143
- },
1144
- "reasoning": true,
1145
- "variants": {
1146
- "high": {
1147
- "thinkingLevel": "high"
1148
- },
1149
- "low": {
1150
- "thinkingLevel": "low"
1151
- },
1152
- "medium": {
1153
- "thinkingLevel": "medium"
1154
- }
1155
- }
1156
- },
1157
- "glm-4.5": {
1158
- "limit": {
1159
- "context": 128000,
1160
- "output": 16384
1161
- },
1162
- "name": "Glm 4 5"
1163
- },
1164
- "glm-4.5-air": {
1165
- "limit": {
1166
- "context": 128000,
1167
- "output": 16384
1168
- },
1169
- "name": "Glm 4 5 Air"
1170
- },
1171
- "glm-4.6": {
1172
- "limit": {
1173
- "context": 128000,
1174
- "output": 16384
1175
- },
1176
- "name": "Glm 4 6"
1177
- },
1178
- "glm-4.7": {
1179
- "limit": {
1180
- "context": 128000,
1181
- "output": 16384
1182
- },
1183
- "name": "Glm 4 7"
1184
- },
1185
- "gpt-5": {
1186
- "limit": {
1187
- "context": 400000,
1188
- "output": 32768
1189
- },
1190
- "modalities": {
1191
- "input": ["text", "image", "pdf"],
1192
- "output": ["text"]
1193
- },
1194
- "name": "Gpt 5",
1195
- "options": {
1196
- "reasoningEffort": "medium"
1197
- },
1198
- "reasoning": true
1199
- },
1200
- "gpt-5-codex": {
1201
- "limit": {
1202
- "context": 400000,
1203
- "output": 32768
1204
- },
1205
- "modalities": {
1206
- "input": ["text", "image", "pdf"],
1207
- "output": ["text"]
1208
- },
1209
- "name": "Gpt 5 Codex",
1210
- "options": {
1211
- "reasoningEffort": "medium"
1212
- },
1213
- "reasoning": true
1214
- },
1215
- "gpt-5-codex-mini": {
1216
- "limit": {
1217
- "context": 400000,
1218
- "output": 32768
1219
- },
1220
- "modalities": {
1221
- "input": ["text", "image", "pdf"],
1222
- "output": ["text"]
1223
- },
1224
- "name": "Gpt 5 Codex Mini",
1225
- "options": {
1226
- "reasoningEffort": "medium"
1227
- },
1228
- "reasoning": true
1229
- },
1230
- "gpt-5.1": {
1231
- "limit": {
1232
- "context": 400000,
1233
- "output": 32768
1234
- },
1235
- "modalities": {
1236
- "input": ["text", "image", "pdf"],
1237
- "output": ["text"]
1238
- },
1239
- "name": "Gpt 5 1",
1240
- "options": {
1241
- "reasoningEffort": "medium"
1242
- },
1243
- "reasoning": true
1244
- },
1245
- "gpt-5.1-codex": {
1246
- "limit": {
1247
- "context": 400000,
1248
- "output": 32768
1249
- },
1250
- "modalities": {
1251
- "input": ["text", "image", "pdf"],
1252
- "output": ["text"]
1253
- },
1254
- "name": "Gpt 5 1 Codex",
1255
- "options": {
1256
- "reasoningEffort": "medium"
1257
- },
1258
- "reasoning": true
1259
- },
1260
- "gpt-5.1-codex-max": {
1261
- "limit": {
1262
- "context": 400000,
1263
- "output": 32768
1264
- },
1265
- "modalities": {
1266
- "input": ["text", "image", "pdf"],
1267
- "output": ["text"]
1268
- },
1269
- "name": "Gpt 5 1 Codex Max",
1270
- "options": {
1271
- "reasoningEffort": "medium"
1272
- },
1273
- "reasoning": true
1274
- },
1275
- "gpt-5.1-codex-mini": {
1276
- "limit": {
1277
- "context": 400000,
1278
- "output": 32768
1279
- },
1280
- "modalities": {
1281
- "input": ["text", "image", "pdf"],
1282
- "output": ["text"]
1283
- },
1284
- "name": "Gpt 5 1 Codex Mini",
1285
- "options": {
1286
- "reasoningEffort": "medium"
1287
- },
1288
- "reasoning": true
1289
- },
1290
- "gpt-5.2": {
1291
- "limit": {
1292
- "context": 400000,
1293
- "output": 32768
1294
- },
1295
- "modalities": {
1296
- "input": ["text", "image", "pdf"],
1297
- "output": ["text"]
1298
- },
1299
- "name": "Gpt 5 2",
1300
- "options": {
1301
- "reasoningEffort": "medium"
1302
- },
1303
- "reasoning": true
1304
- },
1305
- "gpt-5.2-codex": {
1306
- "limit": {
1307
- "context": 400000,
1308
- "output": 32768
1309
- },
1310
- "modalities": {
1311
- "input": ["text", "image", "pdf"],
1312
- "output": ["text"]
1313
- },
1314
- "name": "Gpt 5 2 Codex",
1315
- "options": {
1316
- "reasoningEffort": "medium"
1317
- },
1318
- "reasoning": true
1319
- },
1320
- "gpt-5.3-codex": {
1321
- "limit": {
1322
- "context": 400000,
1323
- "output": 32768
1324
- },
1325
- "modalities": {
1326
- "input": ["text", "image", "pdf"],
1327
- "output": ["text"]
1328
- },
1329
- "name": "Gpt 5 3 Codex",
1330
- "options": {
1331
- "reasoningEffort": "medium"
1332
- },
1333
- "reasoning": true
1334
- },
1335
- "gpt-5.3-codex-spark": {
1336
- "limit": {
1337
- "context": 400000,
1338
- "output": 32768
1339
- },
1340
- "modalities": {
1341
- "input": ["text", "image", "pdf"],
1342
- "output": ["text"]
1343
- },
1344
- "name": "Gpt 5 3 Codex Spark",
1345
- "options": {
1346
- "reasoningEffort": "medium"
1347
- },
1348
- "reasoning": true
1349
- },
1350
- "gpt-oss-120b-medium": {
1351
- "limit": {
1352
- "context": 128000,
1353
- "output": 16384
1354
- },
1355
- "name": "Gpt Oss 120b Medium"
1356
- },
1357
- "kimi-k2": {
1358
- "limit": {
1359
- "context": 128000,
1360
- "output": 16384
1361
- },
1362
- "name": "Kimi K2"
1363
- },
1364
- "kimi-k2-thinking": {
1365
- "limit": {
1366
- "context": 128000,
1367
- "output": 16384
1368
- },
1369
- "name": "Kimi K2 Thinking",
1370
- "options": {
1371
- "reasoningEffort": "high"
1372
- },
1373
- "reasoning": true
1374
- },
1375
- "kimi-k2.5": {
1376
- "limit": {
1377
- "context": 128000,
1378
- "output": 16384
1379
- },
1380
- "name": "Kimi K2 5"
1381
- },
1382
- "kiro-auto": {
1383
- "limit": {
1384
- "context": 128000,
1385
- "output": 16384
1386
- },
1387
- "name": "Kiro Auto"
1388
- },
1389
- "kiro-claude-haiku-4-5": {
1390
- "limit": {
1391
- "context": 200000,
1392
- "output": 64000
1393
- },
1394
- "name": "Kiro Claude Haiku 4 5"
1395
- },
1396
- "kiro-claude-haiku-4-5-agentic": {
1397
- "limit": {
1398
- "context": 200000,
1399
- "output": 64000
1400
- },
1401
- "name": "Kiro Claude Haiku 4 5 Agentic"
1402
- },
1403
- "kiro-claude-sonnet-4": {
1404
- "limit": {
1405
- "context": 200000,
1406
- "output": 64000
1407
- },
1408
- "name": "Kiro Claude Sonnet 4"
1409
- },
1410
- "kiro-claude-sonnet-4-5": {
1411
- "limit": {
1412
- "context": 200000,
1413
- "output": 64000
1414
- },
1415
- "name": "Kiro Claude Sonnet 4 5"
1416
- },
1417
- "kiro-claude-sonnet-4-5-agentic": {
1418
- "limit": {
1419
- "context": 200000,
1420
- "output": 64000
1421
- },
1422
- "name": "Kiro Claude Sonnet 4 5 Agentic"
1423
- },
1424
- "kiro-claude-sonnet-4-agentic": {
1425
- "limit": {
1426
- "context": 200000,
1427
- "output": 64000
1428
- },
1429
- "name": "Kiro Claude Sonnet 4 Agentic"
1430
- },
1431
- "kiro-deepseek-3-2": {
1432
- "limit": {
1433
- "context": 128000,
1434
- "output": 8192
1435
- },
1436
- "name": "Kiro Deepseek 3 2"
1437
- },
1438
- "kiro-deepseek-3-2-agentic": {
1439
- "limit": {
1440
- "context": 128000,
1441
- "output": 8192
1442
- },
1443
- "name": "Kiro Deepseek 3 2 Agentic"
1444
- },
1445
- "kiro-minimax-m2-1": {
1446
- "limit": {
1447
- "context": 128000,
1448
- "output": 16384
1449
- },
1450
- "name": "Kiro Minimax M2 1"
1451
- },
1452
- "kiro-minimax-m2-1-agentic": {
1453
- "limit": {
1454
- "context": 128000,
1455
- "output": 16384
1456
- },
1457
- "name": "Kiro Minimax M2 1 Agentic"
1458
- },
1459
- "kiro-qwen3-coder-next": {
1460
- "limit": {
1461
- "context": 1000000,
1462
- "output": 65536
1463
- },
1464
- "name": "Kiro Qwen3 Coder Next"
1465
- },
1466
- "kiro-qwen3-coder-next-agentic": {
1467
- "limit": {
1468
- "context": 1000000,
1469
- "output": 65536
1470
- },
1471
- "name": "Kiro Qwen3 Coder Next Agentic"
1472
- },
1473
- "tab_flash_lite_preview": {
1474
- "limit": {
1475
- "context": 128000,
1476
- "output": 16384
1477
- },
1478
- "name": "Tab_flash_lite_preview"
1479
- },
1480
- "tab_jump_flash_lite_preview": {
1481
- "limit": {
1482
- "context": 128000,
1483
- "output": 16384
1484
- },
1485
- "name": "Tab_jump_flash_lite_preview"
1486
- }
1487
- },
1488
- "name": "ProxyPal",
1489
- "npm": "@ai-sdk/anthropic",
1490
- "options": {
1491
- "apiKey": "proxypal-local",
1492
- "baseURL": "http://127.0.0.1:8317/v1",
1493
- "includeUsage": true
1494
- }
1495
- },
1496
- "zai-coding-plan": {
1497
- "models": {
1498
- "glm-4.6": {
1499
- "limit": {
1500
- "context": 128000,
1501
- "output": 16384
1502
- },
1503
- "options": {
1504
- "temperature": 1,
1505
- "thinking": {
1506
- "type": "enabled"
1507
- }
1508
- },
1509
- "reasoning": true,
1510
- "temperature": true,
1511
- "tool_call": true
1512
- },
1513
- "glm-4.7": {
1514
- "id": "glm-4.7",
1515
- "interleaved": true,
1516
- "limit": {
1517
- "context": 200000,
1518
- "output": 128000
1519
- },
1520
- "name": "GLM-4.7",
1521
- "options": {
1522
- "temperature": 1,
1523
- "thinking": {
1524
- "type": "enabled"
1525
- }
1526
- },
1527
- "reasoning": true
1528
- },
1529
- "glm-5": {
1530
- "name": "GLM-5",
1531
- "options": {
1532
- "maxOutputTokens": 131072,
1533
- "reasoningEffort": "high",
1534
- "reasoningSummary": "true",
1535
- "temperature": 1,
1536
- "thinking": {
1537
- "type": "enabled"
1538
- },
1539
- "top_k": 40,
1540
- "top_p": 0.95
1541
- },
1542
- "reasoning": true
1543
- }
1544
- },
1545
- "name": "Z.AI Coding Plan"
1546
- }
1547
- },
1548
- "share": "manual",
1549
- "small_model": "opencode/gpt-5-nano",
1550
- "watcher": {
1551
- "ignore": [
1552
- "node_modules/**",
1553
- ".git/**",
1554
- "dist/**",
1555
- "build/**",
1556
- "*.log",
1557
- ".DS_Store"
1558
- ]
1559
- }
1560
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "github-copilot/claude-opus-4.6"
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/claude-opus-4.6"
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
+ "formatter": {
42
+ "biome": {
43
+ "command": [
44
+ "npx",
45
+ "@biomejs/biome",
46
+ "check",
47
+ "--write",
48
+ "$FILE"
49
+ ],
50
+ "extensions": [
51
+ ".js",
52
+ ".jsx",
53
+ ".ts",
54
+ ".tsx",
55
+ ".json",
56
+ ".jsonc"
57
+ ]
58
+ },
59
+ "cargo-fmt": {
60
+ "command": [
61
+ "cargo",
62
+ "fmt",
63
+ "--",
64
+ "$FILE"
65
+ ],
66
+ "extensions": [
67
+ ".rs"
68
+ ]
69
+ },
70
+ "java-formatter": {
71
+ "command": [
72
+ "google-java-format",
73
+ "--replace",
74
+ "$FILE"
75
+ ],
76
+ "environment": {
77
+ "JAVA_HOME": "{env:JAVA_HOME}"
78
+ },
79
+ "extensions": [
80
+ ".java"
81
+ ]
82
+ },
83
+ "laravel-pint": {
84
+ "command": [
85
+ "npx",
86
+ "laravel-pint",
87
+ "--preset",
88
+ "psr12",
89
+ "$FILE"
90
+ ],
91
+ "extensions": [
92
+ ".php"
93
+ ]
94
+ },
95
+ "oxfmt": {
96
+ "command": [
97
+ "npx",
98
+ "oxfmt",
99
+ "--write",
100
+ "$FILE"
101
+ ],
102
+ "extensions": [
103
+ ".js",
104
+ ".jsx",
105
+ ".ts",
106
+ ".tsx",
107
+ ".json",
108
+ ".jsonc",
109
+ ".html",
110
+ ".css",
111
+ ".scss",
112
+ ".sass",
113
+ ".md",
114
+ ".mdx",
115
+ ".yaml",
116
+ ".yml"
117
+ ]
118
+ }
119
+ },
120
+ "instructions": [
121
+ ".opencode/memory/project/user.md",
122
+ ".opencode/memory/project/tech-stack.md",
123
+ ".opencode/memory/project/project.md",
124
+ ".opencode/memory/project/roadmap.md",
125
+ ".opencode/memory/project/state.md"
126
+ ],
127
+ "keybinds": {
128
+ "leader": "`",
129
+ "session_parent": "<leader>up"
130
+ },
131
+ "mcp": {
132
+ "stitch": {
133
+ "enabled": false,
134
+ "headers": {
135
+ "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
136
+ "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
137
+ },
138
+ "oauth": false,
139
+ "type": "remote",
140
+ "url": "https://stitch.googleapis.com/mcp"
141
+ },
142
+ "tilth": {
143
+ "command": [
144
+ "npx",
145
+ "-y",
146
+ "tilth",
147
+ "--mcp",
148
+ "--edit"
149
+ ],
150
+ "enabled": true,
151
+ "timeout": 60000,
152
+ "type": "local"
153
+ }
154
+ },
155
+ "model": "opencode/minimax-m2.5-free",
156
+ "permission": {
157
+ "bash": {
158
+ "*": "allow",
159
+ "cat *": "allow",
160
+ "git branch *": "allow",
161
+ "git checkout *": "ask",
162
+ "git clean *": "ask",
163
+ "git commit *": "ask",
164
+ "git diff *": "allow",
165
+ "git log *": "allow",
166
+ "git merge *": "ask",
167
+ "git push *": "ask",
168
+ "git rebase *": "ask",
169
+ "git reset *": "ask",
170
+ "git status *": "allow",
171
+ "ls *": "allow",
172
+ "npm *": "allow",
173
+ "npm publish *": "ask",
174
+ "npm run db:push*": "ask",
175
+ "npm run db:reset*": "deny",
176
+ "npx *": "allow",
177
+ "rm *": "deny",
178
+ "rm -rf *": "deny",
179
+ "sudo *": "deny"
180
+ },
181
+ "doom_loop": "ask",
182
+ "edit": "allow",
183
+ "external_directory": "ask",
184
+ "question": "allow",
185
+ "read": {
186
+ "*": "allow",
187
+ "*.env": "deny",
188
+ "*.env.*": "deny",
189
+ "*.env.example": "allow",
190
+ "*.key": "deny",
191
+ "*.pem": "deny",
192
+ "*credentials*": "deny",
193
+ "*password*": "deny",
194
+ "*secret*": "deny",
195
+ "*token*": "deny"
196
+ }
197
+ },
198
+ "plugin": [
199
+ "@tarquinen/opencode-dcp@latest",
200
+ "@franlol/opencode-md-table-formatter@0.0.3",
201
+ "openslimedit@latest"
202
+ ],
203
+ "provider": {
204
+ "github-copilot": {
205
+ "models": {
206
+ "claude-haiku-4.5": {
207
+ "attachment": true,
208
+ "limit": {
209
+ "context": 200000,
210
+ "output": 64000
211
+ },
212
+ "options": {
213
+ "thinking_budget": 10000,
214
+ "type": "enabled"
215
+ },
216
+ "reasoning": true,
217
+ "temperature": true,
218
+ "tool_call": true,
219
+ "variants": {
220
+ "high": {
221
+ "options": {
222
+ "thinking_budget": 8000,
223
+ "type": "enabled"
224
+ }
225
+ },
226
+ "max": {
227
+ "options": {
228
+ "thinking_budget": 16000,
229
+ "type": "enabled"
230
+ }
231
+ }
232
+ }
233
+ },
234
+ "claude-opus-4.5": {
235
+ "attachment": true,
236
+ "limit": {
237
+ "context": 128000,
238
+ "output": 64000
239
+ },
240
+ "options": {
241
+ "thinking_budget": 10000
242
+ },
243
+ "reasoning": true,
244
+ "temperature": true,
245
+ "tool_call": true,
246
+ "variants": {
247
+ "high": {
248
+ "options": {
249
+ "thinking_budget": 8000
250
+ }
251
+ },
252
+ "max": {
253
+ "options": {
254
+ "thinking_budget": 16000
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "claude-opus-4.6": {
260
+ "attachment": true,
261
+ "limit": {
262
+ "context": 128000,
263
+ "output": 64000
264
+ },
265
+ "options": {
266
+ "thinking": {
267
+ "budget_tokens": 16000,
268
+ "type": "enabled"
269
+ }
270
+ },
271
+ "reasoning": true,
272
+ "temperature": true,
273
+ "tool_call": true,
274
+ "variants": {
275
+ "adaptive": {
276
+ "options": {
277
+ "max_tokens": 16000,
278
+ "output_config": {
279
+ "effort": "max"
280
+ },
281
+ "thinking": {
282
+ "type": "adaptive"
283
+ }
284
+ }
285
+ },
286
+ "high": {
287
+ "options": {
288
+ "thinking": {
289
+ "budget_tokens": 24000,
290
+ "type": "enabled"
291
+ }
292
+ }
293
+ },
294
+ "max": {
295
+ "options": {
296
+ "thinking": {
297
+ "budget_tokens": 32000,
298
+ "type": "enabled"
299
+ }
300
+ }
301
+ }
302
+ }
303
+ },
304
+ "claude-sonnet-4": {
305
+ "attachment": true,
306
+ "limit": {
307
+ "context": 200000,
308
+ "output": 64000
309
+ },
310
+ "options": {
311
+ "thinking_budget": 10000
312
+ },
313
+ "reasoning": true,
314
+ "temperature": true,
315
+ "tool_call": true
316
+ },
317
+ "claude-sonnet-4.5": {
318
+ "attachment": true,
319
+ "limit": {
320
+ "context": 128000,
321
+ "output": 64000
322
+ },
323
+ "options": {
324
+ "thinking_budget": 10000
325
+ },
326
+ "reasoning": true,
327
+ "temperature": true,
328
+ "tool_call": true,
329
+ "variants": {
330
+ "high": {
331
+ "options": {
332
+ "thinking_budget": 8000
333
+ }
334
+ },
335
+ "max": {
336
+ "options": {
337
+ "thinking_budget": 16000
338
+ }
339
+ }
340
+ }
341
+ },
342
+ "claude-sonnet-4.6": {
343
+ "attachment": true,
344
+ "limit": {
345
+ "context": 128000,
346
+ "output": 64000
347
+ },
348
+ "options": {
349
+ "thinking": {
350
+ "budget_tokens": 16000,
351
+ "type": "enabled"
352
+ }
353
+ },
354
+ "reasoning": true,
355
+ "temperature": true,
356
+ "tool_call": true,
357
+ "variants": {
358
+ "adaptive": {
359
+ "options": {
360
+ "max_tokens": 16000,
361
+ "output_config": {
362
+ "effort": "max"
363
+ },
364
+ "thinking": {
365
+ "type": "adaptive"
366
+ }
367
+ }
368
+ },
369
+ "high": {
370
+ "options": {
371
+ "thinking": {
372
+ "budget_tokens": 16000,
373
+ "type": "enabled"
374
+ }
375
+ }
376
+ },
377
+ "max": {
378
+ "options": {
379
+ "thinking": {
380
+ "budget_tokens": 32000,
381
+ "type": "enabled"
382
+ }
383
+ }
384
+ }
385
+ }
386
+ },
387
+ "gemini-2.5-pro": {
388
+ "attachment": true,
389
+ "limit": {
390
+ "context": 173000,
391
+ "output": 64000
392
+ },
393
+ "reasoning": true,
394
+ "temperature": true,
395
+ "tool_call": true
396
+ },
397
+ "gemini-3-flash-preview": {
398
+ "attachment": true,
399
+ "limit": {
400
+ "context": 173000,
401
+ "output": 64000
402
+ },
403
+ "reasoning": true,
404
+ "temperature": true,
405
+ "tool_call": true
406
+ },
407
+ "gemini-3-pro-preview": {
408
+ "attachment": true,
409
+ "limit": {
410
+ "context": 173000,
411
+ "output": 64000
412
+ },
413
+ "reasoning": true,
414
+ "temperature": true,
415
+ "tool_call": true
416
+ },
417
+ "gemini-3.1-pro-preview": {
418
+ "attachment": true,
419
+ "limit": {
420
+ "context": 173000,
421
+ "output": 64000
422
+ },
423
+ "reasoning": true,
424
+ "temperature": true,
425
+ "tool_call": true
426
+ },
427
+ "gpt-5.1": {
428
+ "attachment": true,
429
+ "limit": {
430
+ "context": 192000,
431
+ "output": 128000
432
+ },
433
+ "options": {
434
+ "reasoningEffort": "medium",
435
+ "reasoningSummary": "auto"
436
+ },
437
+ "reasoning": true,
438
+ "temperature": true,
439
+ "tool_call": true
440
+ },
441
+ "gpt-5.1-codex": {
442
+ "attachment": true,
443
+ "limit": {
444
+ "context": 256000,
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-max": {
456
+ "attachment": true,
457
+ "limit": {
458
+ "context": 256000,
459
+ "output": 128000
460
+ },
461
+ "options": {
462
+ "reasoningEffort": "medium",
463
+ "reasoningSummary": "auto"
464
+ },
465
+ "reasoning": true,
466
+ "temperature": true,
467
+ "tool_call": true
468
+ },
469
+ "gpt-5.1-codex-mini": {
470
+ "attachment": true,
471
+ "limit": {
472
+ "context": 256000,
473
+ "output": 128000
474
+ },
475
+ "options": {
476
+ "reasoningEffort": "medium",
477
+ "reasoningSummary": "auto"
478
+ },
479
+ "reasoning": true,
480
+ "temperature": true,
481
+ "tool_call": true
482
+ },
483
+ "gpt-5.2": {
484
+ "attachment": true,
485
+ "limit": {
486
+ "context": 192000,
487
+ "output": 128000
488
+ },
489
+ "options": {
490
+ "reasoningEffort": "medium",
491
+ "reasoningSummary": "auto",
492
+ "textVerbosity": "medium"
493
+ },
494
+ "reasoning": true,
495
+ "temperature": true,
496
+ "tool_call": true,
497
+ "variants": {
498
+ "high": {
499
+ "include": [
500
+ "reasoning.encrypted_content"
501
+ ],
502
+ "reasoningEffort": "high",
503
+ "reasoningSummary": "auto"
504
+ },
505
+ "low": {
506
+ "reasoningEffort": "low",
507
+ "reasoningSummary": "auto"
508
+ },
509
+ "medium": {
510
+ "reasoningEffort": "medium",
511
+ "reasoningSummary": "auto"
512
+ }
513
+ }
514
+ },
515
+ "gpt-5.2-codex": {
516
+ "attachment": true,
517
+ "limit": {
518
+ "context": 400000,
519
+ "output": 128000
520
+ },
521
+ "options": {
522
+ "reasoningEffort": "medium",
523
+ "reasoningSummary": "auto",
524
+ "textVerbosity": "medium"
525
+ },
526
+ "reasoning": true,
527
+ "temperature": true,
528
+ "tool_call": true,
529
+ "variants": {
530
+ "fast": {
531
+ "disabled": true
532
+ },
533
+ "high": {
534
+ "include": [
535
+ "reasoning.encrypted_content"
536
+ ],
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.3-codex": {
553
+ "attachment": true,
554
+ "limit": {
555
+ "context": 400000,
556
+ "output": 128000
557
+ },
558
+ "name": "Gpt 5 3 Codex",
559
+ "options": {
560
+ "reasoningEffort": "medium",
561
+ "reasoningSummary": "auto",
562
+ "textVerbosity": "medium"
563
+ },
564
+ "reasoning": true,
565
+ "temperature": true,
566
+ "tool_call": true,
567
+ "variants": {
568
+ "fast": {
569
+ "disabled": true
570
+ },
571
+ "high": {
572
+ "include": [
573
+ "reasoning.encrypted_content"
574
+ ],
575
+ "reasoningEffort": "high",
576
+ "reasoningSummary": "auto",
577
+ "textVerbosity": "medium"
578
+ },
579
+ "low": {
580
+ "reasoningEffort": "low",
581
+ "reasoningSummary": "auto"
582
+ },
583
+ "medium": {
584
+ "reasoningEffort": "medium",
585
+ "reasoningSummary": "auto",
586
+ "textVerbosity": "medium"
587
+ }
588
+ }
589
+ },
590
+ "gpt-5.4": {
591
+ "attachment": true,
592
+ "limit": {
593
+ "context": 400000,
594
+ "output": 128000
595
+ },
596
+ "modalities": {
597
+ "input": [
598
+ "text",
599
+ "image"
600
+ ],
601
+ "output": [
602
+ "text"
603
+ ]
604
+ },
605
+ "options": {
606
+ "reasoningEffort": "medium",
607
+ "reasoningSummary": "auto",
608
+ "textVerbosity": "medium"
609
+ },
610
+ "reasoning": true,
611
+ "temperature": true,
612
+ "tool_call": true,
613
+ "variants": {
614
+ "high": {
615
+ "include": [
616
+ "reasoning.encrypted_content"
617
+ ],
618
+ "reasoningEffort": "high",
619
+ "reasoningSummary": "auto"
620
+ },
621
+ "low": {
622
+ "reasoningEffort": "low",
623
+ "reasoningSummary": "auto"
624
+ },
625
+ "medium": {
626
+ "reasoningEffort": "medium",
627
+ "reasoningSummary": "auto"
628
+ }
629
+ }
630
+ },
631
+ "grok-code-fast": {
632
+ "attachment": true,
633
+ "limit": {
634
+ "context": 173000,
635
+ "output": 64000
636
+ },
637
+ "reasoning": true,
638
+ "temperature": true,
639
+ "tool_call": true
640
+ },
641
+ "grok-code-fast-1": {
642
+ "attachment": true,
643
+ "limit": {
644
+ "context": 173000,
645
+ "output": 64000
646
+ },
647
+ "reasoning": true,
648
+ "temperature": true,
649
+ "tool_call": true
650
+ }
651
+ },
652
+ "options": {
653
+ "timeout": 600000
654
+ }
655
+ },
656
+ "kimi-for-coding": {
657
+ "models": {
658
+ "k2p5": {
659
+ "limit": {
660
+ "context": 262144,
661
+ "output": 32768
662
+ },
663
+ "options": {
664
+ "interleaved": {
665
+ "field": "reasoning_content"
666
+ },
667
+ "thinking": {
668
+ "budgetTokens": 8192,
669
+ "reasoning_effort": "high",
670
+ "type": "enabled"
671
+ }
672
+ },
673
+ "reasoning": true,
674
+ "temperature": true,
675
+ "tool_call": true,
676
+ "variants": {
677
+ "high": {
678
+ "interleaved": {
679
+ "field": "reasoning_content"
680
+ },
681
+ "options": {
682
+ "reasoning_effort": "high",
683
+ "thinkingBudget": 16384,
684
+ "type": "enabled"
685
+ }
686
+ },
687
+ "max": {
688
+ "interleaved": {
689
+ "field": "reasoning_content"
690
+ },
691
+ "options": {
692
+ "reasoning_effort": "high",
693
+ "thinkingBudget": 32768,
694
+ "type": "enabled"
695
+ }
696
+ }
697
+ }
698
+ }
699
+ }
700
+ },
701
+ "modal": {
702
+ "models": {
703
+ "zai-org/GLM-5-FP8": {
704
+ "modalities": {
705
+ "input": [
706
+ "text",
707
+ "image",
708
+ "pdf"
709
+ ],
710
+ "output": [
711
+ "text"
712
+ ]
713
+ },
714
+ "name": "GLM-5",
715
+ "options": {
716
+ "maxOutputTokens": 131072,
717
+ "reasoningEffort": "high",
718
+ "reasoningSummary": "true",
719
+ "temperature": 1,
720
+ "thinking": {
721
+ "type": "enabled"
722
+ },
723
+ "top_k": 40,
724
+ "top_p": 0.95
725
+ },
726
+ "reasoning": true
727
+ }
728
+ },
729
+ "name": "Modal",
730
+ "options": {
731
+ "apiKey": "{env:MODAL_API_KEY}",
732
+ "baseURL": "https://api.us-west-2.modal.direct/v1"
733
+ }
734
+ },
735
+ "openai": {
736
+ "models": {
737
+ "gpt-5.2": {
738
+ "variants": {
739
+ "fast": {
740
+ "disabled": true
741
+ },
742
+ "high": {
743
+ "include": [
744
+ "reasoning.encrypted_content"
745
+ ],
746
+ "reasoningEffort": "high",
747
+ "reasoningSummary": "auto",
748
+ "textVerbosity": "low"
749
+ },
750
+ "medium": {
751
+ "include": [
752
+ "reasoning.encrypted_content"
753
+ ],
754
+ "reasoningEffort": "medium",
755
+ "reasoningSummary": "auto",
756
+ "textVerbosity": "low"
757
+ }
758
+ }
759
+ },
760
+ "gpt-5.2-codex": {
761
+ "variants": {
762
+ "fast": {
763
+ "disabled": true
764
+ },
765
+ "high": {
766
+ "include": [
767
+ "reasoning.encrypted_content"
768
+ ],
769
+ "reasoningEffort": "high",
770
+ "reasoningSummary": "auto",
771
+ "textVerbosity": "low"
772
+ },
773
+ "medium": {
774
+ "include": [
775
+ "reasoning.encrypted_content"
776
+ ],
777
+ "reasoningEffort": "medium",
778
+ "reasoningSummary": "auto",
779
+ "textVerbosity": "low"
780
+ },
781
+ "xhigh": {
782
+ "include": [
783
+ "reasoning.encrypted_content"
784
+ ],
785
+ "reasoningEffort": "xhigh",
786
+ "reasoningSummary": "auto",
787
+ "textVerbosity": "low"
788
+ }
789
+ }
790
+ },
791
+ "gpt-5.3-codex": {
792
+ "variants": {
793
+ "fast": {
794
+ "disabled": true
795
+ },
796
+ "high": {
797
+ "include": [
798
+ "reasoning.encrypted_content"
799
+ ],
800
+ "reasoningEffort": "high",
801
+ "reasoningSummary": "auto",
802
+ "textVerbosity": "low"
803
+ },
804
+ "medium": {
805
+ "include": [
806
+ "reasoning.encrypted_content"
807
+ ],
808
+ "reasoningEffort": "medium",
809
+ "reasoningSummary": "auto",
810
+ "textVerbosity": "low"
811
+ },
812
+ "xhigh": {
813
+ "include": [
814
+ "reasoning.encrypted_content"
815
+ ],
816
+ "reasoningEffort": "xhigh",
817
+ "reasoningSummary": "auto",
818
+ "textVerbosity": "low"
819
+ }
820
+ }
821
+ },
822
+ "gpt-5.4": {
823
+ "attachment": true,
824
+ "limit": {
825
+ "context": 400000,
826
+ "output": 128000
827
+ },
828
+ "modalities": {
829
+ "input": [
830
+ "text",
831
+ "image"
832
+ ],
833
+ "output": [
834
+ "text"
835
+ ]
836
+ },
837
+ "options": {
838
+ "reasoningEffort": "medium",
839
+ "reasoningSummary": "auto",
840
+ "textVerbosity": "medium"
841
+ },
842
+ "reasoning": true,
843
+ "temperature": true,
844
+ "tool_call": true,
845
+ "variants": {
846
+ "high": {
847
+ "include": [
848
+ "reasoning.encrypted_content"
849
+ ],
850
+ "reasoningEffort": "high",
851
+ "reasoningSummary": "auto"
852
+ },
853
+ "low": {
854
+ "reasoningEffort": "low",
855
+ "reasoningSummary": "auto"
856
+ },
857
+ "medium": {
858
+ "reasoningEffort": "medium",
859
+ "reasoningSummary": "auto"
860
+ }
861
+ }
862
+ }
863
+ }
864
+ },
865
+ "opencode": {
866
+ "models": {
867
+ "big-pickle": {
868
+ "options": {
869
+ "reasoningEffort": "high",
870
+ "temperature": 1,
871
+ "top_k": 40,
872
+ "top_p": 0.95
873
+ },
874
+ "reasoning": true
875
+ }
876
+ }
877
+ },
878
+ "proxypal": {
879
+ "models": {
880
+ "claude-haiku-4-5": {
881
+ "limit": {
882
+ "context": 200000,
883
+ "output": 64000
884
+ },
885
+ "modalities": {
886
+ "input": [
887
+ "text",
888
+ "image",
889
+ "pdf"
890
+ ],
891
+ "output": [
892
+ "text"
893
+ ]
894
+ },
895
+ "name": "Claude Haiku 4 5"
896
+ },
897
+ "claude-haiku-4-5-20251001": {
898
+ "limit": {
899
+ "context": 200000,
900
+ "output": 64000
901
+ },
902
+ "modalities": {
903
+ "input": [
904
+ "text",
905
+ "image",
906
+ "pdf"
907
+ ],
908
+ "output": [
909
+ "text"
910
+ ]
911
+ },
912
+ "name": "Claude Haiku 4 5 20251001"
913
+ },
914
+ "claude-opus-4-6-thinking": {
915
+ "limit": {
916
+ "context": 200000,
917
+ "output": 64000
918
+ },
919
+ "modalities": {
920
+ "input": [
921
+ "text",
922
+ "image",
923
+ "pdf"
924
+ ],
925
+ "output": [
926
+ "text"
927
+ ]
928
+ },
929
+ "name": "Claude Opus 4 6 Thinking",
930
+ "options": {
931
+ "thinking": {
932
+ "budgetTokens": 8192,
933
+ "type": "enabled"
934
+ }
935
+ },
936
+ "reasoning": true,
937
+ "variants": {
938
+ "low": {
939
+ "thinkingConfig": {
940
+ "thinkingBudget": 8192
941
+ }
942
+ },
943
+ "max": {
944
+ "thinkingConfig": {
945
+ "thinkingBudget": 32768
946
+ }
947
+ }
948
+ }
949
+ },
950
+ "claude-opus-4.6": {
951
+ "limit": {
952
+ "context": 200000,
953
+ "output": 64000
954
+ },
955
+ "modalities": {
956
+ "input": [
957
+ "text",
958
+ "image",
959
+ "pdf"
960
+ ],
961
+ "output": [
962
+ "text"
963
+ ]
964
+ },
965
+ "name": "Claude Opus 4 6"
966
+ },
967
+ "claude-sonnet-4": {
968
+ "limit": {
969
+ "context": 200000,
970
+ "output": 64000
971
+ },
972
+ "modalities": {
973
+ "input": [
974
+ "text",
975
+ "image",
976
+ "pdf"
977
+ ],
978
+ "output": [
979
+ "text"
980
+ ]
981
+ },
982
+ "name": "Claude Sonnet 4"
983
+ },
984
+ "claude-sonnet-4-20250514": {
985
+ "limit": {
986
+ "context": 200000,
987
+ "output": 64000
988
+ },
989
+ "modalities": {
990
+ "input": [
991
+ "text",
992
+ "image",
993
+ "pdf"
994
+ ],
995
+ "output": [
996
+ "text"
997
+ ]
998
+ },
999
+ "name": "Claude Sonnet 4 20250514"
1000
+ },
1001
+ "claude-sonnet-4-5": {
1002
+ "limit": {
1003
+ "context": 200000,
1004
+ "output": 64000
1005
+ },
1006
+ "modalities": {
1007
+ "input": [
1008
+ "text",
1009
+ "image",
1010
+ "pdf"
1011
+ ],
1012
+ "output": [
1013
+ "text"
1014
+ ]
1015
+ },
1016
+ "name": "Claude Sonnet 4 5"
1017
+ },
1018
+ "claude-sonnet-4-5-20250929": {
1019
+ "limit": {
1020
+ "context": 200000,
1021
+ "output": 64000
1022
+ },
1023
+ "modalities": {
1024
+ "input": [
1025
+ "text",
1026
+ "image",
1027
+ "pdf"
1028
+ ],
1029
+ "output": [
1030
+ "text"
1031
+ ]
1032
+ },
1033
+ "name": "Claude Sonnet 4 5 20250929"
1034
+ },
1035
+ "claude-sonnet-4-6": {
1036
+ "limit": {
1037
+ "context": 200000,
1038
+ "output": 64000
1039
+ },
1040
+ "modalities": {
1041
+ "input": [
1042
+ "text",
1043
+ "image",
1044
+ "pdf"
1045
+ ],
1046
+ "output": [
1047
+ "text"
1048
+ ]
1049
+ },
1050
+ "name": "Claude Sonnet 4 6"
1051
+ },
1052
+ "gemini-2.5-flash": {
1053
+ "limit": {
1054
+ "context": 1000000,
1055
+ "output": 65536
1056
+ },
1057
+ "modalities": {
1058
+ "input": [
1059
+ "text",
1060
+ "image",
1061
+ "pdf"
1062
+ ],
1063
+ "output": [
1064
+ "text"
1065
+ ]
1066
+ },
1067
+ "name": "Gemini 2 5 Flash"
1068
+ },
1069
+ "gemini-2.5-flash-lite": {
1070
+ "limit": {
1071
+ "context": 1000000,
1072
+ "output": 65536
1073
+ },
1074
+ "modalities": {
1075
+ "input": [
1076
+ "text",
1077
+ "image",
1078
+ "pdf"
1079
+ ],
1080
+ "output": [
1081
+ "text"
1082
+ ]
1083
+ },
1084
+ "name": "Gemini 2 5 Flash Lite"
1085
+ },
1086
+ "gemini-2.5-pro": {
1087
+ "limit": {
1088
+ "context": 1000000,
1089
+ "output": 65536
1090
+ },
1091
+ "modalities": {
1092
+ "input": [
1093
+ "text",
1094
+ "image",
1095
+ "pdf"
1096
+ ],
1097
+ "output": [
1098
+ "text"
1099
+ ]
1100
+ },
1101
+ "name": "Gemini 2 5 Pro"
1102
+ },
1103
+ "gemini-3-flash": {
1104
+ "limit": {
1105
+ "context": 1000000,
1106
+ "output": 65536
1107
+ },
1108
+ "modalities": {
1109
+ "input": [
1110
+ "text",
1111
+ "image",
1112
+ "pdf"
1113
+ ],
1114
+ "output": [
1115
+ "text"
1116
+ ]
1117
+ },
1118
+ "name": "Gemini 3 Flash",
1119
+ "options": {
1120
+ "generationConfig": {
1121
+ "thinkingConfig": {
1122
+ "includeThoughts": true,
1123
+ "thinkingLevel": "medium"
1124
+ }
1125
+ }
1126
+ },
1127
+ "reasoning": true,
1128
+ "variants": {
1129
+ "high": {
1130
+ "thinkingLevel": "high"
1131
+ },
1132
+ "low": {
1133
+ "thinkingLevel": "low"
1134
+ },
1135
+ "medium": {
1136
+ "thinkingLevel": "medium"
1137
+ }
1138
+ }
1139
+ },
1140
+ "gemini-3-flash-preview": {
1141
+ "limit": {
1142
+ "context": 1000000,
1143
+ "output": 65536
1144
+ },
1145
+ "modalities": {
1146
+ "input": [
1147
+ "text",
1148
+ "image",
1149
+ "pdf"
1150
+ ],
1151
+ "output": [
1152
+ "text"
1153
+ ]
1154
+ },
1155
+ "name": "Gemini 3 Flash Preview",
1156
+ "options": {
1157
+ "generationConfig": {
1158
+ "thinkingConfig": {
1159
+ "includeThoughts": true,
1160
+ "thinkingLevel": "medium"
1161
+ }
1162
+ }
1163
+ },
1164
+ "reasoning": true,
1165
+ "variants": {
1166
+ "high": {
1167
+ "thinkingLevel": "high"
1168
+ },
1169
+ "low": {
1170
+ "thinkingLevel": "low"
1171
+ },
1172
+ "medium": {
1173
+ "thinkingLevel": "medium"
1174
+ }
1175
+ }
1176
+ },
1177
+ "gemini-3-pro-high": {
1178
+ "limit": {
1179
+ "context": 1000000,
1180
+ "output": 65536
1181
+ },
1182
+ "modalities": {
1183
+ "input": [
1184
+ "text",
1185
+ "image",
1186
+ "pdf"
1187
+ ],
1188
+ "output": [
1189
+ "text"
1190
+ ]
1191
+ },
1192
+ "name": "Gemini 3 Pro High",
1193
+ "options": {
1194
+ "generationConfig": {
1195
+ "thinkingConfig": {
1196
+ "includeThoughts": true,
1197
+ "thinkingLevel": "medium"
1198
+ }
1199
+ }
1200
+ },
1201
+ "reasoning": true,
1202
+ "variants": {
1203
+ "high": {
1204
+ "thinkingLevel": "high"
1205
+ },
1206
+ "low": {
1207
+ "thinkingLevel": "low"
1208
+ },
1209
+ "medium": {
1210
+ "thinkingLevel": "medium"
1211
+ }
1212
+ }
1213
+ },
1214
+ "gemini-3-pro-low": {
1215
+ "limit": {
1216
+ "context": 1000000,
1217
+ "output": 65536
1218
+ },
1219
+ "modalities": {
1220
+ "input": [
1221
+ "text",
1222
+ "image",
1223
+ "pdf"
1224
+ ],
1225
+ "output": [
1226
+ "text"
1227
+ ]
1228
+ },
1229
+ "name": "Gemini 3 Pro Low",
1230
+ "options": {
1231
+ "generationConfig": {
1232
+ "thinkingConfig": {
1233
+ "includeThoughts": true,
1234
+ "thinkingLevel": "medium"
1235
+ }
1236
+ }
1237
+ },
1238
+ "reasoning": true,
1239
+ "variants": {
1240
+ "high": {
1241
+ "thinkingLevel": "high"
1242
+ },
1243
+ "low": {
1244
+ "thinkingLevel": "low"
1245
+ },
1246
+ "medium": {
1247
+ "thinkingLevel": "medium"
1248
+ }
1249
+ }
1250
+ },
1251
+ "gemini-3-pro-preview": {
1252
+ "limit": {
1253
+ "context": 1000000,
1254
+ "output": 65536
1255
+ },
1256
+ "modalities": {
1257
+ "input": [
1258
+ "text",
1259
+ "image",
1260
+ "pdf"
1261
+ ],
1262
+ "output": [
1263
+ "text"
1264
+ ]
1265
+ },
1266
+ "name": "Gemini 3 Pro Preview",
1267
+ "options": {
1268
+ "generationConfig": {
1269
+ "thinkingConfig": {
1270
+ "includeThoughts": true,
1271
+ "thinkingLevel": "medium"
1272
+ }
1273
+ }
1274
+ },
1275
+ "reasoning": true,
1276
+ "variants": {
1277
+ "high": {
1278
+ "thinkingLevel": "high"
1279
+ },
1280
+ "low": {
1281
+ "thinkingLevel": "low"
1282
+ },
1283
+ "medium": {
1284
+ "thinkingLevel": "medium"
1285
+ }
1286
+ }
1287
+ },
1288
+ "gemini-3.1-flash-image": {
1289
+ "limit": {
1290
+ "context": 1000000,
1291
+ "output": 65536
1292
+ },
1293
+ "name": "Gemini 3 1 Flash Image"
1294
+ },
1295
+ "gemini-3.1-flash-lite-preview": {
1296
+ "limit": {
1297
+ "context": 1000000,
1298
+ "output": 65536
1299
+ },
1300
+ "modalities": {
1301
+ "input": [
1302
+ "text",
1303
+ "image",
1304
+ "pdf"
1305
+ ],
1306
+ "output": [
1307
+ "text"
1308
+ ]
1309
+ },
1310
+ "name": "Gemini 3 1 Flash Lite Preview",
1311
+ "options": {
1312
+ "generationConfig": {
1313
+ "thinkingConfig": {
1314
+ "includeThoughts": true,
1315
+ "thinkingLevel": "medium"
1316
+ }
1317
+ }
1318
+ },
1319
+ "reasoning": true,
1320
+ "variants": {
1321
+ "high": {
1322
+ "thinkingLevel": "high"
1323
+ },
1324
+ "low": {
1325
+ "thinkingLevel": "low"
1326
+ },
1327
+ "medium": {
1328
+ "thinkingLevel": "medium"
1329
+ }
1330
+ }
1331
+ },
1332
+ "gemini-3.1-pro-high": {
1333
+ "limit": {
1334
+ "context": 1000000,
1335
+ "output": 65536
1336
+ },
1337
+ "modalities": {
1338
+ "input": [
1339
+ "text",
1340
+ "image",
1341
+ "pdf"
1342
+ ],
1343
+ "output": [
1344
+ "text"
1345
+ ]
1346
+ },
1347
+ "name": "Gemini 3 1 Pro High",
1348
+ "options": {
1349
+ "generationConfig": {
1350
+ "thinkingConfig": {
1351
+ "includeThoughts": true,
1352
+ "thinkingLevel": "medium"
1353
+ }
1354
+ }
1355
+ },
1356
+ "reasoning": true,
1357
+ "variants": {
1358
+ "high": {
1359
+ "thinkingLevel": "high"
1360
+ },
1361
+ "low": {
1362
+ "thinkingLevel": "low"
1363
+ },
1364
+ "medium": {
1365
+ "thinkingLevel": "medium"
1366
+ }
1367
+ }
1368
+ },
1369
+ "gemini-3.1-pro-low": {
1370
+ "limit": {
1371
+ "context": 1000000,
1372
+ "output": 65536
1373
+ },
1374
+ "modalities": {
1375
+ "input": [
1376
+ "text",
1377
+ "image",
1378
+ "pdf"
1379
+ ],
1380
+ "output": [
1381
+ "text"
1382
+ ]
1383
+ },
1384
+ "name": "Gemini 3 1 Pro Low",
1385
+ "options": {
1386
+ "generationConfig": {
1387
+ "thinkingConfig": {
1388
+ "includeThoughts": true,
1389
+ "thinkingLevel": "medium"
1390
+ }
1391
+ }
1392
+ },
1393
+ "reasoning": true,
1394
+ "variants": {
1395
+ "high": {
1396
+ "thinkingLevel": "high"
1397
+ },
1398
+ "low": {
1399
+ "thinkingLevel": "low"
1400
+ },
1401
+ "medium": {
1402
+ "thinkingLevel": "medium"
1403
+ }
1404
+ }
1405
+ },
1406
+ "gemini-3.1-pro-preview": {
1407
+ "limit": {
1408
+ "context": 1000000,
1409
+ "output": 65536
1410
+ },
1411
+ "modalities": {
1412
+ "input": [
1413
+ "text",
1414
+ "image",
1415
+ "pdf"
1416
+ ],
1417
+ "output": [
1418
+ "text"
1419
+ ]
1420
+ },
1421
+ "name": "Gemini 3 1 Pro Preview",
1422
+ "options": {
1423
+ "generationConfig": {
1424
+ "thinkingConfig": {
1425
+ "includeThoughts": true,
1426
+ "thinkingLevel": "medium"
1427
+ }
1428
+ }
1429
+ },
1430
+ "reasoning": true,
1431
+ "variants": {
1432
+ "high": {
1433
+ "thinkingLevel": "high"
1434
+ },
1435
+ "low": {
1436
+ "thinkingLevel": "low"
1437
+ },
1438
+ "medium": {
1439
+ "thinkingLevel": "medium"
1440
+ }
1441
+ }
1442
+ },
1443
+ "glm-4.5": {
1444
+ "limit": {
1445
+ "context": 128000,
1446
+ "output": 16384
1447
+ },
1448
+ "name": "Glm 4 5"
1449
+ },
1450
+ "glm-4.5-air": {
1451
+ "limit": {
1452
+ "context": 128000,
1453
+ "output": 16384
1454
+ },
1455
+ "name": "Glm 4 5 Air"
1456
+ },
1457
+ "glm-4.6": {
1458
+ "limit": {
1459
+ "context": 128000,
1460
+ "output": 16384
1461
+ },
1462
+ "name": "Glm 4 6"
1463
+ },
1464
+ "glm-4.7": {
1465
+ "limit": {
1466
+ "context": 128000,
1467
+ "output": 16384
1468
+ },
1469
+ "name": "Glm 4 7"
1470
+ },
1471
+ "gpt-5": {
1472
+ "limit": {
1473
+ "context": 400000,
1474
+ "output": 32768
1475
+ },
1476
+ "modalities": {
1477
+ "input": [
1478
+ "text",
1479
+ "image",
1480
+ "pdf"
1481
+ ],
1482
+ "output": [
1483
+ "text"
1484
+ ]
1485
+ },
1486
+ "name": "Gpt 5",
1487
+ "options": {
1488
+ "reasoningEffort": "medium"
1489
+ },
1490
+ "reasoning": true
1491
+ },
1492
+ "gpt-5-codex": {
1493
+ "limit": {
1494
+ "context": 400000,
1495
+ "output": 32768
1496
+ },
1497
+ "modalities": {
1498
+ "input": [
1499
+ "text",
1500
+ "image",
1501
+ "pdf"
1502
+ ],
1503
+ "output": [
1504
+ "text"
1505
+ ]
1506
+ },
1507
+ "name": "Gpt 5 Codex",
1508
+ "options": {
1509
+ "reasoningEffort": "medium"
1510
+ },
1511
+ "reasoning": true
1512
+ },
1513
+ "gpt-5-codex-mini": {
1514
+ "limit": {
1515
+ "context": 400000,
1516
+ "output": 32768
1517
+ },
1518
+ "modalities": {
1519
+ "input": [
1520
+ "text",
1521
+ "image",
1522
+ "pdf"
1523
+ ],
1524
+ "output": [
1525
+ "text"
1526
+ ]
1527
+ },
1528
+ "name": "Gpt 5 Codex Mini",
1529
+ "options": {
1530
+ "reasoningEffort": "medium"
1531
+ },
1532
+ "reasoning": true
1533
+ },
1534
+ "gpt-5.1": {
1535
+ "limit": {
1536
+ "context": 400000,
1537
+ "output": 32768
1538
+ },
1539
+ "modalities": {
1540
+ "input": [
1541
+ "text",
1542
+ "image",
1543
+ "pdf"
1544
+ ],
1545
+ "output": [
1546
+ "text"
1547
+ ]
1548
+ },
1549
+ "name": "Gpt 5 1",
1550
+ "options": {
1551
+ "reasoningEffort": "medium"
1552
+ },
1553
+ "reasoning": true
1554
+ },
1555
+ "gpt-5.1-codex": {
1556
+ "limit": {
1557
+ "context": 400000,
1558
+ "output": 32768
1559
+ },
1560
+ "modalities": {
1561
+ "input": [
1562
+ "text",
1563
+ "image",
1564
+ "pdf"
1565
+ ],
1566
+ "output": [
1567
+ "text"
1568
+ ]
1569
+ },
1570
+ "name": "Gpt 5 1 Codex",
1571
+ "options": {
1572
+ "reasoningEffort": "medium"
1573
+ },
1574
+ "reasoning": true
1575
+ },
1576
+ "gpt-5.1-codex-max": {
1577
+ "limit": {
1578
+ "context": 400000,
1579
+ "output": 32768
1580
+ },
1581
+ "modalities": {
1582
+ "input": [
1583
+ "text",
1584
+ "image",
1585
+ "pdf"
1586
+ ],
1587
+ "output": [
1588
+ "text"
1589
+ ]
1590
+ },
1591
+ "name": "Gpt 5 1 Codex Max",
1592
+ "options": {
1593
+ "reasoningEffort": "medium"
1594
+ },
1595
+ "reasoning": true
1596
+ },
1597
+ "gpt-5.1-codex-mini": {
1598
+ "limit": {
1599
+ "context": 400000,
1600
+ "output": 32768
1601
+ },
1602
+ "modalities": {
1603
+ "input": [
1604
+ "text",
1605
+ "image",
1606
+ "pdf"
1607
+ ],
1608
+ "output": [
1609
+ "text"
1610
+ ]
1611
+ },
1612
+ "name": "Gpt 5 1 Codex Mini",
1613
+ "options": {
1614
+ "reasoningEffort": "medium"
1615
+ },
1616
+ "reasoning": true
1617
+ },
1618
+ "gpt-5.2": {
1619
+ "limit": {
1620
+ "context": 400000,
1621
+ "output": 32768
1622
+ },
1623
+ "modalities": {
1624
+ "input": [
1625
+ "text",
1626
+ "image",
1627
+ "pdf"
1628
+ ],
1629
+ "output": [
1630
+ "text"
1631
+ ]
1632
+ },
1633
+ "name": "Gpt 5 2",
1634
+ "options": {
1635
+ "reasoningEffort": "medium"
1636
+ },
1637
+ "reasoning": true
1638
+ },
1639
+ "gpt-5.2-codex": {
1640
+ "limit": {
1641
+ "context": 400000,
1642
+ "output": 32768
1643
+ },
1644
+ "modalities": {
1645
+ "input": [
1646
+ "text",
1647
+ "image",
1648
+ "pdf"
1649
+ ],
1650
+ "output": [
1651
+ "text"
1652
+ ]
1653
+ },
1654
+ "name": "Gpt 5 2 Codex",
1655
+ "options": {
1656
+ "reasoningEffort": "medium"
1657
+ },
1658
+ "reasoning": true
1659
+ },
1660
+ "gpt-5.3-codex": {
1661
+ "limit": {
1662
+ "context": 400000,
1663
+ "output": 32768
1664
+ },
1665
+ "modalities": {
1666
+ "input": [
1667
+ "text",
1668
+ "image",
1669
+ "pdf"
1670
+ ],
1671
+ "output": [
1672
+ "text"
1673
+ ]
1674
+ },
1675
+ "name": "Gpt 5 3 Codex",
1676
+ "options": {
1677
+ "reasoningEffort": "medium"
1678
+ },
1679
+ "reasoning": true
1680
+ },
1681
+ "gpt-5.4": {
1682
+ "limit": {
1683
+ "context": 400000,
1684
+ "output": 32768
1685
+ },
1686
+ "modalities": {
1687
+ "input": [
1688
+ "text",
1689
+ "image",
1690
+ "pdf"
1691
+ ],
1692
+ "output": [
1693
+ "text"
1694
+ ]
1695
+ },
1696
+ "name": "Gpt 5 4",
1697
+ "options": {
1698
+ "reasoningEffort": "medium"
1699
+ },
1700
+ "reasoning": true
1701
+ },
1702
+ "gpt-5.4-mini": {
1703
+ "limit": {
1704
+ "context": 400000,
1705
+ "output": 32768
1706
+ },
1707
+ "modalities": {
1708
+ "input": [
1709
+ "text",
1710
+ "image",
1711
+ "pdf"
1712
+ ],
1713
+ "output": [
1714
+ "text"
1715
+ ]
1716
+ },
1717
+ "name": "Gpt 5 4 Mini",
1718
+ "options": {
1719
+ "reasoningEffort": "medium"
1720
+ },
1721
+ "reasoning": true
1722
+ },
1723
+ "gpt-oss-120b-medium": {
1724
+ "limit": {
1725
+ "context": 128000,
1726
+ "output": 16384
1727
+ },
1728
+ "name": "Gpt Oss 120b Medium"
1729
+ },
1730
+ "kimi-k2": {
1731
+ "limit": {
1732
+ "context": 128000,
1733
+ "output": 16384
1734
+ },
1735
+ "name": "Kimi K2"
1736
+ },
1737
+ "kimi-k2-thinking": {
1738
+ "limit": {
1739
+ "context": 128000,
1740
+ "output": 16384
1741
+ },
1742
+ "name": "Kimi K2 Thinking",
1743
+ "options": {
1744
+ "reasoningEffort": "high"
1745
+ },
1746
+ "reasoning": true
1747
+ },
1748
+ "kimi-k2.5": {
1749
+ "limit": {
1750
+ "context": 128000,
1751
+ "output": 16384
1752
+ },
1753
+ "name": "Kimi K2 5"
1754
+ },
1755
+ "kiro-auto": {
1756
+ "limit": {
1757
+ "context": 128000,
1758
+ "output": 16384
1759
+ },
1760
+ "name": "Kiro Auto"
1761
+ },
1762
+ "kiro-claude-haiku-4-5": {
1763
+ "limit": {
1764
+ "context": 200000,
1765
+ "output": 64000
1766
+ },
1767
+ "name": "Kiro Claude Haiku 4 5"
1768
+ },
1769
+ "kiro-claude-haiku-4-5-agentic": {
1770
+ "limit": {
1771
+ "context": 200000,
1772
+ "output": 64000
1773
+ },
1774
+ "name": "Kiro Claude Haiku 4 5 Agentic"
1775
+ },
1776
+ "kiro-claude-sonnet-4": {
1777
+ "limit": {
1778
+ "context": 200000,
1779
+ "output": 64000
1780
+ },
1781
+ "name": "Kiro Claude Sonnet 4"
1782
+ },
1783
+ "kiro-claude-sonnet-4-5": {
1784
+ "limit": {
1785
+ "context": 200000,
1786
+ "output": 64000
1787
+ },
1788
+ "name": "Kiro Claude Sonnet 4 5"
1789
+ },
1790
+ "kiro-claude-sonnet-4-5-agentic": {
1791
+ "limit": {
1792
+ "context": 200000,
1793
+ "output": 64000
1794
+ },
1795
+ "name": "Kiro Claude Sonnet 4 5 Agentic"
1796
+ },
1797
+ "kiro-claude-sonnet-4-agentic": {
1798
+ "limit": {
1799
+ "context": 200000,
1800
+ "output": 64000
1801
+ },
1802
+ "name": "Kiro Claude Sonnet 4 Agentic"
1803
+ },
1804
+ "kiro-deepseek-3-2": {
1805
+ "limit": {
1806
+ "context": 128000,
1807
+ "output": 8192
1808
+ },
1809
+ "name": "Kiro Deepseek 3 2"
1810
+ },
1811
+ "kiro-deepseek-3-2-agentic": {
1812
+ "limit": {
1813
+ "context": 128000,
1814
+ "output": 8192
1815
+ },
1816
+ "name": "Kiro Deepseek 3 2 Agentic"
1817
+ },
1818
+ "kiro-minimax-m2-1": {
1819
+ "limit": {
1820
+ "context": 128000,
1821
+ "output": 16384
1822
+ },
1823
+ "name": "Kiro Minimax M2 1"
1824
+ },
1825
+ "kiro-minimax-m2-1-agentic": {
1826
+ "limit": {
1827
+ "context": 128000,
1828
+ "output": 16384
1829
+ },
1830
+ "name": "Kiro Minimax M2 1 Agentic"
1831
+ },
1832
+ "kiro-minimax-m2-5": {
1833
+ "limit": {
1834
+ "context": 128000,
1835
+ "output": 16384
1836
+ },
1837
+ "name": "Kiro Minimax M2 5"
1838
+ },
1839
+ "kiro-minimax-m2-5-agentic": {
1840
+ "limit": {
1841
+ "context": 128000,
1842
+ "output": 16384
1843
+ },
1844
+ "name": "Kiro Minimax M2 5 Agentic"
1845
+ },
1846
+ "kiro-qwen3-coder-next": {
1847
+ "limit": {
1848
+ "context": 1000000,
1849
+ "output": 65536
1850
+ },
1851
+ "name": "Kiro Qwen3 Coder Next"
1852
+ },
1853
+ "kiro-qwen3-coder-next-agentic": {
1854
+ "limit": {
1855
+ "context": 1000000,
1856
+ "output": 65536
1857
+ },
1858
+ "name": "Kiro Qwen3 Coder Next Agentic"
1859
+ }
1860
+ },
1861
+ "name": "ProxyPal",
1862
+ "npm": "@ai-sdk/anthropic",
1863
+ "options": {
1864
+ "apiKey": "proxypal-local",
1865
+ "baseURL": "http://127.0.0.1:8317/v1",
1866
+ "includeUsage": true
1867
+ }
1868
+ },
1869
+ "zai-coding-plan": {
1870
+ "models": {
1871
+ "glm-4.6": {
1872
+ "limit": {
1873
+ "context": 128000,
1874
+ "output": 16384
1875
+ },
1876
+ "options": {
1877
+ "temperature": 1,
1878
+ "thinking": {
1879
+ "type": "enabled"
1880
+ }
1881
+ },
1882
+ "reasoning": true,
1883
+ "temperature": true,
1884
+ "tool_call": true
1885
+ },
1886
+ "glm-4.7": {
1887
+ "id": "glm-4.7",
1888
+ "interleaved": true,
1889
+ "limit": {
1890
+ "context": 200000,
1891
+ "output": 128000
1892
+ },
1893
+ "name": "GLM-4.7",
1894
+ "options": {
1895
+ "temperature": 1,
1896
+ "thinking": {
1897
+ "type": "enabled"
1898
+ }
1899
+ },
1900
+ "reasoning": true
1901
+ },
1902
+ "glm-5": {
1903
+ "name": "GLM-5",
1904
+ "options": {
1905
+ "maxOutputTokens": 131072,
1906
+ "reasoningEffort": "high",
1907
+ "reasoningSummary": "true",
1908
+ "temperature": 1,
1909
+ "thinking": {
1910
+ "type": "enabled"
1911
+ },
1912
+ "top_k": 40,
1913
+ "top_p": 0.95
1914
+ },
1915
+ "reasoning": true
1916
+ }
1917
+ },
1918
+ "name": "Z.AI Coding Plan"
1919
+ }
1920
+ },
1921
+ "share": "manual",
1922
+ "small_model": "opencode/gpt-5-nano",
1923
+ "watcher": {
1924
+ "ignore": [
1925
+ "node_modules/**",
1926
+ ".git/**",
1927
+ "dist/**",
1928
+ "build/**",
1929
+ "*.log",
1930
+ ".DS_Store"
1931
+ ]
1932
+ }
1933
+ }