opencodekit 0.19.3 → 0.19.4

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