opencodekit 0.18.4 → 0.18.5

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 (42) hide show
  1. package/dist/index.js +396 -6
  2. package/dist/template/.opencode/AGENTS.md +13 -1
  3. package/dist/template/.opencode/agent/build.md +4 -1
  4. package/dist/template/.opencode/agent/explore.md +5 -35
  5. package/dist/template/.opencode/command/verify.md +63 -12
  6. package/dist/template/.opencode/memory/research/benchmark-framework.md +162 -0
  7. package/dist/template/.opencode/memory/research/effectiveness-audit.md +213 -0
  8. package/dist/template/.opencode/memory.db +0 -0
  9. package/dist/template/.opencode/memory.db-shm +0 -0
  10. package/dist/template/.opencode/memory.db-wal +0 -0
  11. package/dist/template/.opencode/opencode.json +1429 -1678
  12. package/dist/template/.opencode/package.json +1 -1
  13. package/dist/template/.opencode/plugin/lib/memory-helpers.ts +3 -129
  14. package/dist/template/.opencode/plugin/lib/memory-hooks.ts +4 -60
  15. package/dist/template/.opencode/plugin/memory.ts +0 -3
  16. package/dist/template/.opencode/skill/agent-teams/SKILL.md +16 -1
  17. package/dist/template/.opencode/skill/beads/SKILL.md +22 -0
  18. package/dist/template/.opencode/skill/brainstorming/SKILL.md +28 -0
  19. package/dist/template/.opencode/skill/code-navigation/SKILL.md +130 -0
  20. package/dist/template/.opencode/skill/condition-based-waiting/SKILL.md +12 -0
  21. package/dist/template/.opencode/skill/context-management/SKILL.md +122 -113
  22. package/dist/template/.opencode/skill/defense-in-depth/SKILL.md +20 -0
  23. package/dist/template/.opencode/skill/design-system-audit/SKILL.md +113 -112
  24. package/dist/template/.opencode/skill/dispatching-parallel-agents/SKILL.md +8 -0
  25. package/dist/template/.opencode/skill/executing-plans/SKILL.md +7 -0
  26. package/dist/template/.opencode/skill/memory-system/SKILL.md +50 -266
  27. package/dist/template/.opencode/skill/mockup-to-code/SKILL.md +21 -6
  28. package/dist/template/.opencode/skill/receiving-code-review/SKILL.md +8 -0
  29. package/dist/template/.opencode/skill/root-cause-tracing/SKILL.md +15 -0
  30. package/dist/template/.opencode/skill/session-management/SKILL.md +4 -103
  31. package/dist/template/.opencode/skill/subagent-driven-development/SKILL.md +23 -2
  32. package/dist/template/.opencode/skill/swarm-coordination/SKILL.md +17 -1
  33. package/dist/template/.opencode/skill/systematic-debugging/SKILL.md +21 -0
  34. package/dist/template/.opencode/skill/tool-priority/SKILL.md +34 -16
  35. package/dist/template/.opencode/skill/ui-ux-research/SKILL.md +5 -127
  36. package/dist/template/.opencode/skill/verification-before-completion/SKILL.md +36 -0
  37. package/dist/template/.opencode/skill/verification-before-completion/references/VERIFICATION_PROTOCOL.md +133 -29
  38. package/dist/template/.opencode/skill/visual-analysis/SKILL.md +20 -7
  39. package/dist/template/.opencode/skill/writing-plans/SKILL.md +7 -0
  40. package/dist/template/.opencode/tool/context7.ts +9 -1
  41. package/dist/template/.opencode/tool/grepsearch.ts +9 -1
  42. package/package.json +1 -1
