opencodekit 0.17.2 → 0.17.3

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