opencodekit 0.19.3 → 0.19.5

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