opencodekit 0.16.9 → 0.16.12

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,869 +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
- "*credentials*": "deny",
142
- "*.env": "deny",
143
- "*.env.*": "deny",
144
- "*.env.example": "allow",
145
- "*.key": "deny",
146
- "*.pem": "deny",
147
- "*password*": "deny",
148
- "*secret*": "deny",
149
- "*token*": "deny"
150
- }
151
- },
152
- "plugin": [
153
- "@tarquinen/opencode-dcp@beta",
154
- "@franlol/opencode-md-table-formatter@0.0.3"
155
- ],
156
- "provider": {
157
- "kimi-for-coding": {
158
- "models": {
159
- "k2p5": {
160
- "limit": {
161
- "context": 262144,
162
- "output": 32768
163
- },
164
- "temperature": true,
165
- "reasoning": true,
166
- "tool_call": true,
167
- "options": {
168
- "thinking": {
169
- "type": "enabled",
170
- "budgetTokens": 8192,
171
- "reasoning_effort": "high"
172
- },
173
- "interleaved": {
174
- "field": "reasoning_content"
175
- }
176
- },
177
- "variants": {
178
- "high": {
179
- "options": {
180
- "thinkingBudget": 16384,
181
- "type": "enabled",
182
- "reasoning_effort": "high"
183
- },
184
- "interleaved": {
185
- "field": "reasoning_content"
186
- }
187
- },
188
- "max": {
189
- "options": {
190
- "thinkingBudget": 32768,
191
- "type": "enabled",
192
- "reasoning_effort": "high"
193
- },
194
- "interleaved": {
195
- "field": "reasoning_content"
196
- }
197
- }
198
- }
199
- }
200
- }
201
- },
202
- "github-copilot": {
203
- "models": {
204
- "claude-haiku-4.5": {
205
- "attachment": true,
206
- "reasoning": true,
207
- "temperature": true,
208
- "tool_call": true,
209
- "options": {
210
- "thinking_budget": 10000,
211
- "type": "enabled"
212
- },
213
- "variants": {
214
- "high": {
215
- "options": {
216
- "thinking_budget": 8000,
217
- "type": "enabled"
218
- }
219
- },
220
- "max": {
221
- "options": {
222
- "thinking_budget": 16000,
223
- "type": "enabled"
224
- }
225
- }
226
- }
227
- },
228
- "claude-opus-4.5": {
229
- "attachment": true,
230
- "reasoning": true,
231
- "temperature": true,
232
- "tool_call": true,
233
- "options": {
234
- "thinking_budget": 10000
235
- },
236
- "variants": {
237
- "high": {
238
- "options": {
239
- "thinking_budget": 8000
240
- }
241
- },
242
- "max": {
243
- "options": {
244
- "thinking_budget": 16000
245
- }
246
- }
247
- }
248
- },
249
- "claude-sonnet-4.5": {
250
- "attachment": true,
251
- "reasoning": true,
252
- "temperature": true,
253
- "tool_call": true,
254
- "options": {
255
- "thinking_budget": 10000
256
- },
257
- "variants": {
258
- "high": {
259
- "options": {
260
- "thinking_budget": 8000
261
- }
262
- },
263
- "max": {
264
- "options": {
265
- "thinking_budget": 16000
266
- }
267
- }
268
- }
269
- },
270
- "gpt-5.2": {
271
- "attachment": true,
272
- "reasoning": true,
273
- "temperature": true,
274
- "tool_call": true,
275
- "options": {
276
- "reasoningEffort": "medium",
277
- "reasoningSummary": "auto",
278
- "textVerbosity": "medium"
279
- },
280
- "variants": {
281
- "high": {
282
- "reasoningEffort": "high",
283
- "reasoningSummary": "auto",
284
- "include": ["reasoning.encrypted_content"]
285
- },
286
- "low": {
287
- "reasoningEffort": "low",
288
- "reasoningSummary": "auto"
289
- },
290
- "medium": {
291
- "reasoningEffort": "medium",
292
- "reasoningSummary": "auto"
293
- }
294
- }
295
- },
296
- "gpt-5.2-codex": {
297
- "attachment": true,
298
- "reasoning": true,
299
- "temperature": true,
300
- "tool_call": true,
301
- "options": {
302
- "reasoningEffort": "medium",
303
- "reasoningSummary": "auto",
304
- "textVerbosity": "medium"
305
- },
306
- "variants": {
307
- "fast": {
308
- "disabled": true
309
- },
310
- "high": {
311
- "reasoningEffort": "high",
312
- "reasoningSummary": "auto",
313
- "textVerbosity": "medium",
314
- "include": ["reasoning.encrypted_content"]
315
- },
316
- "low": {
317
- "reasoningEffort": "low",
318
- "reasoningSummary": "auto"
319
- },
320
- "medium": {
321
- "reasoningEffort": "medium",
322
- "reasoningSummary": "auto",
323
- "textVerbosity": "medium"
324
- }
325
- }
326
- }
327
- }
328
- },
329
- "openai": {
330
- "models": {
331
- "gpt-5.2": {
332
- "variants": {
333
- "fast": {
334
- "disabled": true
335
- },
336
- "high": {
337
- "include": ["reasoning.encrypted_content"],
338
- "reasoningEffort": "high",
339
- "reasoningSummary": "auto",
340
- "textVerbosity": "low"
341
- },
342
- "medium": {
343
- "include": ["reasoning.encrypted_content"],
344
- "reasoningEffort": "medium",
345
- "reasoningSummary": "auto",
346
- "textVerbosity": "low"
347
- }
348
- }
349
- },
350
- "gpt-5.2-codex": {
351
- "variants": {
352
- "fast": {
353
- "disabled": true
354
- },
355
- "high": {
356
- "include": ["reasoning.encrypted_content"],
357
- "reasoningEffort": "high",
358
- "reasoningSummary": "auto",
359
- "textVerbosity": "low"
360
- },
361
- "medium": {
362
- "include": ["reasoning.encrypted_content"],
363
- "reasoningEffort": "medium",
364
- "reasoningSummary": "auto",
365
- "textVerbosity": "low"
366
- }
367
- }
368
- }
369
- }
370
- },
371
- "opencode": {
372
- "models": {
373
- "big-pickle": {
374
- "options": {
375
- "reasoningEffort": "high",
376
- "temperature": 1,
377
- "top_k": 40,
378
- "top_p": 0.95
379
- },
380
- "reasoning": true
381
- },
382
- "kimi-k2.5-free": {
383
- "limit": {
384
- "context": 262144,
385
- "output": 32768
386
- },
387
- "temperature": true,
388
- "reasoning": true,
389
- "tool_call": true,
390
- "options": {
391
- "thinking": {
392
- "type": "enabled",
393
- "budgetTokens": 8192,
394
- "reasoning_effort": "high"
395
- },
396
- "interleaved": {
397
- "field": "reasoning_content"
398
- }
399
- },
400
- "variants": {
401
- "high": {
402
- "options": {
403
- "thinkingBudget": 16384,
404
- "type": "enabled",
405
- "reasoning_effort": "high"
406
- },
407
- "interleaved": {
408
- "field": "reasoning_content"
409
- }
410
- },
411
- "max": {
412
- "options": {
413
- "thinkingBudget": 32768,
414
- "type": "enabled",
415
- "reasoning_effort": "high"
416
- },
417
- "interleaved": {
418
- "field": "reasoning_content"
419
- }
420
- }
421
- }
422
- }
423
- }
424
- },
425
- "proxypal": {
426
- "models": {
427
- "gemini-2.5-flash": {
428
- "limit": {
429
- "context": 1000000,
430
- "output": 65536
431
- },
432
- "modalities": {
433
- "input": ["text", "image", "pdf"],
434
- "output": ["text"]
435
- },
436
- "name": "Gemini 2 5 Flash"
437
- },
438
- "gemini-2.5-flash-lite": {
439
- "limit": {
440
- "context": 1000000,
441
- "output": 65536
442
- },
443
- "modalities": {
444
- "input": ["text", "image", "pdf"],
445
- "output": ["text"]
446
- },
447
- "name": "Gemini 2 5 Flash Lite"
448
- },
449
- "gemini-2.5-pro": {
450
- "limit": {
451
- "context": 1000000,
452
- "output": 65536
453
- },
454
- "modalities": {
455
- "input": ["text", "image", "pdf"],
456
- "output": ["text"]
457
- },
458
- "name": "Gemini 2 5 Pro"
459
- },
460
- "gemini-3-flash-preview": {
461
- "limit": {
462
- "context": 1000000,
463
- "output": 65536
464
- },
465
- "modalities": {
466
- "input": ["text", "image", "pdf"],
467
- "output": ["text"]
468
- },
469
- "name": "Gemini 3 Flash Preview",
470
- "options": {
471
- "generationConfig": {
472
- "thinkingConfig": {
473
- "includeThoughts": true,
474
- "thinkingLevel": "medium"
475
- }
476
- }
477
- },
478
- "reasoning": true,
479
- "variants": {
480
- "high": {
481
- "thinkingLevel": "high"
482
- },
483
- "low": {
484
- "thinkingLevel": "low"
485
- },
486
- "medium": {
487
- "thinkingLevel": "medium"
488
- }
489
- }
490
- },
491
- "gemini-3-pro-image-preview": {
492
- "limit": {
493
- "context": 1000000,
494
- "output": 65536
495
- },
496
- "name": "Gemini 3 Pro Image Preview"
497
- },
498
- "gemini-3-pro-preview": {
499
- "limit": {
500
- "context": 1000000,
501
- "output": 65536
502
- },
503
- "modalities": {
504
- "input": ["text", "image", "pdf"],
505
- "output": ["text"]
506
- },
507
- "name": "Gemini 3 Pro Preview",
508
- "options": {
509
- "generationConfig": {
510
- "thinkingConfig": {
511
- "includeThoughts": true,
512
- "thinkingLevel": "medium"
513
- }
514
- }
515
- },
516
- "reasoning": true,
517
- "variants": {
518
- "high": {
519
- "thinkingLevel": "high"
520
- },
521
- "low": {
522
- "thinkingLevel": "low"
523
- },
524
- "medium": {
525
- "thinkingLevel": "medium"
526
- }
527
- }
528
- },
529
- "gemini-claude-opus-4-5-thinking": {
530
- "limit": {
531
- "context": 200000,
532
- "output": 64000
533
- },
534
- "modalities": {
535
- "input": ["text", "image", "pdf"],
536
- "output": ["text"]
537
- },
538
- "name": "Gemini Claude Opus 4 5 Thinking",
539
- "options": {
540
- "thinking": {
541
- "budgetTokens": 8192,
542
- "type": "enabled"
543
- }
544
- },
545
- "reasoning": true,
546
- "variants": {
547
- "low": {
548
- "thinkingConfig": {
549
- "thinkingBudget": 8192
550
- }
551
- },
552
- "max": {
553
- "thinkingConfig": {
554
- "thinkingBudget": 32768
555
- }
556
- }
557
- }
558
- },
559
- "gemini-claude-sonnet-4-5": {
560
- "limit": {
561
- "context": 200000,
562
- "output": 64000
563
- },
564
- "modalities": {
565
- "input": ["text", "image", "pdf"],
566
- "output": ["text"]
567
- },
568
- "name": "Gemini Claude Sonnet 4 5"
569
- },
570
- "gemini-claude-sonnet-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 Sonnet 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
- "glm-4.5": {
601
- "limit": {
602
- "context": 128000,
603
- "output": 16384
604
- },
605
- "name": "Glm 4 5"
606
- },
607
- "glm-4.5-air": {
608
- "limit": {
609
- "context": 128000,
610
- "output": 16384
611
- },
612
- "name": "Glm 4 5 Air"
613
- },
614
- "glm-4.6": {
615
- "limit": {
616
- "context": 128000,
617
- "output": 16384
618
- },
619
- "name": "Glm 4 6"
620
- },
621
- "glm-4.7": {
622
- "limit": {
623
- "context": 128000,
624
- "output": 16384
625
- },
626
- "name": "Glm 4 7"
627
- },
628
- "gpt-5": {
629
- "limit": {
630
- "context": 400000,
631
- "output": 32768
632
- },
633
- "name": "Gpt 5",
634
- "options": {
635
- "reasoningEffort": "medium"
636
- },
637
- "reasoning": true
638
- },
639
- "gpt-5-codex": {
640
- "limit": {
641
- "context": 400000,
642
- "output": 32768
643
- },
644
- "name": "Gpt 5 Codex",
645
- "options": {
646
- "reasoningEffort": "medium"
647
- },
648
- "reasoning": true
649
- },
650
- "gpt-5-codex-mini": {
651
- "limit": {
652
- "context": 400000,
653
- "output": 32768
654
- },
655
- "name": "Gpt 5 Codex Mini",
656
- "options": {
657
- "reasoningEffort": "medium"
658
- },
659
- "reasoning": true
660
- },
661
- "gpt-5.1": {
662
- "limit": {
663
- "context": 400000,
664
- "output": 32768
665
- },
666
- "name": "Gpt 5 1",
667
- "options": {
668
- "reasoningEffort": "medium"
669
- },
670
- "reasoning": true
671
- },
672
- "gpt-5.1-codex": {
673
- "limit": {
674
- "context": 400000,
675
- "output": 32768
676
- },
677
- "name": "Gpt 5 1 Codex",
678
- "options": {
679
- "reasoningEffort": "medium"
680
- },
681
- "reasoning": true
682
- },
683
- "gpt-5.1-codex-max": {
684
- "limit": {
685
- "context": 400000,
686
- "output": 32768
687
- },
688
- "name": "Gpt 5 1 Codex Max",
689
- "options": {
690
- "reasoningEffort": "medium"
691
- },
692
- "reasoning": true
693
- },
694
- "gpt-5.1-codex-mini": {
695
- "limit": {
696
- "context": 400000,
697
- "output": 32768
698
- },
699
- "name": "Gpt 5 1 Codex Mini",
700
- "options": {
701
- "reasoningEffort": "medium"
702
- },
703
- "reasoning": true
704
- },
705
- "gpt-5.2": {
706
- "limit": {
707
- "context": 400000,
708
- "output": 32768
709
- },
710
- "name": "Gpt 5 2",
711
- "options": {
712
- "reasoningEffort": "medium"
713
- },
714
- "reasoning": true
715
- },
716
- "gpt-5.2-codex": {
717
- "limit": {
718
- "context": 400000,
719
- "output": 32768
720
- },
721
- "name": "Gpt 5 2 Codex",
722
- "options": {
723
- "reasoningEffort": "medium"
724
- },
725
- "reasoning": true
726
- },
727
- "gpt-oss-120b-medium": {
728
- "limit": {
729
- "context": 128000,
730
- "output": 16384
731
- },
732
- "name": "Gpt Oss 120b Medium"
733
- },
734
- "kiro-auto": {
735
- "limit": {
736
- "context": 128000,
737
- "output": 16384
738
- },
739
- "name": "Kiro Auto"
740
- },
741
- "kiro-claude-haiku-4-5": {
742
- "limit": {
743
- "context": 200000,
744
- "output": 64000
745
- },
746
- "name": "Kiro Claude Haiku 4 5"
747
- },
748
- "kiro-claude-haiku-4-5-agentic": {
749
- "limit": {
750
- "context": 200000,
751
- "output": 64000
752
- },
753
- "name": "Kiro Claude Haiku 4 5 Agentic"
754
- },
755
- "kiro-claude-opus-4-5": {
756
- "limit": {
757
- "context": 200000,
758
- "output": 64000
759
- },
760
- "name": "Kiro Claude Opus 4 5"
761
- },
762
- "kiro-claude-opus-4-5-agentic": {
763
- "limit": {
764
- "context": 200000,
765
- "output": 64000
766
- },
767
- "name": "Kiro Claude Opus 4 5 Agentic"
768
- },
769
- "kiro-claude-sonnet-4": {
770
- "limit": {
771
- "context": 200000,
772
- "output": 64000
773
- },
774
- "name": "Kiro Claude Sonnet 4"
775
- },
776
- "kiro-claude-sonnet-4-5": {
777
- "limit": {
778
- "context": 200000,
779
- "output": 64000
780
- },
781
- "name": "Kiro Claude Sonnet 4 5"
782
- },
783
- "kiro-claude-sonnet-4-5-agentic": {
784
- "limit": {
785
- "context": 200000,
786
- "output": 64000
787
- },
788
- "name": "Kiro Claude Sonnet 4 5 Agentic"
789
- },
790
- "kiro-claude-sonnet-4-agentic": {
791
- "limit": {
792
- "context": 200000,
793
- "output": 64000
794
- },
795
- "name": "Kiro Claude Sonnet 4 Agentic"
796
- },
797
- "tab_flash_lite_preview": {
798
- "limit": {
799
- "context": 128000,
800
- "output": 16384
801
- },
802
- "name": "Tab_flash_lite_preview"
803
- }
804
- },
805
- "name": "ProxyPal",
806
- "npm": "@ai-sdk/anthropic",
807
- "options": {
808
- "apiKey": "proxypal-local",
809
- "baseURL": "http://127.0.0.1:8317/v1",
810
- "includeUsage": true
811
- }
812
- },
813
- "zai-coding-plan": {
814
- "models": {
815
- "glm-4.6": {
816
- "limit": {
817
- "context": 128000,
818
- "output": 16384
819
- },
820
- "options": {
821
- "temperature": 1,
822
- "thinking": {
823
- "type": "enabled"
824
- }
825
- },
826
- "reasoning": true,
827
- "temperature": true,
828
- "tool_call": true
829
- },
830
- "glm-4.7": {
831
- "id": "glm-4.7",
832
- "interleaved": true,
833
- "limit": {
834
- "context": 200000,
835
- "output": 128000
836
- },
837
- "name": "GLM-4.7",
838
- "options": {
839
- "temperature": 1,
840
- "thinking": {
841
- "type": "enabled"
842
- }
843
- },
844
- "reasoning": true
845
- }
846
- },
847
- "name": "Z.AI Coding Plan"
848
- }
849
- },
850
- "share": "manual",
851
- "small_model": "opencode/gpt-5-nano",
852
- "tui": {
853
- "diff_style": "auto",
854
- "scroll_acceleration": {
855
- "enabled": true
856
- },
857
- "scroll_speed": 3
858
- },
859
- "watcher": {
860
- "ignore": [
861
- "node_modules/**",
862
- ".git/**",
863
- "dist/**",
864
- "build/**",
865
- "*.log",
866
- ".DS_Store"
867
- ]
868
- }
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
+ }
869
907
  }