@@ -1,1680 +1,1431 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "keybinds": {
4
- "leader": "`",
5
- "session_parent": "<leader>up"
6
- },
7
- "agent": {
8
- "build": {
9
- "description": "Primary development agent with full codebase access",
10
- "model": "github-copilot/claude-opus-4.6"
11
- },
12
- "compaction": {
13
- "description": "Session summarizer for context continuity across compactions"
14
- },
15
- "explore": {
16
- "description": "Fast codebase search specialist",
17
- "model": "github-copilot/claude-haiku-4.5"
18
- },
19
- "general": {
20
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
21
- "model": "github-copilot/gpt-5.3-codex"
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.1-flash-image"
26
- },
27
- "plan": {
28
- "description": "Primary planning agent for architecture and multi-phase execution",
29
- "model": "github-copilot/gpt-5.4"
30
- },
31
- "review": {
32
- "description": "Code review, debugging, and security audit specialist",
33
- "model": "github-copilot/claude-opus-4.6"
34
- },
35
- "scout": {
36
- "description": "External research specialist for library docs and patterns",
37
- "model": "github-copilot/claude-sonnet-4.6"
38
- },
39
- "vision": {
40
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
41
- "model": "github-copilot/gemini-3.1-pro-preview"
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
- ".opencode/memory/project/project.md",
128
- ".opencode/memory/project/roadmap.md",
129
- ".opencode/memory/project/state.md"
130
- ],
131
- "mcp": {
132
- "stitch": {
133
- "enabled": false,
134
- "headers": {
135
- "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
136
- "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
137
- },
138
- "oauth": false,
139
- "type": "remote",
140
- "url": "https://stitch.googleapis.com/mcp"
141
- }
142
- },
143
- "model": "opencode/kimi-k2.5-free",
144
- "permission": {
145
- "bash": {
146
- "*": "allow",
147
- "cat *": "allow",
148
- "git branch *": "allow",
149
- "git checkout *": "ask",
150
- "git clean *": "ask",
151
- "git commit *": "ask",
152
- "git diff *": "allow",
153
- "git log *": "allow",
154
- "git merge *": "ask",
155
- "git push *": "ask",
156
- "git rebase *": "ask",
157
- "git reset *": "ask",
158
- "git status *": "allow",
159
- "ls *": "allow",
160
- "npm *": "allow",
161
- "npm publish *": "ask",
162
- "npm run db:push*": "ask",
163
- "npm run db:reset*": "deny",
164
- "npx *": "allow",
165
- "rm *": "deny",
166
- "rm -rf *": "deny",
167
- "sudo *": "deny"
168
- },
169
- "doom_loop": "ask",
170
- "edit": "allow",
171
- "external_directory": "ask",
172
- "question": "allow",
173
- "read": {
174
- "*": "allow",
175
- "*.env": "deny",
176
- "*.env.*": "deny",
177
- "*.env.example": "allow",
178
- "*.key": "deny",
179
- "*.pem": "deny",
180
- "*credentials*": "deny",
181
- "*password*": "deny",
182
- "*secret*": "deny",
183
- "*token*": "deny"
184
- }
185
- },
186
- "plugin": [
187
- "@tarquinen/opencode-dcp@latest",
188
- "@franlol/opencode-md-table-formatter@0.0.3",
189
- "openslimedit@latest"
190
- ],
191
- "provider": {
192
- "github-copilot": {
193
- "models": {
194
- "claude-haiku-4.5": {
195
- "attachment": true,
196
- "limit": {
197
- "context": 200000,
198
- "output": 64000
199
- },
200
- "options": {
201
- "thinking_budget": 10000,
202
- "type": "enabled"
203
- },
204
- "reasoning": true,
205
- "temperature": true,
206
- "tool_call": true,
207
- "variants": {
208
- "high": {
209
- "options": {
210
- "thinking_budget": 8000,
211
- "type": "enabled"
212
- }
213
- },
214
- "max": {
215
- "options": {
216
- "thinking_budget": 16000,
217
- "type": "enabled"
218
- }
219
- }
220
- }
221
- },
222
- "claude-opus-4.5": {
223
- "attachment": true,
224
- "limit": {
225
- "context": 200000,
226
- "output": 64000
227
- },
228
- "options": {
229
- "thinking_budget": 10000
230
- },
231
- "reasoning": true,
232
- "temperature": true,
233
- "tool_call": true,
234
- "variants": {
235
- "high": {
236
- "options": {
237
- "thinking_budget": 8000
238
- }
239
- },
240
- "max": {
241
- "options": {
242
- "thinking_budget": 16000
243
- }
244
- }
245
- }
246
- },
247
- "claude-opus-4.6": {
248
- "attachment": true,
249
- "limit": {
250
- "context": 200000,
251
- "output": 64000
252
- },
253
- "options": {
254
- "thinking": {
255
- "budget_tokens": 16000,
256
- "type": "enabled"
257
- }
258
- },
259
- "reasoning": true,
260
- "temperature": true,
261
- "tool_call": true,
262
- "variants": {
263
- "adaptive": {
264
- "options": {
265
- "max_tokens": 16000,
266
- "output_config": {
267
- "effort": "max"
268
- },
269
- "thinking": {
270
- "type": "adaptive"
271
- }
272
- }
273
- },
274
- "high": {
275
- "options": {
276
- "thinking": {
277
- "budget_tokens": 24000,
278
- "type": "enabled"
279
- }
280
- }
281
- },
282
- "max": {
283
- "options": {
284
- "thinking": {
285
- "budget_tokens": 32000,
286
- "type": "enabled"
287
- }
288
- }
289
- }
290
- }
291
- },
292
- "claude-sonnet-4.5": {
293
- "attachment": true,
294
- "limit": {
295
- "context": 200000,
296
- "output": 64000
297
- },
298
- "options": {
299
- "thinking_budget": 10000
300
- },
301
- "reasoning": true,
302
- "temperature": true,
303
- "tool_call": true,
304
- "variants": {
305
- "high": {
306
- "options": {
307
- "thinking_budget": 8000
308
- }
309
- },
310
- "max": {
311
- "options": {
312
- "thinking_budget": 16000
313
- }
314
- }
315
- }
316
- },
317
- "claude-sonnet-4.6": {
318
- "attachment": true,
319
- "limit": {
320
- "context": 200000,
321
- "output": 64000
322
- },
323
- "options": {
324
- "thinking": {
325
- "budget_tokens": 16000,
326
- "type": "enabled"
327
- }
328
- },
329
- "reasoning": true,
330
- "temperature": true,
331
- "tool_call": true,
332
- "variants": {
333
- "adaptive": {
334
- "options": {
335
- "max_tokens": 16000,
336
- "output_config": {
337
- "effort": "max"
338
- },
339
- "thinking": {
340
- "type": "adaptive"
341
- }
342
- }
343
- },
344
- "high": {
345
- "options": {
346
- "thinking": {
347
- "budget_tokens": 16000,
348
- "type": "enabled"
349
- }
350
- }
351
- },
352
- "max": {
353
- "options": {
354
- "thinking": {
355
- "budget_tokens": 32000,
356
- "type": "enabled"
357
- }
358
- }
359
- }
360
- }
361
- },
362
- "gpt-5.2": {
363
- "attachment": true,
364
- "limit": {
365
- "context": 400000,
366
- "output": 128000
367
- },
368
- "options": {
369
- "reasoningEffort": "medium",
370
- "reasoningSummary": "auto",
371
- "textVerbosity": "medium"
372
- },
373
- "reasoning": true,
374
- "temperature": true,
375
- "tool_call": true,
376
- "variants": {
377
- "high": {
378
- "include": [
379
- "reasoning.encrypted_content"
380
- ],
381
- "reasoningEffort": "high",
382
- "reasoningSummary": "auto"
383
- },
384
- "low": {
385
- "reasoningEffort": "low",
386
- "reasoningSummary": "auto"
387
- },
388
- "medium": {
389
- "reasoningEffort": "medium",
390
- "reasoningSummary": "auto"
391
- }
392
- }
393
- },
394
- "gpt-5.4": {
395
- "modalities": {
396
- "input": [
397
- "text",
398
- "image"
399
- ],
400
- "output": [
401
- "text"
402
- ]
403
- },
404
- "attachment": true,
405
- "limit": {
406
- "context": 400000,
407
- "output": 128000
408
- },
409
- "options": {
410
- "reasoningEffort": "medium",
411
- "reasoningSummary": "auto",
412
- "textVerbosity": "medium"
413
- },
414
- "reasoning": true,
415
- "temperature": true,
416
- "tool_call": true,
417
- "variants": {
418
- "high": {
419
- "include": [
420
- "reasoning.encrypted_content"
421
- ],
422
- "reasoningEffort": "high",
423
- "reasoningSummary": "auto"
424
- },
425
- "low": {
426
- "reasoningEffort": "low",
427
- "reasoningSummary": "auto"
428
- },
429
- "medium": {
430
- "reasoningEffort": "medium",
431
- "reasoningSummary": "auto"
432
- }
433
- }
434
- },
435
- "gpt-5.2-codex": {
436
- "attachment": true,
437
- "limit": {
438
- "context": 400000,
439
- "output": 128000
440
- },
441
- "options": {
442
- "reasoningEffort": "medium",
443
- "reasoningSummary": "auto",
444
- "textVerbosity": "medium"
445
- },
446
- "reasoning": true,
447
- "temperature": true,
448
- "tool_call": true,
449
- "variants": {
450
- "fast": {
451
- "disabled": true
452
- },
453
- "high": {
454
- "include": [
455
- "reasoning.encrypted_content"
456
- ],
457
- "reasoningEffort": "high",
458
- "reasoningSummary": "auto",
459
- "textVerbosity": "medium"
460
- },
461
- "low": {
462
- "reasoningEffort": "low",
463
- "reasoningSummary": "auto"
464
- },
465
- "medium": {
466
- "reasoningEffort": "medium",
467
- "reasoningSummary": "auto",
468
- "textVerbosity": "medium"
469
- }
470
- }
471
- },
472
- "gpt-5.3-codex": {
473
- "name": "Gpt 5 3 Codex",
474
- "attachment": true,
475
- "limit": {
476
- "context": 400000,
477
- "output": 128000
478
- },
479
- "options": {
480
- "reasoningEffort": "medium",
481
- "reasoningSummary": "auto",
482
- "textVerbosity": "medium"
483
- },
484
- "reasoning": true,
485
- "temperature": true,
486
- "tool_call": true,
487
- "variants": {
488
- "fast": {
489
- "disabled": true
490
- },
491
- "high": {
492
- "include": [
493
- "reasoning.encrypted_content"
494
- ],
495
- "reasoningEffort": "high",
496
- "reasoningSummary": "auto",
497
- "textVerbosity": "medium"
498
- },
499
- "low": {
500
- "reasoningEffort": "low",
501
- "reasoningSummary": "auto"
502
- },
503
- "medium": {
504
- "reasoningEffort": "medium",
505
- "reasoningSummary": "auto",
506
- "textVerbosity": "medium"
507
- }
508
- }
509
- }
510
- },
511
- "options": {
512
- "timeout": 600000
513
- }
514
- },
515
- "kimi-for-coding": {
516
- "models": {
517
- "k2p5": {
518
- "limit": {
519
- "context": 262144,
520
- "output": 32768
521
- },
522
- "options": {
523
- "interleaved": {
524
- "field": "reasoning_content"
525
- },
526
- "thinking": {
527
- "budgetTokens": 8192,
528
- "reasoning_effort": "high",
529
- "type": "enabled"
530
- }
531
- },
532
- "reasoning": true,
533
- "temperature": true,
534
- "tool_call": true,
535
- "variants": {
536
- "high": {
537
- "interleaved": {
538
- "field": "reasoning_content"
539
- },
540
- "options": {
541
- "reasoning_effort": "high",
542
- "thinkingBudget": 16384,
543
- "type": "enabled"
544
- }
545
- },
546
- "max": {
547
- "interleaved": {
548
- "field": "reasoning_content"
549
- },
550
- "options": {
551
- "reasoning_effort": "high",
552
- "thinkingBudget": 32768,
553
- "type": "enabled"
554
- }
555
- }
556
- }
557
- }
558
- }
559
- },
560
- "modal": {
561
- "models": {
562
- "zai-org/GLM-5-FP8": {
563
- "modalities": {
564
- "input": [
565
- "text",
566
- "image",
567
- "pdf"
568
- ],
569
- "output": [
570
- "text"
571
- ]
572
- },
573
- "name": "GLM-5",
574
- "options": {
575
- "maxOutputTokens": 131072,
576
- "reasoningEffort": "high",
577
- "reasoningSummary": "true",
578
- "temperature": 1,
579
- "thinking": {
580
- "type": "enabled"
581
- },
582
- "top_k": 40,
583
- "top_p": 0.95
584
- },
585
- "reasoning": true
586
- }
587
- },
588
- "name": "Modal",
589
- "options": {
590
- "apiKey": "{env:MODAL_API_KEY}",
591
- "baseURL": "https://api.us-west-2.modal.direct/v1"
592
- }
593
- },
594
- "openai": {
595
- "models": {
596
- "gpt-5.2": {
597
- "variants": {
598
- "fast": {
599
- "disabled": true
600
- },
601
- "high": {
602
- "include": [
603
- "reasoning.encrypted_content"
604
- ],
605
- "reasoningEffort": "high",
606
- "reasoningSummary": "auto",
607
- "textVerbosity": "low"
608
- },
609
- "medium": {
610
- "include": [
611
- "reasoning.encrypted_content"
612
- ],
613
- "reasoningEffort": "medium",
614
- "reasoningSummary": "auto",
615
- "textVerbosity": "low"
616
- }
617
- }
618
- },
619
- "gpt-5.4": {
620
- "modalities": {
621
- "input": [
622
- "text",
623
- "image"
624
- ],
625
- "output": [
626
- "text"
627
- ]
628
- },
629
- "attachment": true,
630
- "limit": {
631
- "context": 400000,
632
- "output": 128000
633
- },
634
- "options": {
635
- "reasoningEffort": "medium",
636
- "reasoningSummary": "auto",
637
- "textVerbosity": "medium"
638
- },
639
- "reasoning": true,
640
- "temperature": true,
641
- "tool_call": true,
642
- "variants": {
643
- "high": {
644
- "include": [
645
- "reasoning.encrypted_content"
646
- ],
647
- "reasoningEffort": "high",
648
- "reasoningSummary": "auto"
649
- },
650
- "low": {
651
- "reasoningEffort": "low",
652
- "reasoningSummary": "auto"
653
- },
654
- "medium": {
655
- "reasoningEffort": "medium",
656
- "reasoningSummary": "auto"
657
- }
658
- }
659
- },
660
- "gpt-5.2-codex": {
661
- "variants": {
662
- "fast": {
663
- "disabled": true
664
- },
665
- "high": {
666
- "include": [
667
- "reasoning.encrypted_content"
668
- ],
669
- "reasoningEffort": "high",
670
- "reasoningSummary": "auto",
671
- "textVerbosity": "low"
672
- },
673
- "medium": {
674
- "include": [
675
- "reasoning.encrypted_content"
676
- ],
677
- "reasoningEffort": "medium",
678
- "reasoningSummary": "auto",
679
- "textVerbosity": "low"
680
- },
681
- "xhigh": {
682
- "include": [
683
- "reasoning.encrypted_content"
684
- ],
685
- "reasoningEffort": "xhigh",
686
- "reasoningSummary": "auto",
687
- "textVerbosity": "low"
688
- }
689
- }
690
- },
691
- "gpt-5.3-codex": {
692
- "variants": {
693
- "fast": {
694
- "disabled": true
695
- },
696
- "high": {
697
- "include": [
698
- "reasoning.encrypted_content"
699
- ],
700
- "reasoningEffort": "high",
701
- "reasoningSummary": "auto",
702
- "textVerbosity": "low"
703
- },
704
- "medium": {
705
- "include": [
706
- "reasoning.encrypted_content"
707
- ],
708
- "reasoningEffort": "medium",
709
- "reasoningSummary": "auto",
710
- "textVerbosity": "low"
711
- },
712
- "xhigh": {
713
- "include": [
714
- "reasoning.encrypted_content"
715
- ],
716
- "reasoningEffort": "xhigh",
717
- "reasoningSummary": "auto",
718
- "textVerbosity": "low"
719
- }
720
- }
721
- }
722
- }
723
- },
724
- "opencode": {
725
- "models": {
726
- "big-pickle": {
727
- "options": {
728
- "reasoningEffort": "high",
729
- "temperature": 1,
730
- "top_k": 40,
731
- "top_p": 0.95
732
- },
733
- "reasoning": true
734
- }
735
- }
736
- },
737
- "proxypal": {
738
- "models": {
739
- "claude-haiku-4-5": {
740
- "limit": {
741
- "context": 200000,
742
- "output": 64000
743
- },
744
- "modalities": {
745
- "input": [
746
- "text",
747
- "image",
748
- "pdf"
749
- ],
750
- "output": [
751
- "text"
752
- ]
753
- },
754
- "name": "Claude Haiku 4 5"
755
- },
756
- "claude-haiku-4-5-20251001": {
757
- "limit": {
758
- "context": 200000,
759
- "output": 64000
760
- },
761
- "modalities": {
762
- "input": [
763
- "text",
764
- "image",
765
- "pdf"
766
- ],
767
- "output": [
768
- "text"
769
- ]
770
- },
771
- "name": "Claude Haiku 4 5 20251001"
772
- },
773
- "claude-opus-4-6-thinking": {
774
- "limit": {
775
- "context": 200000,
776
- "output": 64000
777
- },
778
- "modalities": {
779
- "input": [
780
- "text",
781
- "image",
782
- "pdf"
783
- ],
784
- "output": [
785
- "text"
786
- ]
787
- },
788
- "name": "Claude Opus 4 6 Thinking",
789
- "options": {
790
- "thinking": {
791
- "budgetTokens": 8192,
792
- "type": "enabled"
793
- }
794
- },
795
- "reasoning": true,
796
- "variants": {
797
- "low": {
798
- "thinkingConfig": {
799
- "thinkingBudget": 8192
800
- }
801
- },
802
- "max": {
803
- "thinkingConfig": {
804
- "thinkingBudget": 32768
805
- }
806
- }
807
- }
808
- },
809
- "claude-sonnet-4": {
810
- "limit": {
811
- "context": 200000,
812
- "output": 64000
813
- },
814
- "modalities": {
815
- "input": [
816
- "text",
817
- "image",
818
- "pdf"
819
- ],
820
- "output": [
821
- "text"
822
- ]
823
- },
824
- "name": "Claude Sonnet 4"
825
- },
826
- "claude-sonnet-4-20250514": {
827
- "limit": {
828
- "context": 200000,
829
- "output": 64000
830
- },
831
- "modalities": {
832
- "input": [
833
- "text",
834
- "image",
835
- "pdf"
836
- ],
837
- "output": [
838
- "text"
839
- ]
840
- },
841
- "name": "Claude Sonnet 4 20250514"
842
- },
843
- "claude-sonnet-4-5": {
844
- "limit": {
845
- "context": 200000,
846
- "output": 64000
847
- },
848
- "modalities": {
849
- "input": [
850
- "text",
851
- "image",
852
- "pdf"
853
- ],
854
- "output": [
855
- "text"
856
- ]
857
- },
858
- "name": "Claude Sonnet 4 5"
859
- },
860
- "claude-sonnet-4-5-20250929": {
861
- "limit": {
862
- "context": 200000,
863
- "output": 64000
864
- },
865
- "modalities": {
866
- "input": [
867
- "text",
868
- "image",
869
- "pdf"
870
- ],
871
- "output": [
872
- "text"
873
- ]
874
- },
875
- "name": "Claude Sonnet 4 5 20250929"
876
- },
877
- "claude-sonnet-4-6": {
878
- "limit": {
879
- "context": 200000,
880
- "output": 64000
881
- },
882
- "modalities": {
883
- "input": [
884
- "text",
885
- "image",
886
- "pdf"
887
- ],
888
- "output": [
889
- "text"
890
- ]
891
- },
892
- "name": "Claude Sonnet 4 6"
893
- },
894
- "gemini-2.5-flash": {
895
- "limit": {
896
- "context": 1000000,
897
- "output": 65536
898
- },
899
- "modalities": {
900
- "input": [
901
- "text",
902
- "image",
903
- "pdf"
904
- ],
905
- "output": [
906
- "text"
907
- ]
908
- },
909
- "name": "Gemini 2 5 Flash"
910
- },
911
- "gemini-2.5-flash-lite": {
912
- "limit": {
913
- "context": 1000000,
914
- "output": 65536
915
- },
916
- "modalities": {
917
- "input": [
918
- "text",
919
- "image",
920
- "pdf"
921
- ],
922
- "output": [
923
- "text"
924
- ]
925
- },
926
- "name": "Gemini 2 5 Flash Lite"
927
- },
928
- "gemini-2.5-pro": {
929
- "limit": {
930
- "context": 1000000,
931
- "output": 65536
932
- },
933
- "modalities": {
934
- "input": [
935
- "text",
936
- "image",
937
- "pdf"
938
- ],
939
- "output": [
940
- "text"
941
- ]
942
- },
943
- "name": "Gemini 2 5 Pro"
944
- },
945
- "gemini-3-flash": {
946
- "limit": {
947
- "context": 1000000,
948
- "output": 65536
949
- },
950
- "modalities": {
951
- "input": [
952
- "text",
953
- "image",
954
- "pdf"
955
- ],
956
- "output": [
957
- "text"
958
- ]
959
- },
960
- "name": "Gemini 3 Flash",
961
- "options": {
962
- "generationConfig": {
963
- "thinkingConfig": {
964
- "includeThoughts": true,
965
- "thinkingLevel": "medium"
966
- }
967
- }
968
- },
969
- "reasoning": true,
970
- "variants": {
971
- "high": {
972
- "thinkingLevel": "high"
973
- },
974
- "low": {
975
- "thinkingLevel": "low"
976
- },
977
- "medium": {
978
- "thinkingLevel": "medium"
979
- }
980
- }
981
- },
982
- "gemini-3-flash-preview": {
983
- "limit": {
984
- "context": 1000000,
985
- "output": 65536
986
- },
987
- "modalities": {
988
- "input": [
989
- "text",
990
- "image",
991
- "pdf"
992
- ],
993
- "output": [
994
- "text"
995
- ]
996
- },
997
- "name": "Gemini 3 Flash Preview",
998
- "options": {
999
- "generationConfig": {
1000
- "thinkingConfig": {
1001
- "includeThoughts": true,
1002
- "thinkingLevel": "medium"
1003
- }
1004
- }
1005
- },
1006
- "reasoning": true,
1007
- "variants": {
1008
- "high": {
1009
- "thinkingLevel": "high"
1010
- },
1011
- "low": {
1012
- "thinkingLevel": "low"
1013
- },
1014
- "medium": {
1015
- "thinkingLevel": "medium"
1016
- }
1017
- }
1018
- },
1019
- "gemini-3-pro-high": {
1020
- "limit": {
1021
- "context": 1000000,
1022
- "output": 65536
1023
- },
1024
- "modalities": {
1025
- "input": [
1026
- "text",
1027
- "image",
1028
- "pdf"
1029
- ],
1030
- "output": [
1031
- "text"
1032
- ]
1033
- },
1034
- "name": "Gemini 3 Pro High",
1035
- "options": {
1036
- "generationConfig": {
1037
- "thinkingConfig": {
1038
- "includeThoughts": true,
1039
- "thinkingLevel": "medium"
1040
- }
1041
- }
1042
- },
1043
- "reasoning": true,
1044
- "variants": {
1045
- "high": {
1046
- "thinkingLevel": "high"
1047
- },
1048
- "low": {
1049
- "thinkingLevel": "low"
1050
- },
1051
- "medium": {
1052
- "thinkingLevel": "medium"
1053
- }
1054
- }
1055
- },
1056
- "gemini-3-pro-preview": {
1057
- "limit": {
1058
- "context": 1000000,
1059
- "output": 65536
1060
- },
1061
- "modalities": {
1062
- "input": [
1063
- "text",
1064
- "image",
1065
- "pdf"
1066
- ],
1067
- "output": [
1068
- "text"
1069
- ]
1070
- },
1071
- "name": "Gemini 3 Pro Preview",
1072
- "options": {
1073
- "generationConfig": {
1074
- "thinkingConfig": {
1075
- "includeThoughts": true,
1076
- "thinkingLevel": "medium"
1077
- }
1078
- }
1079
- },
1080
- "reasoning": true,
1081
- "variants": {
1082
- "high": {
1083
- "thinkingLevel": "high"
1084
- },
1085
- "low": {
1086
- "thinkingLevel": "low"
1087
- },
1088
- "medium": {
1089
- "thinkingLevel": "medium"
1090
- }
1091
- }
1092
- },
1093
- "gemini-3.1-flash-image": {
1094
- "limit": {
1095
- "context": 1000000,
1096
- "output": 65536
1097
- },
1098
- "name": "Gemini 3 1 Flash Image"
1099
- },
1100
- "gemini-3.1-pro-high": {
1101
- "limit": {
1102
- "context": 1000000,
1103
- "output": 65536
1104
- },
1105
- "modalities": {
1106
- "input": [
1107
- "text",
1108
- "image",
1109
- "pdf"
1110
- ],
1111
- "output": [
1112
- "text"
1113
- ]
1114
- },
1115
- "name": "Gemini 3 1 Pro High",
1116
- "options": {
1117
- "generationConfig": {
1118
- "thinkingConfig": {
1119
- "includeThoughts": true,
1120
- "thinkingLevel": "medium"
1121
- }
1122
- }
1123
- },
1124
- "reasoning": true,
1125
- "variants": {
1126
- "high": {
1127
- "thinkingLevel": "high"
1128
- },
1129
- "low": {
1130
- "thinkingLevel": "low"
1131
- },
1132
- "medium": {
1133
- "thinkingLevel": "medium"
1134
- }
1135
- }
1136
- },
1137
- "gemini-3.1-pro-low": {
1138
- "limit": {
1139
- "context": 1000000,
1140
- "output": 65536
1141
- },
1142
- "modalities": {
1143
- "input": [
1144
- "text",
1145
- "image",
1146
- "pdf"
1147
- ],
1148
- "output": [
1149
- "text"
1150
- ]
1151
- },
1152
- "name": "Gemini 3 1 Pro Low",
1153
- "options": {
1154
- "generationConfig": {
1155
- "thinkingConfig": {
1156
- "includeThoughts": true,
1157
- "thinkingLevel": "medium"
1158
- }
1159
- }
1160
- },
1161
- "reasoning": true,
1162
- "variants": {
1163
- "high": {
1164
- "thinkingLevel": "high"
1165
- },
1166
- "low": {
1167
- "thinkingLevel": "low"
1168
- },
1169
- "medium": {
1170
- "thinkingLevel": "medium"
1171
- }
1172
- }
1173
- },
1174
- "gemini-3.1-pro-preview": {
1175
- "limit": {
1176
- "context": 1000000,
1177
- "output": 65536
1178
- },
1179
- "modalities": {
1180
- "input": [
1181
- "text",
1182
- "image",
1183
- "pdf"
1184
- ],
1185
- "output": [
1186
- "text"
1187
- ]
1188
- },
1189
- "name": "Gemini 3 1 Pro Preview",
1190
- "options": {
1191
- "generationConfig": {
1192
- "thinkingConfig": {
1193
- "includeThoughts": true,
1194
- "thinkingLevel": "medium"
1195
- }
1196
- }
1197
- },
1198
- "reasoning": true,
1199
- "variants": {
1200
- "high": {
1201
- "thinkingLevel": "high"
1202
- },
1203
- "low": {
1204
- "thinkingLevel": "low"
1205
- },
1206
- "medium": {
1207
- "thinkingLevel": "medium"
1208
- }
1209
- }
1210
- },
1211
- "glm-4.5": {
1212
- "limit": {
1213
- "context": 128000,
1214
- "output": 16384
1215
- },
1216
- "name": "Glm 4 5"
1217
- },
1218
- "glm-4.5-air": {
1219
- "limit": {
1220
- "context": 128000,
1221
- "output": 16384
1222
- },
1223
- "name": "Glm 4 5 Air"
1224
- },
1225
- "glm-4.6": {
1226
- "limit": {
1227
- "context": 128000,
1228
- "output": 16384
1229
- },
1230
- "name": "Glm 4 6"
1231
- },
1232
- "glm-4.7": {
1233
- "limit": {
1234
- "context": 128000,
1235
- "output": 16384
1236
- },
1237
- "name": "Glm 4 7"
1238
- },
1239
- "gpt-5": {
1240
- "limit": {
1241
- "context": 400000,
1242
- "output": 32768
1243
- },
1244
- "modalities": {
1245
- "input": [
1246
- "text",
1247
- "image",
1248
- "pdf"
1249
- ],
1250
- "output": [
1251
- "text"
1252
- ]
1253
- },
1254
- "name": "Gpt 5",
1255
- "options": {
1256
- "reasoningEffort": "medium"
1257
- },
1258
- "reasoning": true
1259
- },
1260
- "gpt-5-codex": {
1261
- "limit": {
1262
- "context": 400000,
1263
- "output": 32768
1264
- },
1265
- "modalities": {
1266
- "input": [
1267
- "text",
1268
- "image",
1269
- "pdf"
1270
- ],
1271
- "output": [
1272
- "text"
1273
- ]
1274
- },
1275
- "name": "Gpt 5 Codex",
1276
- "options": {
1277
- "reasoningEffort": "medium"
1278
- },
1279
- "reasoning": true
1280
- },
1281
- "gpt-5-codex-mini": {
1282
- "limit": {
1283
- "context": 400000,
1284
- "output": 32768
1285
- },
1286
- "modalities": {
1287
- "input": [
1288
- "text",
1289
- "image",
1290
- "pdf"
1291
- ],
1292
- "output": [
1293
- "text"
1294
- ]
1295
- },
1296
- "name": "Gpt 5 Codex Mini",
1297
- "options": {
1298
- "reasoningEffort": "medium"
1299
- },
1300
- "reasoning": true
1301
- },
1302
- "gpt-5.1": {
1303
- "limit": {
1304
- "context": 400000,
1305
- "output": 32768
1306
- },
1307
- "modalities": {
1308
- "input": [
1309
- "text",
1310
- "image",
1311
- "pdf"
1312
- ],
1313
- "output": [
1314
- "text"
1315
- ]
1316
- },
1317
- "name": "Gpt 5 1",
1318
- "options": {
1319
- "reasoningEffort": "medium"
1320
- },
1321
- "reasoning": true
1322
- },
1323
- "gpt-5.1-codex": {
1324
- "limit": {
1325
- "context": 400000,
1326
- "output": 32768
1327
- },
1328
- "modalities": {
1329
- "input": [
1330
- "text",
1331
- "image",
1332
- "pdf"
1333
- ],
1334
- "output": [
1335
- "text"
1336
- ]
1337
- },
1338
- "name": "Gpt 5 1 Codex",
1339
- "options": {
1340
- "reasoningEffort": "medium"
1341
- },
1342
- "reasoning": true
1343
- },
1344
- "gpt-5.1-codex-max": {
1345
- "limit": {
1346
- "context": 400000,
1347
- "output": 32768
1348
- },
1349
- "modalities": {
1350
- "input": [
1351
- "text",
1352
- "image",
1353
- "pdf"
1354
- ],
1355
- "output": [
1356
- "text"
1357
- ]
1358
- },
1359
- "name": "Gpt 5 1 Codex Max",
1360
- "options": {
1361
- "reasoningEffort": "medium"
1362
- },
1363
- "reasoning": true
1364
- },
1365
- "gpt-5.1-codex-mini": {
1366
- "limit": {
1367
- "context": 400000,
1368
- "output": 32768
1369
- },
1370
- "modalities": {
1371
- "input": [
1372
- "text",
1373
- "image",
1374
- "pdf"
1375
- ],
1376
- "output": [
1377
- "text"
1378
- ]
1379
- },
1380
- "name": "Gpt 5 1 Codex Mini",
1381
- "options": {
1382
- "reasoningEffort": "medium"
1383
- },
1384
- "reasoning": true
1385
- },
1386
- "gpt-5.2": {
1387
- "limit": {
1388
- "context": 400000,
1389
- "output": 32768
1390
- },
1391
- "modalities": {
1392
- "input": [
1393
- "text",
1394
- "image",
1395
- "pdf"
1396
- ],
1397
- "output": [
1398
- "text"
1399
- ]
1400
- },
1401
- "name": "Gpt 5 2",
1402
- "options": {
1403
- "reasoningEffort": "medium"
1404
- },
1405
- "reasoning": true
1406
- },
1407
- "gpt-5.2-codex": {
1408
- "limit": {
1409
- "context": 400000,
1410
- "output": 32768
1411
- },
1412
- "modalities": {
1413
- "input": [
1414
- "text",
1415
- "image",
1416
- "pdf"
1417
- ],
1418
- "output": [
1419
- "text"
1420
- ]
1421
- },
1422
- "name": "Gpt 5 2 Codex",
1423
- "options": {
1424
- "reasoningEffort": "medium"
1425
- },
1426
- "reasoning": true
1427
- },
1428
- "gpt-5.3-codex": {
1429
- "limit": {
1430
- "context": 400000,
1431
- "output": 32768
1432
- },
1433
- "modalities": {
1434
- "input": [
1435
- "text",
1436
- "image",
1437
- "pdf"
1438
- ],
1439
- "output": [
1440
- "text"
1441
- ]
1442
- },
1443
- "name": "Gpt 5 3 Codex",
1444
- "options": {
1445
- "reasoningEffort": "medium"
1446
- },
1447
- "reasoning": true
1448
- },
1449
- "gpt-5.3-codex-spark": {
1450
- "limit": {
1451
- "context": 400000,
1452
- "output": 32768
1453
- },
1454
- "modalities": {
1455
- "input": [
1456
- "text",
1457
- "image",
1458
- "pdf"
1459
- ],
1460
- "output": [
1461
- "text"
1462
- ]
1463
- },
1464
- "name": "Gpt 5 3 Codex Spark",
1465
- "options": {
1466
- "reasoningEffort": "medium"
1467
- },
1468
- "reasoning": true
1469
- },
1470
- "gpt-oss-120b-medium": {
1471
- "limit": {
1472
- "context": 128000,
1473
- "output": 16384
1474
- },
1475
- "name": "Gpt Oss 120b Medium"
1476
- },
1477
- "kimi-k2": {
1478
- "limit": {
1479
- "context": 128000,
1480
- "output": 16384
1481
- },
1482
- "name": "Kimi K2"
1483
- },
1484
- "kimi-k2-thinking": {
1485
- "limit": {
1486
- "context": 128000,
1487
- "output": 16384
1488
- },
1489
- "name": "Kimi K2 Thinking",
1490
- "options": {
1491
- "reasoningEffort": "high"
1492
- },
1493
- "reasoning": true
1494
- },
1495
- "kimi-k2.5": {
1496
- "limit": {
1497
- "context": 128000,
1498
- "output": 16384
1499
- },
1500
- "name": "Kimi K2 5"
1501
- },
1502
- "kiro-auto": {
1503
- "limit": {
1504
- "context": 128000,
1505
- "output": 16384
1506
- },
1507
- "name": "Kiro Auto"
1508
- },
1509
- "kiro-claude-haiku-4-5": {
1510
- "limit": {
1511
- "context": 200000,
1512
- "output": 64000
1513
- },
1514
- "name": "Kiro Claude Haiku 4 5"
1515
- },
1516
- "kiro-claude-haiku-4-5-agentic": {
1517
- "limit": {
1518
- "context": 200000,
1519
- "output": 64000
1520
- },
1521
- "name": "Kiro Claude Haiku 4 5 Agentic"
1522
- },
1523
- "kiro-claude-sonnet-4": {
1524
- "limit": {
1525
- "context": 200000,
1526
- "output": 64000
1527
- },
1528
- "name": "Kiro Claude Sonnet 4"
1529
- },
1530
- "kiro-claude-sonnet-4-5": {
1531
- "limit": {
1532
- "context": 200000,
1533
- "output": 64000
1534
- },
1535
- "name": "Kiro Claude Sonnet 4 5"
1536
- },
1537
- "kiro-claude-sonnet-4-5-agentic": {
1538
- "limit": {
1539
- "context": 200000,
1540
- "output": 64000
1541
- },
1542
- "name": "Kiro Claude Sonnet 4 5 Agentic"
1543
- },
1544
- "kiro-claude-sonnet-4-agentic": {
1545
- "limit": {
1546
- "context": 200000,
1547
- "output": 64000
1548
- },
1549
- "name": "Kiro Claude Sonnet 4 Agentic"
1550
- },
1551
- "kiro-deepseek-3-2": {
1552
- "limit": {
1553
- "context": 128000,
1554
- "output": 8192
1555
- },
1556
- "name": "Kiro Deepseek 3 2"
1557
- },
1558
- "kiro-deepseek-3-2-agentic": {
1559
- "limit": {
1560
- "context": 128000,
1561
- "output": 8192
1562
- },
1563
- "name": "Kiro Deepseek 3 2 Agentic"
1564
- },
1565
- "kiro-minimax-m2-1": {
1566
- "limit": {
1567
- "context": 128000,
1568
- "output": 16384
1569
- },
1570
- "name": "Kiro Minimax M2 1"
1571
- },
1572
- "kiro-minimax-m2-1-agentic": {
1573
- "limit": {
1574
- "context": 128000,
1575
- "output": 16384
1576
- },
1577
- "name": "Kiro Minimax M2 1 Agentic"
1578
- },
1579
- "kiro-qwen3-coder-next": {
1580
- "limit": {
1581
- "context": 1000000,
1582
- "output": 65536
1583
- },
1584
- "name": "Kiro Qwen3 Coder Next"
1585
- },
1586
- "kiro-qwen3-coder-next-agentic": {
1587
- "limit": {
1588
- "context": 1000000,
1589
- "output": 65536
1590
- },
1591
- "name": "Kiro Qwen3 Coder Next Agentic"
1592
- },
1593
- "tab_flash_lite_preview": {
1594
- "limit": {
1595
- "context": 128000,
1596
- "output": 16384
1597
- },
1598
- "name": "Tab_flash_lite_preview"
1599
- },
1600
- "tab_jump_flash_lite_preview": {
1601
- "limit": {
1602
- "context": 128000,
1603
- "output": 16384
1604
- },
1605
- "name": "Tab_jump_flash_lite_preview"
1606
- }
1607
- },
1608
- "name": "ProxyPal",
1609
- "npm": "@ai-sdk/anthropic",
1610
- "options": {
1611
- "apiKey": "proxypal-local",
1612
- "baseURL": "http://127.0.0.1:8317/v1",
1613
- "includeUsage": true
1614
- }
1615
- },
1616
- "zai-coding-plan": {
1617
- "models": {
1618
- "glm-4.6": {
1619
- "limit": {
1620
- "context": 128000,
1621
- "output": 16384
1622
- },
1623
- "options": {
1624
- "temperature": 1,
1625
- "thinking": {
1626
- "type": "enabled"
1627
- }
1628
- },
1629
- "reasoning": true,
1630
- "temperature": true,
1631
- "tool_call": true
1632
- },
1633
- "glm-4.7": {
1634
- "id": "glm-4.7",
1635
- "interleaved": true,
1636
- "limit": {
1637
- "context": 200000,
1638
- "output": 128000
1639
- },
1640
- "name": "GLM-4.7",
1641
- "options": {
1642
- "temperature": 1,
1643
- "thinking": {
1644
- "type": "enabled"
1645
- }
1646
- },
1647
- "reasoning": true
1648
- },
1649
- "glm-5": {
1650
- "name": "GLM-5",
1651
- "options": {
1652
- "maxOutputTokens": 131072,
1653
- "reasoningEffort": "high",
1654
- "reasoningSummary": "true",
1655
- "temperature": 1,
1656
- "thinking": {
1657
- "type": "enabled"
1658
- },
1659
- "top_k": 40,
1660
- "top_p": 0.95
1661
- },
1662
- "reasoning": true
1663
- }
1664
- },
1665
- "name": "Z.AI Coding Plan"
1666
- }
1667
- },
1668
- "share": "manual",
1669
- "small_model": "opencode/gpt-5-nano",
1670
- "watcher": {
1671
- "ignore": [
1672
- "node_modules/**",
1673
- ".git/**",
1674
- "dist/**",
1675
- "build/**",
1676
- "*.log",
1677
- ".DS_Store"
1678
- ]
1679
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "keybinds": {
4
+ "leader": "`",
5
+ "session_parent": "<leader>up"
6
+ },
7
+ "agent": {
8
+ "build": {
9
+ "description": "Primary development agent with full codebase access",
10
+ "model": "github-copilot/claude-opus-4.6"
11
+ },
12
+ "compaction": {
13
+ "description": "Session summarizer for context continuity across compactions"
14
+ },
15
+ "explore": {
16
+ "description": "Fast codebase search specialist",
17
+ "model": "github-copilot/claude-haiku-4.5"
18
+ },
19
+ "general": {
20
+ "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
21
+ "model": "github-copilot/gpt-5.3-codex"
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.1-flash-image"
26
+ },
27
+ "plan": {
28
+ "description": "Primary planning agent for architecture and multi-phase execution",
29
+ "model": "github-copilot/gpt-5.4"
30
+ },
31
+ "review": {
32
+ "description": "Code review, debugging, and security audit specialist",
33
+ "model": "github-copilot/claude-opus-4.6"
34
+ },
35
+ "scout": {
36
+ "description": "External research specialist for library docs and patterns",
37
+ "model": "github-copilot/claude-sonnet-4.6"
38
+ },
39
+ "vision": {
40
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
41
+ "model": "github-copilot/gemini-3.1-pro-preview"
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
+ "mcp": {
93
+ "tilth": {
94
+ "command": ["npx", "-y", "tilth", "--mcp", "--edit"],
95
+ "enabled": true,
96
+ "timeout": 60000,
97
+ "type": "local"
98
+ },
99
+ "stitch": {
100
+ "enabled": false,
101
+ "headers": {
102
+ "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
103
+ "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
104
+ },
105
+ "oauth": false,
106
+ "type": "remote",
107
+ "url": "https://stitch.googleapis.com/mcp"
108
+ }
109
+ },
110
+ "model": "opencode/minimax-m2.5-free",
111
+ "permission": {
112
+ "bash": {
113
+ "*": "allow",
114
+ "cat *": "allow",
115
+ "git branch *": "allow",
116
+ "git checkout *": "ask",
117
+ "git clean *": "ask",
118
+ "git commit *": "ask",
119
+ "git diff *": "allow",
120
+ "git log *": "allow",
121
+ "git merge *": "ask",
122
+ "git push *": "ask",
123
+ "git rebase *": "ask",
124
+ "git reset *": "ask",
125
+ "git status *": "allow",
126
+ "ls *": "allow",
127
+ "npm *": "allow",
128
+ "npm publish *": "ask",
129
+ "npm run db:push*": "ask",
130
+ "npm run db:reset*": "deny",
131
+ "npx *": "allow",
132
+ "rm *": "deny",
133
+ "rm -rf *": "deny",
134
+ "sudo *": "deny"
135
+ },
136
+ "doom_loop": "ask",
137
+ "edit": "allow",
138
+ "external_directory": "ask",
139
+ "question": "allow",
140
+ "read": {
141
+ "*": "allow",
142
+ "*.env": "deny",
143
+ "*.env.*": "deny",
144
+ "*.env.example": "allow",
145
+ "*.key": "deny",
146
+ "*.pem": "deny",
147
+ "*credentials*": "deny",
148
+ "*password*": "deny",
149
+ "*secret*": "deny",
150
+ "*token*": "deny"
151
+ }
152
+ },
153
+ "plugin": [
154
+ "@tarquinen/opencode-dcp@latest",
155
+ "@franlol/opencode-md-table-formatter@0.0.3",
156
+ "openslimedit@latest"
157
+ ],
158
+ "provider": {
159
+ "github-copilot": {
160
+ "models": {
161
+ "claude-haiku-4.5": {
162
+ "attachment": true,
163
+ "limit": {
164
+ "context": 200000,
165
+ "output": 64000
166
+ },
167
+ "options": {
168
+ "thinking_budget": 10000,
169
+ "type": "enabled"
170
+ },
171
+ "reasoning": true,
172
+ "temperature": true,
173
+ "tool_call": true,
174
+ "variants": {
175
+ "high": {
176
+ "options": {
177
+ "thinking_budget": 8000,
178
+ "type": "enabled"
179
+ }
180
+ },
181
+ "max": {
182
+ "options": {
183
+ "thinking_budget": 16000,
184
+ "type": "enabled"
185
+ }
186
+ }
187
+ }
188
+ },
189
+ "claude-opus-4.5": {
190
+ "attachment": true,
191
+ "limit": {
192
+ "context": 200000,
193
+ "output": 64000
194
+ },
195
+ "options": {
196
+ "thinking_budget": 10000
197
+ },
198
+ "reasoning": true,
199
+ "temperature": true,
200
+ "tool_call": true,
201
+ "variants": {
202
+ "high": {
203
+ "options": {
204
+ "thinking_budget": 8000
205
+ }
206
+ },
207
+ "max": {
208
+ "options": {
209
+ "thinking_budget": 16000
210
+ }
211
+ }
212
+ }
213
+ },
214
+ "claude-opus-4.6": {
215
+ "attachment": true,
216
+ "limit": {
217
+ "context": 200000,
218
+ "output": 64000
219
+ },
220
+ "options": {
221
+ "thinking": {
222
+ "budget_tokens": 16000,
223
+ "type": "enabled"
224
+ }
225
+ },
226
+ "reasoning": true,
227
+ "temperature": true,
228
+ "tool_call": true,
229
+ "variants": {
230
+ "adaptive": {
231
+ "options": {
232
+ "max_tokens": 16000,
233
+ "output_config": {
234
+ "effort": "max"
235
+ },
236
+ "thinking": {
237
+ "type": "adaptive"
238
+ }
239
+ }
240
+ },
241
+ "high": {
242
+ "options": {
243
+ "thinking": {
244
+ "budget_tokens": 24000,
245
+ "type": "enabled"
246
+ }
247
+ }
248
+ },
249
+ "max": {
250
+ "options": {
251
+ "thinking": {
252
+ "budget_tokens": 32000,
253
+ "type": "enabled"
254
+ }
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "claude-sonnet-4.5": {
260
+ "attachment": true,
261
+ "limit": {
262
+ "context": 200000,
263
+ "output": 64000
264
+ },
265
+ "options": {
266
+ "thinking_budget": 10000
267
+ },
268
+ "reasoning": true,
269
+ "temperature": true,
270
+ "tool_call": true,
271
+ "variants": {
272
+ "high": {
273
+ "options": {
274
+ "thinking_budget": 8000
275
+ }
276
+ },
277
+ "max": {
278
+ "options": {
279
+ "thinking_budget": 16000
280
+ }
281
+ }
282
+ }
283
+ },
284
+ "claude-sonnet-4.6": {
285
+ "attachment": true,
286
+ "limit": {
287
+ "context": 200000,
288
+ "output": 64000
289
+ },
290
+ "options": {
291
+ "thinking": {
292
+ "budget_tokens": 16000,
293
+ "type": "enabled"
294
+ }
295
+ },
296
+ "reasoning": true,
297
+ "temperature": true,
298
+ "tool_call": true,
299
+ "variants": {
300
+ "adaptive": {
301
+ "options": {
302
+ "max_tokens": 16000,
303
+ "output_config": {
304
+ "effort": "max"
305
+ },
306
+ "thinking": {
307
+ "type": "adaptive"
308
+ }
309
+ }
310
+ },
311
+ "high": {
312
+ "options": {
313
+ "thinking": {
314
+ "budget_tokens": 16000,
315
+ "type": "enabled"
316
+ }
317
+ }
318
+ },
319
+ "max": {
320
+ "options": {
321
+ "thinking": {
322
+ "budget_tokens": 32000,
323
+ "type": "enabled"
324
+ }
325
+ }
326
+ }
327
+ }
328
+ },
329
+ "gpt-5.2": {
330
+ "attachment": true,
331
+ "limit": {
332
+ "context": 400000,
333
+ "output": 128000
334
+ },
335
+ "options": {
336
+ "reasoningEffort": "medium",
337
+ "reasoningSummary": "auto",
338
+ "textVerbosity": "medium"
339
+ },
340
+ "reasoning": true,
341
+ "temperature": true,
342
+ "tool_call": true,
343
+ "variants": {
344
+ "high": {
345
+ "include": ["reasoning.encrypted_content"],
346
+ "reasoningEffort": "high",
347
+ "reasoningSummary": "auto"
348
+ },
349
+ "low": {
350
+ "reasoningEffort": "low",
351
+ "reasoningSummary": "auto"
352
+ },
353
+ "medium": {
354
+ "reasoningEffort": "medium",
355
+ "reasoningSummary": "auto"
356
+ }
357
+ }
358
+ },
359
+ "gpt-5.4": {
360
+ "modalities": {
361
+ "input": ["text", "image"],
362
+ "output": ["text"]
363
+ },
364
+ "attachment": true,
365
+ "limit": {
366
+ "context": 400000,
367
+ "output": 128000
368
+ },
369
+ "options": {
370
+ "reasoningEffort": "medium",
371
+ "reasoningSummary": "auto",
372
+ "textVerbosity": "medium"
373
+ },
374
+ "reasoning": true,
375
+ "temperature": true,
376
+ "tool_call": true,
377
+ "variants": {
378
+ "high": {
379
+ "include": ["reasoning.encrypted_content"],
380
+ "reasoningEffort": "high",
381
+ "reasoningSummary": "auto"
382
+ },
383
+ "low": {
384
+ "reasoningEffort": "low",
385
+ "reasoningSummary": "auto"
386
+ },
387
+ "medium": {
388
+ "reasoningEffort": "medium",
389
+ "reasoningSummary": "auto"
390
+ }
391
+ }
392
+ },
393
+ "gpt-5.2-codex": {
394
+ "attachment": true,
395
+ "limit": {
396
+ "context": 400000,
397
+ "output": 128000
398
+ },
399
+ "options": {
400
+ "reasoningEffort": "medium",
401
+ "reasoningSummary": "auto",
402
+ "textVerbosity": "medium"
403
+ },
404
+ "reasoning": true,
405
+ "temperature": true,
406
+ "tool_call": true,
407
+ "variants": {
408
+ "fast": {
409
+ "disabled": true
410
+ },
411
+ "high": {
412
+ "include": ["reasoning.encrypted_content"],
413
+ "reasoningEffort": "high",
414
+ "reasoningSummary": "auto",
415
+ "textVerbosity": "medium"
416
+ },
417
+ "low": {
418
+ "reasoningEffort": "low",
419
+ "reasoningSummary": "auto"
420
+ },
421
+ "medium": {
422
+ "reasoningEffort": "medium",
423
+ "reasoningSummary": "auto",
424
+ "textVerbosity": "medium"
425
+ }
426
+ }
427
+ },
428
+ "gpt-5.3-codex": {
429
+ "name": "Gpt 5 3 Codex",
430
+ "attachment": true,
431
+ "limit": {
432
+ "context": 400000,
433
+ "output": 128000
434
+ },
435
+ "options": {
436
+ "reasoningEffort": "medium",
437
+ "reasoningSummary": "auto",
438
+ "textVerbosity": "medium"
439
+ },
440
+ "reasoning": true,
441
+ "temperature": true,
442
+ "tool_call": true,
443
+ "variants": {
444
+ "fast": {
445
+ "disabled": true
446
+ },
447
+ "high": {
448
+ "include": ["reasoning.encrypted_content"],
449
+ "reasoningEffort": "high",
450
+ "reasoningSummary": "auto",
451
+ "textVerbosity": "medium"
452
+ },
453
+ "low": {
454
+ "reasoningEffort": "low",
455
+ "reasoningSummary": "auto"
456
+ },
457
+ "medium": {
458
+ "reasoningEffort": "medium",
459
+ "reasoningSummary": "auto",
460
+ "textVerbosity": "medium"
461
+ }
462
+ }
463
+ }
464
+ },
465
+ "options": {
466
+ "timeout": 600000
467
+ }
468
+ },
469
+ "kimi-for-coding": {
470
+ "models": {
471
+ "k2p5": {
472
+ "limit": {
473
+ "context": 262144,
474
+ "output": 32768
475
+ },
476
+ "options": {
477
+ "interleaved": {
478
+ "field": "reasoning_content"
479
+ },
480
+ "thinking": {
481
+ "budgetTokens": 8192,
482
+ "reasoning_effort": "high",
483
+ "type": "enabled"
484
+ }
485
+ },
486
+ "reasoning": true,
487
+ "temperature": true,
488
+ "tool_call": true,
489
+ "variants": {
490
+ "high": {
491
+ "interleaved": {
492
+ "field": "reasoning_content"
493
+ },
494
+ "options": {
495
+ "reasoning_effort": "high",
496
+ "thinkingBudget": 16384,
497
+ "type": "enabled"
498
+ }
499
+ },
500
+ "max": {
501
+ "interleaved": {
502
+ "field": "reasoning_content"
503
+ },
504
+ "options": {
505
+ "reasoning_effort": "high",
506
+ "thinkingBudget": 32768,
507
+ "type": "enabled"
508
+ }
509
+ }
510
+ }
511
+ }
512
+ }
513
+ },
514
+ "modal": {
515
+ "models": {
516
+ "zai-org/GLM-5-FP8": {
517
+ "modalities": {
518
+ "input": ["text", "image", "pdf"],
519
+ "output": ["text"]
520
+ },
521
+ "name": "GLM-5",
522
+ "options": {
523
+ "maxOutputTokens": 131072,
524
+ "reasoningEffort": "high",
525
+ "reasoningSummary": "true",
526
+ "temperature": 1,
527
+ "thinking": {
528
+ "type": "enabled"
529
+ },
530
+ "top_k": 40,
531
+ "top_p": 0.95
532
+ },
533
+ "reasoning": true
534
+ }
535
+ },
536
+ "name": "Modal",
537
+ "options": {
538
+ "apiKey": "{env:MODAL_API_KEY}",
539
+ "baseURL": "https://api.us-west-2.modal.direct/v1"
540
+ }
541
+ },
542
+ "openai": {
543
+ "models": {
544
+ "gpt-5.2": {
545
+ "variants": {
546
+ "fast": {
547
+ "disabled": true
548
+ },
549
+ "high": {
550
+ "include": ["reasoning.encrypted_content"],
551
+ "reasoningEffort": "high",
552
+ "reasoningSummary": "auto",
553
+ "textVerbosity": "low"
554
+ },
555
+ "medium": {
556
+ "include": ["reasoning.encrypted_content"],
557
+ "reasoningEffort": "medium",
558
+ "reasoningSummary": "auto",
559
+ "textVerbosity": "low"
560
+ }
561
+ }
562
+ },
563
+ "gpt-5.4": {
564
+ "modalities": {
565
+ "input": ["text", "image"],
566
+ "output": ["text"]
567
+ },
568
+ "attachment": true,
569
+ "limit": {
570
+ "context": 400000,
571
+ "output": 128000
572
+ },
573
+ "options": {
574
+ "reasoningEffort": "medium",
575
+ "reasoningSummary": "auto",
576
+ "textVerbosity": "medium"
577
+ },
578
+ "reasoning": true,
579
+ "temperature": true,
580
+ "tool_call": true,
581
+ "variants": {
582
+ "high": {
583
+ "include": ["reasoning.encrypted_content"],
584
+ "reasoningEffort": "high",
585
+ "reasoningSummary": "auto"
586
+ },
587
+ "low": {
588
+ "reasoningEffort": "low",
589
+ "reasoningSummary": "auto"
590
+ },
591
+ "medium": {
592
+ "reasoningEffort": "medium",
593
+ "reasoningSummary": "auto"
594
+ }
595
+ }
596
+ },
597
+ "gpt-5.2-codex": {
598
+ "variants": {
599
+ "fast": {
600
+ "disabled": true
601
+ },
602
+ "high": {
603
+ "include": ["reasoning.encrypted_content"],
604
+ "reasoningEffort": "high",
605
+ "reasoningSummary": "auto",
606
+ "textVerbosity": "low"
607
+ },
608
+ "medium": {
609
+ "include": ["reasoning.encrypted_content"],
610
+ "reasoningEffort": "medium",
611
+ "reasoningSummary": "auto",
612
+ "textVerbosity": "low"
613
+ },
614
+ "xhigh": {
615
+ "include": ["reasoning.encrypted_content"],
616
+ "reasoningEffort": "xhigh",
617
+ "reasoningSummary": "auto",
618
+ "textVerbosity": "low"
619
+ }
620
+ }
621
+ },
622
+ "gpt-5.3-codex": {
623
+ "variants": {
624
+ "fast": {
625
+ "disabled": true
626
+ },
627
+ "high": {
628
+ "include": ["reasoning.encrypted_content"],
629
+ "reasoningEffort": "high",
630
+ "reasoningSummary": "auto",
631
+ "textVerbosity": "low"
632
+ },
633
+ "medium": {
634
+ "include": ["reasoning.encrypted_content"],
635
+ "reasoningEffort": "medium",
636
+ "reasoningSummary": "auto",
637
+ "textVerbosity": "low"
638
+ },
639
+ "xhigh": {
640
+ "include": ["reasoning.encrypted_content"],
641
+ "reasoningEffort": "xhigh",
642
+ "reasoningSummary": "auto",
643
+ "textVerbosity": "low"
644
+ }
645
+ }
646
+ }
647
+ }
648
+ },
649
+ "opencode": {
650
+ "models": {
651
+ "big-pickle": {
652
+ "options": {
653
+ "reasoningEffort": "high",
654
+ "temperature": 1,
655
+ "top_k": 40,
656
+ "top_p": 0.95
657
+ },
658
+ "reasoning": true
659
+ }
660
+ }
661
+ },
662
+ "proxypal": {
663
+ "models": {
664
+ "claude-haiku-4-5": {
665
+ "limit": {
666
+ "context": 200000,
667
+ "output": 64000
668
+ },
669
+ "modalities": {
670
+ "input": ["text", "image", "pdf"],
671
+ "output": ["text"]
672
+ },
673
+ "name": "Claude Haiku 4 5"
674
+ },
675
+ "claude-haiku-4-5-20251001": {
676
+ "limit": {
677
+ "context": 200000,
678
+ "output": 64000
679
+ },
680
+ "modalities": {
681
+ "input": ["text", "image", "pdf"],
682
+ "output": ["text"]
683
+ },
684
+ "name": "Claude Haiku 4 5 20251001"
685
+ },
686
+ "claude-opus-4-6-thinking": {
687
+ "limit": {
688
+ "context": 200000,
689
+ "output": 64000
690
+ },
691
+ "modalities": {
692
+ "input": ["text", "image", "pdf"],
693
+ "output": ["text"]
694
+ },
695
+ "name": "Claude Opus 4 6 Thinking",
696
+ "options": {
697
+ "thinking": {
698
+ "budgetTokens": 8192,
699
+ "type": "enabled"
700
+ }
701
+ },
702
+ "reasoning": true,
703
+ "variants": {
704
+ "low": {
705
+ "thinkingConfig": {
706
+ "thinkingBudget": 8192
707
+ }
708
+ },
709
+ "max": {
710
+ "thinkingConfig": {
711
+ "thinkingBudget": 32768
712
+ }
713
+ }
714
+ }
715
+ },
716
+ "claude-sonnet-4": {
717
+ "limit": {
718
+ "context": 200000,
719
+ "output": 64000
720
+ },
721
+ "modalities": {
722
+ "input": ["text", "image", "pdf"],
723
+ "output": ["text"]
724
+ },
725
+ "name": "Claude Sonnet 4"
726
+ },
727
+ "claude-sonnet-4-20250514": {
728
+ "limit": {
729
+ "context": 200000,
730
+ "output": 64000
731
+ },
732
+ "modalities": {
733
+ "input": ["text", "image", "pdf"],
734
+ "output": ["text"]
735
+ },
736
+ "name": "Claude Sonnet 4 20250514"
737
+ },
738
+ "claude-sonnet-4-5": {
739
+ "limit": {
740
+ "context": 200000,
741
+ "output": 64000
742
+ },
743
+ "modalities": {
744
+ "input": ["text", "image", "pdf"],
745
+ "output": ["text"]
746
+ },
747
+ "name": "Claude Sonnet 4 5"
748
+ },
749
+ "claude-sonnet-4-5-20250929": {
750
+ "limit": {
751
+ "context": 200000,
752
+ "output": 64000
753
+ },
754
+ "modalities": {
755
+ "input": ["text", "image", "pdf"],
756
+ "output": ["text"]
757
+ },
758
+ "name": "Claude Sonnet 4 5 20250929"
759
+ },
760
+ "claude-sonnet-4-6": {
761
+ "limit": {
762
+ "context": 200000,
763
+ "output": 64000
764
+ },
765
+ "modalities": {
766
+ "input": ["text", "image", "pdf"],
767
+ "output": ["text"]
768
+ },
769
+ "name": "Claude Sonnet 4 6"
770
+ },
771
+ "gemini-2.5-flash": {
772
+ "limit": {
773
+ "context": 1000000,
774
+ "output": 65536
775
+ },
776
+ "modalities": {
777
+ "input": ["text", "image", "pdf"],
778
+ "output": ["text"]
779
+ },
780
+ "name": "Gemini 2 5 Flash"
781
+ },
782
+ "gemini-2.5-flash-lite": {
783
+ "limit": {
784
+ "context": 1000000,
785
+ "output": 65536
786
+ },
787
+ "modalities": {
788
+ "input": ["text", "image", "pdf"],
789
+ "output": ["text"]
790
+ },
791
+ "name": "Gemini 2 5 Flash Lite"
792
+ },
793
+ "gemini-2.5-pro": {
794
+ "limit": {
795
+ "context": 1000000,
796
+ "output": 65536
797
+ },
798
+ "modalities": {
799
+ "input": ["text", "image", "pdf"],
800
+ "output": ["text"]
801
+ },
802
+ "name": "Gemini 2 5 Pro"
803
+ },
804
+ "gemini-3-flash": {
805
+ "limit": {
806
+ "context": 1000000,
807
+ "output": 65536
808
+ },
809
+ "modalities": {
810
+ "input": ["text", "image", "pdf"],
811
+ "output": ["text"]
812
+ },
813
+ "name": "Gemini 3 Flash",
814
+ "options": {
815
+ "generationConfig": {
816
+ "thinkingConfig": {
817
+ "includeThoughts": true,
818
+ "thinkingLevel": "medium"
819
+ }
820
+ }
821
+ },
822
+ "reasoning": true,
823
+ "variants": {
824
+ "high": {
825
+ "thinkingLevel": "high"
826
+ },
827
+ "low": {
828
+ "thinkingLevel": "low"
829
+ },
830
+ "medium": {
831
+ "thinkingLevel": "medium"
832
+ }
833
+ }
834
+ },
835
+ "gemini-3-flash-preview": {
836
+ "limit": {
837
+ "context": 1000000,
838
+ "output": 65536
839
+ },
840
+ "modalities": {
841
+ "input": ["text", "image", "pdf"],
842
+ "output": ["text"]
843
+ },
844
+ "name": "Gemini 3 Flash Preview",
845
+ "options": {
846
+ "generationConfig": {
847
+ "thinkingConfig": {
848
+ "includeThoughts": true,
849
+ "thinkingLevel": "medium"
850
+ }
851
+ }
852
+ },
853
+ "reasoning": true,
854
+ "variants": {
855
+ "high": {
856
+ "thinkingLevel": "high"
857
+ },
858
+ "low": {
859
+ "thinkingLevel": "low"
860
+ },
861
+ "medium": {
862
+ "thinkingLevel": "medium"
863
+ }
864
+ }
865
+ },
866
+ "gemini-3-pro-high": {
867
+ "limit": {
868
+ "context": 1000000,
869
+ "output": 65536
870
+ },
871
+ "modalities": {
872
+ "input": ["text", "image", "pdf"],
873
+ "output": ["text"]
874
+ },
875
+ "name": "Gemini 3 Pro High",
876
+ "options": {
877
+ "generationConfig": {
878
+ "thinkingConfig": {
879
+ "includeThoughts": true,
880
+ "thinkingLevel": "medium"
881
+ }
882
+ }
883
+ },
884
+ "reasoning": true,
885
+ "variants": {
886
+ "high": {
887
+ "thinkingLevel": "high"
888
+ },
889
+ "low": {
890
+ "thinkingLevel": "low"
891
+ },
892
+ "medium": {
893
+ "thinkingLevel": "medium"
894
+ }
895
+ }
896
+ },
897
+ "gemini-3-pro-preview": {
898
+ "limit": {
899
+ "context": 1000000,
900
+ "output": 65536
901
+ },
902
+ "modalities": {
903
+ "input": ["text", "image", "pdf"],
904
+ "output": ["text"]
905
+ },
906
+ "name": "Gemini 3 Pro Preview",
907
+ "options": {
908
+ "generationConfig": {
909
+ "thinkingConfig": {
910
+ "includeThoughts": true,
911
+ "thinkingLevel": "medium"
912
+ }
913
+ }
914
+ },
915
+ "reasoning": true,
916
+ "variants": {
917
+ "high": {
918
+ "thinkingLevel": "high"
919
+ },
920
+ "low": {
921
+ "thinkingLevel": "low"
922
+ },
923
+ "medium": {
924
+ "thinkingLevel": "medium"
925
+ }
926
+ }
927
+ },
928
+ "gemini-3.1-flash-image": {
929
+ "limit": {
930
+ "context": 1000000,
931
+ "output": 65536
932
+ },
933
+ "name": "Gemini 3 1 Flash Image"
934
+ },
935
+ "gemini-3.1-pro-high": {
936
+ "limit": {
937
+ "context": 1000000,
938
+ "output": 65536
939
+ },
940
+ "modalities": {
941
+ "input": ["text", "image", "pdf"],
942
+ "output": ["text"]
943
+ },
944
+ "name": "Gemini 3 1 Pro High",
945
+ "options": {
946
+ "generationConfig": {
947
+ "thinkingConfig": {
948
+ "includeThoughts": true,
949
+ "thinkingLevel": "medium"
950
+ }
951
+ }
952
+ },
953
+ "reasoning": true,
954
+ "variants": {
955
+ "high": {
956
+ "thinkingLevel": "high"
957
+ },
958
+ "low": {
959
+ "thinkingLevel": "low"
960
+ },
961
+ "medium": {
962
+ "thinkingLevel": "medium"
963
+ }
964
+ }
965
+ },
966
+ "gemini-3.1-pro-low": {
967
+ "limit": {
968
+ "context": 1000000,
969
+ "output": 65536
970
+ },
971
+ "modalities": {
972
+ "input": ["text", "image", "pdf"],
973
+ "output": ["text"]
974
+ },
975
+ "name": "Gemini 3 1 Pro Low",
976
+ "options": {
977
+ "generationConfig": {
978
+ "thinkingConfig": {
979
+ "includeThoughts": true,
980
+ "thinkingLevel": "medium"
981
+ }
982
+ }
983
+ },
984
+ "reasoning": true,
985
+ "variants": {
986
+ "high": {
987
+ "thinkingLevel": "high"
988
+ },
989
+ "low": {
990
+ "thinkingLevel": "low"
991
+ },
992
+ "medium": {
993
+ "thinkingLevel": "medium"
994
+ }
995
+ }
996
+ },
997
+ "gemini-3.1-pro-preview": {
998
+ "limit": {
999
+ "context": 1000000,
1000
+ "output": 65536
1001
+ },
1002
+ "modalities": {
1003
+ "input": ["text", "image", "pdf"],
1004
+ "output": ["text"]
1005
+ },
1006
+ "name": "Gemini 3 1 Pro Preview",
1007
+ "options": {
1008
+ "generationConfig": {
1009
+ "thinkingConfig": {
1010
+ "includeThoughts": true,
1011
+ "thinkingLevel": "medium"
1012
+ }
1013
+ }
1014
+ },
1015
+ "reasoning": true,
1016
+ "variants": {
1017
+ "high": {
1018
+ "thinkingLevel": "high"
1019
+ },
1020
+ "low": {
1021
+ "thinkingLevel": "low"
1022
+ },
1023
+ "medium": {
1024
+ "thinkingLevel": "medium"
1025
+ }
1026
+ }
1027
+ },
1028
+ "glm-4.5": {
1029
+ "limit": {
1030
+ "context": 128000,
1031
+ "output": 16384
1032
+ },
1033
+ "name": "Glm 4 5"
1034
+ },
1035
+ "glm-4.5-air": {
1036
+ "limit": {
1037
+ "context": 128000,
1038
+ "output": 16384
1039
+ },
1040
+ "name": "Glm 4 5 Air"
1041
+ },
1042
+ "glm-4.6": {
1043
+ "limit": {
1044
+ "context": 128000,
1045
+ "output": 16384
1046
+ },
1047
+ "name": "Glm 4 6"
1048
+ },
1049
+ "glm-4.7": {
1050
+ "limit": {
1051
+ "context": 128000,
1052
+ "output": 16384
1053
+ },
1054
+ "name": "Glm 4 7"
1055
+ },
1056
+ "gpt-5": {
1057
+ "limit": {
1058
+ "context": 400000,
1059
+ "output": 32768
1060
+ },
1061
+ "modalities": {
1062
+ "input": ["text", "image", "pdf"],
1063
+ "output": ["text"]
1064
+ },
1065
+ "name": "Gpt 5",
1066
+ "options": {
1067
+ "reasoningEffort": "medium"
1068
+ },
1069
+ "reasoning": true
1070
+ },
1071
+ "gpt-5-codex": {
1072
+ "limit": {
1073
+ "context": 400000,
1074
+ "output": 32768
1075
+ },
1076
+ "modalities": {
1077
+ "input": ["text", "image", "pdf"],
1078
+ "output": ["text"]
1079
+ },
1080
+ "name": "Gpt 5 Codex",
1081
+ "options": {
1082
+ "reasoningEffort": "medium"
1083
+ },
1084
+ "reasoning": true
1085
+ },
1086
+ "gpt-5-codex-mini": {
1087
+ "limit": {
1088
+ "context": 400000,
1089
+ "output": 32768
1090
+ },
1091
+ "modalities": {
1092
+ "input": ["text", "image", "pdf"],
1093
+ "output": ["text"]
1094
+ },
1095
+ "name": "Gpt 5 Codex Mini",
1096
+ "options": {
1097
+ "reasoningEffort": "medium"
1098
+ },
1099
+ "reasoning": true
1100
+ },
1101
+ "gpt-5.1": {
1102
+ "limit": {
1103
+ "context": 400000,
1104
+ "output": 32768
1105
+ },
1106
+ "modalities": {
1107
+ "input": ["text", "image", "pdf"],
1108
+ "output": ["text"]
1109
+ },
1110
+ "name": "Gpt 5 1",
1111
+ "options": {
1112
+ "reasoningEffort": "medium"
1113
+ },
1114
+ "reasoning": true
1115
+ },
1116
+ "gpt-5.1-codex": {
1117
+ "limit": {
1118
+ "context": 400000,
1119
+ "output": 32768
1120
+ },
1121
+ "modalities": {
1122
+ "input": ["text", "image", "pdf"],
1123
+ "output": ["text"]
1124
+ },
1125
+ "name": "Gpt 5 1 Codex",
1126
+ "options": {
1127
+ "reasoningEffort": "medium"
1128
+ },
1129
+ "reasoning": true
1130
+ },
1131
+ "gpt-5.1-codex-max": {
1132
+ "limit": {
1133
+ "context": 400000,
1134
+ "output": 32768
1135
+ },
1136
+ "modalities": {
1137
+ "input": ["text", "image", "pdf"],
1138
+ "output": ["text"]
1139
+ },
1140
+ "name": "Gpt 5 1 Codex Max",
1141
+ "options": {
1142
+ "reasoningEffort": "medium"
1143
+ },
1144
+ "reasoning": true
1145
+ },
1146
+ "gpt-5.1-codex-mini": {
1147
+ "limit": {
1148
+ "context": 400000,
1149
+ "output": 32768
1150
+ },
1151
+ "modalities": {
1152
+ "input": ["text", "image", "pdf"],
1153
+ "output": ["text"]
1154
+ },
1155
+ "name": "Gpt 5 1 Codex Mini",
1156
+ "options": {
1157
+ "reasoningEffort": "medium"
1158
+ },
1159
+ "reasoning": true
1160
+ },
1161
+ "gpt-5.2": {
1162
+ "limit": {
1163
+ "context": 400000,
1164
+ "output": 32768
1165
+ },
1166
+ "modalities": {
1167
+ "input": ["text", "image", "pdf"],
1168
+ "output": ["text"]
1169
+ },
1170
+ "name": "Gpt 5 2",
1171
+ "options": {
1172
+ "reasoningEffort": "medium"
1173
+ },
1174
+ "reasoning": true
1175
+ },
1176
+ "gpt-5.2-codex": {
1177
+ "limit": {
1178
+ "context": 400000,
1179
+ "output": 32768
1180
+ },
1181
+ "modalities": {
1182
+ "input": ["text", "image", "pdf"],
1183
+ "output": ["text"]
1184
+ },
1185
+ "name": "Gpt 5 2 Codex",
1186
+ "options": {
1187
+ "reasoningEffort": "medium"
1188
+ },
1189
+ "reasoning": true
1190
+ },
1191
+ "gpt-5.3-codex": {
1192
+ "limit": {
1193
+ "context": 400000,
1194
+ "output": 32768
1195
+ },
1196
+ "modalities": {
1197
+ "input": ["text", "image", "pdf"],
1198
+ "output": ["text"]
1199
+ },
1200
+ "name": "Gpt 5 3 Codex",
1201
+ "options": {
1202
+ "reasoningEffort": "medium"
1203
+ },
1204
+ "reasoning": true
1205
+ },
1206
+ "gpt-5.3-codex-spark": {
1207
+ "limit": {
1208
+ "context": 400000,
1209
+ "output": 32768
1210
+ },
1211
+ "modalities": {
1212
+ "input": ["text", "image", "pdf"],
1213
+ "output": ["text"]
1214
+ },
1215
+ "name": "Gpt 5 3 Codex Spark",
1216
+ "options": {
1217
+ "reasoningEffort": "medium"
1218
+ },
1219
+ "reasoning": true
1220
+ },
1221
+ "gpt-oss-120b-medium": {
1222
+ "limit": {
1223
+ "context": 128000,
1224
+ "output": 16384
1225
+ },
1226
+ "name": "Gpt Oss 120b Medium"
1227
+ },
1228
+ "kimi-k2": {
1229
+ "limit": {
1230
+ "context": 128000,
1231
+ "output": 16384
1232
+ },
1233
+ "name": "Kimi K2"
1234
+ },
1235
+ "kimi-k2-thinking": {
1236
+ "limit": {
1237
+ "context": 128000,
1238
+ "output": 16384
1239
+ },
1240
+ "name": "Kimi K2 Thinking",
1241
+ "options": {
1242
+ "reasoningEffort": "high"
1243
+ },
1244
+ "reasoning": true
1245
+ },
1246
+ "kimi-k2.5": {
1247
+ "limit": {
1248
+ "context": 128000,
1249
+ "output": 16384
1250
+ },
1251
+ "name": "Kimi K2 5"
1252
+ },
1253
+ "kiro-auto": {
1254
+ "limit": {
1255
+ "context": 128000,
1256
+ "output": 16384
1257
+ },
1258
+ "name": "Kiro Auto"
1259
+ },
1260
+ "kiro-claude-haiku-4-5": {
1261
+ "limit": {
1262
+ "context": 200000,
1263
+ "output": 64000
1264
+ },
1265
+ "name": "Kiro Claude Haiku 4 5"
1266
+ },
1267
+ "kiro-claude-haiku-4-5-agentic": {
1268
+ "limit": {
1269
+ "context": 200000,
1270
+ "output": 64000
1271
+ },
1272
+ "name": "Kiro Claude Haiku 4 5 Agentic"
1273
+ },
1274
+ "kiro-claude-sonnet-4": {
1275
+ "limit": {
1276
+ "context": 200000,
1277
+ "output": 64000
1278
+ },
1279
+ "name": "Kiro Claude Sonnet 4"
1280
+ },
1281
+ "kiro-claude-sonnet-4-5": {
1282
+ "limit": {
1283
+ "context": 200000,
1284
+ "output": 64000
1285
+ },
1286
+ "name": "Kiro Claude Sonnet 4 5"
1287
+ },
1288
+ "kiro-claude-sonnet-4-5-agentic": {
1289
+ "limit": {
1290
+ "context": 200000,
1291
+ "output": 64000
1292
+ },
1293
+ "name": "Kiro Claude Sonnet 4 5 Agentic"
1294
+ },
1295
+ "kiro-claude-sonnet-4-agentic": {
1296
+ "limit": {
1297
+ "context": 200000,
1298
+ "output": 64000
1299
+ },
1300
+ "name": "Kiro Claude Sonnet 4 Agentic"
1301
+ },
1302
+ "kiro-deepseek-3-2": {
1303
+ "limit": {
1304
+ "context": 128000,
1305
+ "output": 8192
1306
+ },
1307
+ "name": "Kiro Deepseek 3 2"
1308
+ },
1309
+ "kiro-deepseek-3-2-agentic": {
1310
+ "limit": {
1311
+ "context": 128000,
1312
+ "output": 8192
1313
+ },
1314
+ "name": "Kiro Deepseek 3 2 Agentic"
1315
+ },
1316
+ "kiro-minimax-m2-1": {
1317
+ "limit": {
1318
+ "context": 128000,
1319
+ "output": 16384
1320
+ },
1321
+ "name": "Kiro Minimax M2 1"
1322
+ },
1323
+ "kiro-minimax-m2-1-agentic": {
1324
+ "limit": {
1325
+ "context": 128000,
1326
+ "output": 16384
1327
+ },
1328
+ "name": "Kiro Minimax M2 1 Agentic"
1329
+ },
1330
+ "kiro-qwen3-coder-next": {
1331
+ "limit": {
1332
+ "context": 1000000,
1333
+ "output": 65536
1334
+ },
1335
+ "name": "Kiro Qwen3 Coder Next"
1336
+ },
1337
+ "kiro-qwen3-coder-next-agentic": {
1338
+ "limit": {
1339
+ "context": 1000000,
1340
+ "output": 65536
1341
+ },
1342
+ "name": "Kiro Qwen3 Coder Next Agentic"
1343
+ },
1344
+ "tab_flash_lite_preview": {
1345
+ "limit": {
1346
+ "context": 128000,
1347
+ "output": 16384
1348
+ },
1349
+ "name": "Tab_flash_lite_preview"
1350
+ },
1351
+ "tab_jump_flash_lite_preview": {
1352
+ "limit": {
1353
+ "context": 128000,
1354
+ "output": 16384
1355
+ },
1356
+ "name": "Tab_jump_flash_lite_preview"
1357
+ }
1358
+ },
1359
+ "name": "ProxyPal",
1360
+ "npm": "@ai-sdk/anthropic",
1361
+ "options": {
1362
+ "apiKey": "proxypal-local",
1363
+ "baseURL": "http://127.0.0.1:8317/v1",
1364
+ "includeUsage": true
1365
+ }
1366
+ },
1367
+ "zai-coding-plan": {
1368
+ "models": {
1369
+ "glm-4.6": {
1370
+ "limit": {
1371
+ "context": 128000,
1372
+ "output": 16384
1373
+ },
1374
+ "options": {
1375
+ "temperature": 1,
1376
+ "thinking": {
1377
+ "type": "enabled"
1378
+ }
1379
+ },
1380
+ "reasoning": true,
1381
+ "temperature": true,
1382
+ "tool_call": true
1383
+ },
1384
+ "glm-4.7": {
1385
+ "id": "glm-4.7",
1386
+ "interleaved": true,
1387
+ "limit": {
1388
+ "context": 200000,
1389
+ "output": 128000
1390
+ },
1391
+ "name": "GLM-4.7",
1392
+ "options": {
1393
+ "temperature": 1,
1394
+ "thinking": {
1395
+ "type": "enabled"
1396
+ }
1397
+ },
1398
+ "reasoning": true
1399
+ },
1400
+ "glm-5": {
1401
+ "name": "GLM-5",
1402
+ "options": {
1403
+ "maxOutputTokens": 131072,
1404
+ "reasoningEffort": "high",
1405
+ "reasoningSummary": "true",
1406
+ "temperature": 1,
1407
+ "thinking": {
1408
+ "type": "enabled"
1409
+ },
1410
+ "top_k": 40,
1411
+ "top_p": 0.95
1412
+ },
1413
+ "reasoning": true
1414
+ }
1415
+ },
1416
+ "name": "Z.AI Coding Plan"
1417
+ }
1418
+ },
1419
+ "share": "manual",
1420
+ "small_model": "opencode/gpt-5-nano",
1421
+ "watcher": {
1422
+ "ignore": [
1423
+ "node_modules/**",
1424
+ ".git/**",
1425
+ "dist/**",
1426
+ "build/**",
1427
+ "*.log",
1428
+ ".DS_Store"
1429
+ ]
1430
+ }
1680
1431
  }