opencodekit 0.17.0 → 0.17.2

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