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