opencodekit 0.16.10 → 0.16.13

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