opencodekit 0.21.8 → 0.21.10

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 (34) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/.template-manifest.json +0 -3
  3. package/dist/template/.opencode/AGENTS.md +1 -13
  4. package/dist/template/.opencode/agent/build.md +1 -1
  5. package/dist/template/.opencode/agent/explore.md +15 -15
  6. package/dist/template/.opencode/agent/general.md +2 -2
  7. package/dist/template/.opencode/agent/plan.md +3 -3
  8. package/dist/template/.opencode/agent/review.md +2 -2
  9. package/dist/template/.opencode/agent/scout.md +34 -15
  10. package/dist/template/.opencode/command/design.md +4 -4
  11. package/dist/template/.opencode/command/init-context.md +7 -7
  12. package/dist/template/.opencode/command/review-codebase.md +1 -1
  13. package/dist/template/.opencode/command/ship.md +1 -1
  14. package/dist/template/.opencode/dcp.jsonc +18 -46
  15. package/dist/template/.opencode/memory/project/user.md +1 -2
  16. package/dist/template/.opencode/opencode.json +10 -332
  17. package/dist/template/.opencode/plugin/lib/capture.ts +1 -1
  18. package/dist/template/.opencode/plugin/lib/db/schema.ts +102 -9
  19. package/dist/template/.opencode/plugin/lib/memory-db.ts +41 -17
  20. package/dist/template/.opencode/plugin/lib/operation-log.ts +1 -0
  21. package/dist/template/.opencode/plugin/sessions.ts +37 -8
  22. package/dist/template/.opencode/skill/agent-evals/SKILL.md +1 -1
  23. package/dist/template/.opencode/skill/code-search-patterns/SKILL.md +49 -78
  24. package/dist/template/.opencode/skill/context-initialization/SKILL.md +5 -5
  25. package/dist/template/.opencode/skill/rtk-command-compression/SKILL.md +1 -1
  26. package/dist/template/.opencode/tool/context7.ts +1 -1
  27. package/dist/template/.opencode/tool/grepsearch.ts +1 -1
  28. package/package.json +2 -2
  29. package/dist/template/.opencode/memory.db +0 -0
  30. package/dist/template/.opencode/memory.db-shm +0 -0
  31. package/dist/template/.opencode/memory.db-wal +0 -0
  32. package/dist/template/.opencode/opencode.json.tui-migration.bak +0 -1380
  33. package/dist/template/.opencode/plugin/notification.ts.bak +0 -64
  34. package/dist/template/.opencode/pnpm-lock.yaml +0 -287
@@ -1,1380 +0,0 @@
1
- {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "github-copilot/claude-opus-4.6"
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.5-free"
14
- },
15
- "general": {
16
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
- "model": "github-copilot/gpt-5.2-codex"
18
- },
19
- "painter": {
20
- "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",
21
- "model": "proxypal/gemini-3-pro-image"
22
- },
23
- "plan": {
24
- "description": "Primary planning agent for architecture and multi-phase execution",
25
- "model": "openai/gpt-5.3-codex"
26
- },
27
- "review": {
28
- "description": "Code review, debugging, and security audit specialist",
29
- "model": "openai/gpt-5.3-codex"
30
- },
31
- "scout": {
32
- "description": "External research specialist for library docs and patterns",
33
- "model": "proxypal/claude-sonnet-4-6"
34
- },
35
- "vision": {
36
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
- "model": "proxypal/gemini-3.1-pro-high"
38
- }
39
- },
40
- "autoupdate": false,
41
- "formatter": {
42
- "biome": {
43
- "command": [
44
- "npx",
45
- "@biomejs/biome",
46
- "check",
47
- "--write",
48
- "$FILE"
49
- ],
50
- "extensions": [
51
- ".js",
52
- ".jsx",
53
- ".ts",
54
- ".tsx",
55
- ".json",
56
- ".jsonc"
57
- ]
58
- },
59
- "cargo-fmt": {
60
- "command": [
61
- "cargo",
62
- "fmt",
63
- "--",
64
- "$FILE"
65
- ],
66
- "extensions": [
67
- ".rs"
68
- ]
69
- },
70
- "java-formatter": {
71
- "command": [
72
- "google-java-format",
73
- "--replace",
74
- "$FILE"
75
- ],
76
- "environment": {
77
- "JAVA_HOME": "{env:JAVA_HOME}"
78
- },
79
- "extensions": [
80
- ".java"
81
- ]
82
- },
83
- "laravel-pint": {
84
- "command": [
85
- "npx",
86
- "laravel-pint",
87
- "--preset",
88
- "psr12",
89
- "$FILE"
90
- ],
91
- "extensions": [
92
- ".php"
93
- ]
94
- },
95
- "oxfmt": {
96
- "command": [
97
- "npx",
98
- "oxfmt",
99
- "--write",
100
- "$FILE"
101
- ],
102
- "extensions": [
103
- ".js",
104
- ".jsx",
105
- ".ts",
106
- ".tsx",
107
- ".json",
108
- ".jsonc",
109
- ".html",
110
- ".css",
111
- ".scss",
112
- ".sass",
113
- ".md",
114
- ".mdx",
115
- ".yaml",
116
- ".yml"
117
- ]
118
- }
119
- },
120
- "instructions": [
121
- ".opencode/memory/project/user.md",
122
- ".opencode/memory/project/tech-stack.md",
123
- ".opencode/memory/project/project.md",
124
- ".opencode/memory/project/roadmap.md",
125
- ".opencode/memory/project/state.md"
126
- ],
127
- "keybinds": {
128
- "command_list": ";",
129
- "leader": "`",
130
- "session_child_cycle": "ctrl+alt+right",
131
- "session_child_cycle_reverse": "ctrl+alt+left",
132
- "session_compact": "ctrl+k"
133
- },
134
- "mcp": {
135
- "stitch": {
136
- "enabled": false,
137
- "headers": {
138
- "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
139
- "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
140
- },
141
- "oauth": false,
142
- "type": "remote",
143
- "url": "https://stitch.googleapis.com/mcp"
144
- }
145
- },
146
- "model": "opencode/kimi-k2.5-free",
147
- "permission": {
148
- "bash": {
149
- "*": "allow",
150
- "cat *": "allow",
151
- "git branch *": "allow",
152
- "git checkout *": "ask",
153
- "git clean *": "ask",
154
- "git commit *": "ask",
155
- "git diff *": "allow",
156
- "git log *": "allow",
157
- "git merge *": "ask",
158
- "git push *": "ask",
159
- "git rebase *": "ask",
160
- "git reset *": "ask",
161
- "git status *": "allow",
162
- "ls *": "allow",
163
- "npm *": "allow",
164
- "npm publish *": "ask",
165
- "npm run db:push*": "ask",
166
- "npm run db:reset*": "deny",
167
- "npx *": "allow",
168
- "rm *": "deny",
169
- "rm -rf *": "deny",
170
- "sudo *": "deny"
171
- },
172
- "doom_loop": "ask",
173
- "edit": "allow",
174
- "external_directory": "ask",
175
- "question": "allow",
176
- "read": {
177
- "*": "allow",
178
- "*.env": "deny",
179
- "*.env.*": "deny",
180
- "*.env.example": "allow",
181
- "*.key": "deny",
182
- "*.pem": "deny",
183
- "*credentials*": "deny",
184
- "*password*": "deny",
185
- "*secret*": "deny",
186
- "*token*": "deny"
187
- }
188
- },
189
- "plugin": [
190
- "@tarquinen/opencode-dcp@latest",
191
- "@franlol/opencode-md-table-formatter@0.0.3",
192
- "openslimedit@latest"
193
- ],
194
- "provider": {
195
- "github-copilot": {
196
- "models": {
197
- "claude-haiku-4.5": {
198
- "attachment": true,
199
- "limit": {
200
- "context": 200000,
201
- "output": 64000
202
- },
203
- "options": {
204
- "thinking_budget": 10000,
205
- "type": "enabled"
206
- },
207
- "reasoning": true,
208
- "temperature": true,
209
- "tool_call": true,
210
- "variants": {
211
- "high": {
212
- "options": {
213
- "thinking_budget": 8000,
214
- "type": "enabled"
215
- }
216
- },
217
- "max": {
218
- "options": {
219
- "thinking_budget": 16000,
220
- "type": "enabled"
221
- }
222
- }
223
- }
224
- },
225
- "claude-opus-4.5": {
226
- "attachment": true,
227
- "limit": {
228
- "context": 200000,
229
- "output": 64000
230
- },
231
- "options": {
232
- "thinking_budget": 10000
233
- },
234
- "reasoning": true,
235
- "temperature": true,
236
- "tool_call": true,
237
- "variants": {
238
- "high": {
239
- "options": {
240
- "thinking_budget": 8000
241
- }
242
- },
243
- "max": {
244
- "options": {
245
- "thinking_budget": 16000
246
- }
247
- }
248
- }
249
- },
250
- "claude-opus-4.6": {
251
- "attachment": true,
252
- "limit": {
253
- "context": 200000,
254
- "output": 64000
255
- },
256
- "options": {
257
- "thinking": {
258
- "budget_tokens": 16000,
259
- "type": "enabled"
260
- }
261
- },
262
- "reasoning": true,
263
- "temperature": true,
264
- "tool_call": true,
265
- "variants": {
266
- "adaptive": {
267
- "options": {
268
- "max_tokens": 16000,
269
- "output_config": {
270
- "effort": "max"
271
- },
272
- "thinking": {
273
- "type": "adaptive"
274
- }
275
- }
276
- },
277
- "high": {
278
- "options": {
279
- "thinking": {
280
- "budget_tokens": 24000,
281
- "type": "enabled"
282
- }
283
- }
284
- },
285
- "max": {
286
- "options": {
287
- "thinking": {
288
- "budget_tokens": 32000,
289
- "type": "enabled"
290
- }
291
- }
292
- }
293
- }
294
- },
295
- "claude-sonnet-4.5": {
296
- "attachment": true,
297
- "limit": {
298
- "context": 200000,
299
- "output": 64000
300
- },
301
- "options": {
302
- "thinking_budget": 10000
303
- },
304
- "reasoning": true,
305
- "temperature": true,
306
- "tool_call": true,
307
- "variants": {
308
- "high": {
309
- "options": {
310
- "thinking_budget": 8000
311
- }
312
- },
313
- "max": {
314
- "options": {
315
- "thinking_budget": 16000
316
- }
317
- }
318
- }
319
- },
320
- "claude-sonnet-4.6": {
321
- "attachment": true,
322
- "limit": {
323
- "context": 200000,
324
- "output": 64000
325
- },
326
- "options": {
327
- "thinking": {
328
- "budget_tokens": 16000,
329
- "type": "enabled"
330
- }
331
- },
332
- "reasoning": true,
333
- "temperature": true,
334
- "tool_call": true,
335
- "variants": {
336
- "adaptive": {
337
- "options": {
338
- "max_tokens": 16000,
339
- "output_config": {
340
- "effort": "max"
341
- },
342
- "thinking": {
343
- "type": "adaptive"
344
- }
345
- }
346
- },
347
- "high": {
348
- "options": {
349
- "thinking": {
350
- "budget_tokens": 16000,
351
- "type": "enabled"
352
- }
353
- }
354
- },
355
- "max": {
356
- "options": {
357
- "thinking": {
358
- "budget_tokens": 32000,
359
- "type": "enabled"
360
- }
361
- }
362
- }
363
- }
364
- },
365
- "gpt-5.2": {
366
- "attachment": true,
367
- "limit": {
368
- "context": 400000,
369
- "output": 128000
370
- },
371
- "options": {
372
- "reasoningEffort": "medium",
373
- "reasoningSummary": "auto",
374
- "textVerbosity": "medium"
375
- },
376
- "reasoning": true,
377
- "temperature": true,
378
- "tool_call": true,
379
- "variants": {
380
- "high": {
381
- "include": [
382
- "reasoning.encrypted_content"
383
- ],
384
- "reasoningEffort": "high",
385
- "reasoningSummary": "auto"
386
- },
387
- "low": {
388
- "reasoningEffort": "low",
389
- "reasoningSummary": "auto"
390
- },
391
- "medium": {
392
- "reasoningEffort": "medium",
393
- "reasoningSummary": "auto"
394
- }
395
- }
396
- },
397
- "gpt-5.2-codex": {
398
- "attachment": true,
399
- "limit": {
400
- "context": 400000,
401
- "output": 128000
402
- },
403
- "options": {
404
- "reasoningEffort": "medium",
405
- "reasoningSummary": "auto",
406
- "textVerbosity": "medium"
407
- },
408
- "reasoning": true,
409
- "temperature": true,
410
- "tool_call": true,
411
- "variants": {
412
- "fast": {
413
- "disabled": true
414
- },
415
- "high": {
416
- "include": [
417
- "reasoning.encrypted_content"
418
- ],
419
- "reasoningEffort": "high",
420
- "reasoningSummary": "auto",
421
- "textVerbosity": "medium"
422
- },
423
- "low": {
424
- "reasoningEffort": "low",
425
- "reasoningSummary": "auto"
426
- },
427
- "medium": {
428
- "reasoningEffort": "medium",
429
- "reasoningSummary": "auto",
430
- "textVerbosity": "medium"
431
- }
432
- }
433
- }
434
- },
435
- "options": {
436
- "timeout": 600000
437
- }
438
- },
439
- "kimi-for-coding": {
440
- "models": {
441
- "k2p5": {
442
- "limit": {
443
- "context": 262144,
444
- "output": 32768
445
- },
446
- "options": {
447
- "interleaved": {
448
- "field": "reasoning_content"
449
- },
450
- "thinking": {
451
- "budgetTokens": 8192,
452
- "reasoning_effort": "high",
453
- "type": "enabled"
454
- }
455
- },
456
- "reasoning": true,
457
- "temperature": true,
458
- "tool_call": true,
459
- "variants": {
460
- "high": {
461
- "interleaved": {
462
- "field": "reasoning_content"
463
- },
464
- "options": {
465
- "reasoning_effort": "high",
466
- "thinkingBudget": 16384,
467
- "type": "enabled"
468
- }
469
- },
470
- "max": {
471
- "interleaved": {
472
- "field": "reasoning_content"
473
- },
474
- "options": {
475
- "reasoning_effort": "high",
476
- "thinkingBudget": 32768,
477
- "type": "enabled"
478
- }
479
- }
480
- }
481
- }
482
- }
483
- },
484
- "modal": {
485
- "models": {
486
- "zai-org/GLM-5-FP8": {
487
- "modalities": {
488
- "input": [
489
- "text",
490
- "image",
491
- "pdf"
492
- ],
493
- "output": [
494
- "text"
495
- ]
496
- },
497
- "name": "GLM-5",
498
- "options": {
499
- "maxOutputTokens": 131072,
500
- "reasoningEffort": "high",
501
- "reasoningSummary": "true",
502
- "temperature": 1,
503
- "thinking": {
504
- "type": "enabled"
505
- },
506
- "top_k": 40,
507
- "top_p": 0.95
508
- },
509
- "reasoning": true
510
- }
511
- },
512
- "name": "Modal",
513
- "options": {
514
- "apiKey": "{env:MODAL_API_KEY}",
515
- "baseURL": "https://api.us-west-2.modal.direct/v1"
516
- }
517
- },
518
- "openai": {
519
- "models": {
520
- "gpt-5.2": {
521
- "variants": {
522
- "fast": {
523
- "disabled": true
524
- },
525
- "high": {
526
- "include": [
527
- "reasoning.encrypted_content"
528
- ],
529
- "reasoningEffort": "high",
530
- "reasoningSummary": "auto",
531
- "textVerbosity": "low"
532
- },
533
- "medium": {
534
- "include": [
535
- "reasoning.encrypted_content"
536
- ],
537
- "reasoningEffort": "medium",
538
- "reasoningSummary": "auto",
539
- "textVerbosity": "low"
540
- }
541
- }
542
- },
543
- "gpt-5.2-codex": {
544
- "variants": {
545
- "fast": {
546
- "disabled": true
547
- },
548
- "high": {
549
- "include": [
550
- "reasoning.encrypted_content"
551
- ],
552
- "reasoningEffort": "high",
553
- "reasoningSummary": "auto",
554
- "textVerbosity": "low"
555
- },
556
- "medium": {
557
- "include": [
558
- "reasoning.encrypted_content"
559
- ],
560
- "reasoningEffort": "medium",
561
- "reasoningSummary": "auto",
562
- "textVerbosity": "low"
563
- },
564
- "xhigh": {
565
- "include": [
566
- "reasoning.encrypted_content"
567
- ],
568
- "reasoningEffort": "xhigh",
569
- "reasoningSummary": "auto",
570
- "textVerbosity": "low"
571
- }
572
- }
573
- },
574
- "gpt-5.3-codex": {
575
- "variants": {
576
- "fast": {
577
- "disabled": true
578
- },
579
- "high": {
580
- "include": [
581
- "reasoning.encrypted_content"
582
- ],
583
- "reasoningEffort": "high",
584
- "reasoningSummary": "auto",
585
- "textVerbosity": "low"
586
- },
587
- "medium": {
588
- "include": [
589
- "reasoning.encrypted_content"
590
- ],
591
- "reasoningEffort": "medium",
592
- "reasoningSummary": "auto",
593
- "textVerbosity": "low"
594
- },
595
- "xhigh": {
596
- "include": [
597
- "reasoning.encrypted_content"
598
- ],
599
- "reasoningEffort": "xhigh",
600
- "reasoningSummary": "auto",
601
- "textVerbosity": "low"
602
- }
603
- }
604
- }
605
- }
606
- },
607
- "opencode": {
608
- "models": {
609
- "big-pickle": {
610
- "options": {
611
- "reasoningEffort": "high",
612
- "temperature": 1,
613
- "top_k": 40,
614
- "top_p": 0.95
615
- },
616
- "reasoning": true
617
- }
618
- }
619
- },
620
- "proxypal": {
621
- "models": {
622
- "claude-haiku-4-5": {
623
- "limit": {
624
- "context": 200000,
625
- "output": 64000
626
- },
627
- "name": "Claude Haiku 4 5"
628
- },
629
- "claude-haiku-4-5-20251001": {
630
- "limit": {
631
- "context": 200000,
632
- "output": 64000
633
- },
634
- "name": "Claude Haiku 4 5 20251001"
635
- },
636
- "claude-opus-4-6-thinking": {
637
- "limit": {
638
- "context": 200000,
639
- "output": 64000
640
- },
641
- "name": "Claude Opus 4 6 Thinking",
642
- "options": {
643
- "thinking": {
644
- "budgetTokens": 8192,
645
- "type": "enabled"
646
- }
647
- },
648
- "reasoning": true,
649
- "variants": {
650
- "low": {
651
- "thinkingConfig": {
652
- "thinkingBudget": 8192
653
- }
654
- },
655
- "max": {
656
- "thinkingConfig": {
657
- "thinkingBudget": 32768
658
- }
659
- }
660
- }
661
- },
662
- "claude-sonnet-4": {
663
- "limit": {
664
- "context": 200000,
665
- "output": 64000
666
- },
667
- "name": "Claude Sonnet 4"
668
- },
669
- "claude-sonnet-4-20250514": {
670
- "limit": {
671
- "context": 200000,
672
- "output": 64000
673
- },
674
- "name": "Claude Sonnet 4 20250514"
675
- },
676
- "claude-sonnet-4-5": {
677
- "limit": {
678
- "context": 200000,
679
- "output": 64000
680
- },
681
- "name": "Claude Sonnet 4 5"
682
- },
683
- "claude-sonnet-4-5-20250929": {
684
- "limit": {
685
- "context": 200000,
686
- "output": 64000
687
- },
688
- "name": "Claude Sonnet 4 5 20250929"
689
- },
690
- "claude-sonnet-4-6": {
691
- "limit": {
692
- "context": 200000,
693
- "output": 64000
694
- },
695
- "name": "Claude Sonnet 4 6"
696
- },
697
- "gemini-2.5-flash": {
698
- "limit": {
699
- "context": 1000000,
700
- "output": 65536
701
- },
702
- "modalities": {
703
- "input": [
704
- "text",
705
- "image",
706
- "pdf"
707
- ],
708
- "output": [
709
- "text"
710
- ]
711
- },
712
- "name": "Gemini 2 5 Flash"
713
- },
714
- "gemini-2.5-flash-lite": {
715
- "limit": {
716
- "context": 1000000,
717
- "output": 65536
718
- },
719
- "modalities": {
720
- "input": [
721
- "text",
722
- "image",
723
- "pdf"
724
- ],
725
- "output": [
726
- "text"
727
- ]
728
- },
729
- "name": "Gemini 2 5 Flash Lite"
730
- },
731
- "gemini-2.5-pro": {
732
- "limit": {
733
- "context": 1000000,
734
- "output": 65536
735
- },
736
- "modalities": {
737
- "input": [
738
- "text",
739
- "image",
740
- "pdf"
741
- ],
742
- "output": [
743
- "text"
744
- ]
745
- },
746
- "name": "Gemini 2 5 Pro"
747
- },
748
- "gemini-3-flash": {
749
- "limit": {
750
- "context": 1000000,
751
- "output": 65536
752
- },
753
- "modalities": {
754
- "input": [
755
- "text",
756
- "image",
757
- "pdf"
758
- ],
759
- "output": [
760
- "text"
761
- ]
762
- },
763
- "name": "Gemini 3 Flash",
764
- "options": {
765
- "generationConfig": {
766
- "thinkingConfig": {
767
- "includeThoughts": true,
768
- "thinkingLevel": "medium"
769
- }
770
- }
771
- },
772
- "reasoning": true,
773
- "variants": {
774
- "high": {
775
- "thinkingLevel": "high"
776
- },
777
- "low": {
778
- "thinkingLevel": "low"
779
- },
780
- "medium": {
781
- "thinkingLevel": "medium"
782
- }
783
- }
784
- },
785
- "gemini-3-flash-preview": {
786
- "limit": {
787
- "context": 1000000,
788
- "output": 65536
789
- },
790
- "modalities": {
791
- "input": [
792
- "text",
793
- "image",
794
- "pdf"
795
- ],
796
- "output": [
797
- "text"
798
- ]
799
- },
800
- "name": "Gemini 3 Flash Preview",
801
- "options": {
802
- "generationConfig": {
803
- "thinkingConfig": {
804
- "includeThoughts": true,
805
- "thinkingLevel": "medium"
806
- }
807
- }
808
- },
809
- "reasoning": true,
810
- "variants": {
811
- "high": {
812
- "thinkingLevel": "high"
813
- },
814
- "low": {
815
- "thinkingLevel": "low"
816
- },
817
- "medium": {
818
- "thinkingLevel": "medium"
819
- }
820
- }
821
- },
822
- "gemini-3-pro-high": {
823
- "limit": {
824
- "context": 1000000,
825
- "output": 65536
826
- },
827
- "modalities": {
828
- "input": [
829
- "text",
830
- "image",
831
- "pdf"
832
- ],
833
- "output": [
834
- "text"
835
- ]
836
- },
837
- "name": "Gemini 3 Pro High",
838
- "options": {
839
- "generationConfig": {
840
- "thinkingConfig": {
841
- "includeThoughts": true,
842
- "thinkingLevel": "medium"
843
- }
844
- }
845
- },
846
- "reasoning": true,
847
- "variants": {
848
- "high": {
849
- "thinkingLevel": "high"
850
- },
851
- "low": {
852
- "thinkingLevel": "low"
853
- },
854
- "medium": {
855
- "thinkingLevel": "medium"
856
- }
857
- }
858
- },
859
- "gemini-3-pro-image": {
860
- "limit": {
861
- "context": 1000000,
862
- "output": 65536
863
- },
864
- "name": "Gemini 3 Pro Image"
865
- },
866
- "gemini-3-pro-preview": {
867
- "limit": {
868
- "context": 1000000,
869
- "output": 65536
870
- },
871
- "modalities": {
872
- "input": [
873
- "text",
874
- "image",
875
- "pdf"
876
- ],
877
- "output": [
878
- "text"
879
- ]
880
- },
881
- "name": "Gemini 3 Pro Preview",
882
- "options": {
883
- "generationConfig": {
884
- "thinkingConfig": {
885
- "includeThoughts": true,
886
- "thinkingLevel": "medium"
887
- }
888
- }
889
- },
890
- "reasoning": true,
891
- "variants": {
892
- "high": {
893
- "thinkingLevel": "high"
894
- },
895
- "low": {
896
- "thinkingLevel": "low"
897
- },
898
- "medium": {
899
- "thinkingLevel": "medium"
900
- }
901
- }
902
- },
903
- "gemini-3.1-pro-high": {
904
- "limit": {
905
- "context": 1000000,
906
- "output": 65536
907
- },
908
- "modalities": {
909
- "input": [
910
- "text",
911
- "image",
912
- "pdf"
913
- ],
914
- "output": [
915
- "text"
916
- ]
917
- },
918
- "name": "Gemini 3 1 Pro High",
919
- "options": {
920
- "generationConfig": {
921
- "thinkingConfig": {
922
- "includeThoughts": true,
923
- "thinkingLevel": "medium"
924
- }
925
- }
926
- },
927
- "reasoning": true,
928
- "variants": {
929
- "high": {
930
- "thinkingLevel": "high"
931
- },
932
- "low": {
933
- "thinkingLevel": "low"
934
- },
935
- "medium": {
936
- "thinkingLevel": "medium"
937
- }
938
- }
939
- },
940
- "gemini-3.1-pro-low": {
941
- "limit": {
942
- "context": 1000000,
943
- "output": 65536
944
- },
945
- "modalities": {
946
- "input": [
947
- "text",
948
- "image",
949
- "pdf"
950
- ],
951
- "output": [
952
- "text"
953
- ]
954
- },
955
- "name": "Gemini 3 1 Pro Low",
956
- "options": {
957
- "generationConfig": {
958
- "thinkingConfig": {
959
- "includeThoughts": true,
960
- "thinkingLevel": "medium"
961
- }
962
- }
963
- },
964
- "reasoning": true,
965
- "variants": {
966
- "high": {
967
- "thinkingLevel": "high"
968
- },
969
- "low": {
970
- "thinkingLevel": "low"
971
- },
972
- "medium": {
973
- "thinkingLevel": "medium"
974
- }
975
- }
976
- },
977
- "gemini-3.1-pro-preview": {
978
- "limit": {
979
- "context": 1000000,
980
- "output": 65536
981
- },
982
- "modalities": {
983
- "input": [
984
- "text",
985
- "image",
986
- "pdf"
987
- ],
988
- "output": [
989
- "text"
990
- ]
991
- },
992
- "name": "Gemini 3 1 Pro Preview",
993
- "options": {
994
- "generationConfig": {
995
- "thinkingConfig": {
996
- "includeThoughts": true,
997
- "thinkingLevel": "medium"
998
- }
999
- }
1000
- },
1001
- "reasoning": true,
1002
- "variants": {
1003
- "high": {
1004
- "thinkingLevel": "high"
1005
- },
1006
- "low": {
1007
- "thinkingLevel": "low"
1008
- },
1009
- "medium": {
1010
- "thinkingLevel": "medium"
1011
- }
1012
- }
1013
- },
1014
- "glm-4.5": {
1015
- "limit": {
1016
- "context": 128000,
1017
- "output": 16384
1018
- },
1019
- "name": "Glm 4 5"
1020
- },
1021
- "glm-4.5-air": {
1022
- "limit": {
1023
- "context": 128000,
1024
- "output": 16384
1025
- },
1026
- "name": "Glm 4 5 Air"
1027
- },
1028
- "glm-4.6": {
1029
- "limit": {
1030
- "context": 128000,
1031
- "output": 16384
1032
- },
1033
- "name": "Glm 4 6"
1034
- },
1035
- "glm-4.7": {
1036
- "limit": {
1037
- "context": 128000,
1038
- "output": 16384
1039
- },
1040
- "name": "Glm 4 7"
1041
- },
1042
- "gpt-5": {
1043
- "limit": {
1044
- "context": 400000,
1045
- "output": 32768
1046
- },
1047
- "name": "Gpt 5",
1048
- "options": {
1049
- "reasoningEffort": "medium"
1050
- },
1051
- "reasoning": true
1052
- },
1053
- "gpt-5-codex": {
1054
- "limit": {
1055
- "context": 400000,
1056
- "output": 32768
1057
- },
1058
- "name": "Gpt 5 Codex",
1059
- "options": {
1060
- "reasoningEffort": "medium"
1061
- },
1062
- "reasoning": true
1063
- },
1064
- "gpt-5-codex-mini": {
1065
- "limit": {
1066
- "context": 400000,
1067
- "output": 32768
1068
- },
1069
- "name": "Gpt 5 Codex Mini",
1070
- "options": {
1071
- "reasoningEffort": "medium"
1072
- },
1073
- "reasoning": true
1074
- },
1075
- "gpt-5.1": {
1076
- "limit": {
1077
- "context": 400000,
1078
- "output": 32768
1079
- },
1080
- "name": "Gpt 5 1",
1081
- "options": {
1082
- "reasoningEffort": "medium"
1083
- },
1084
- "reasoning": true
1085
- },
1086
- "gpt-5.1-codex": {
1087
- "limit": {
1088
- "context": 400000,
1089
- "output": 32768
1090
- },
1091
- "name": "Gpt 5 1 Codex",
1092
- "options": {
1093
- "reasoningEffort": "medium"
1094
- },
1095
- "reasoning": true
1096
- },
1097
- "gpt-5.1-codex-max": {
1098
- "limit": {
1099
- "context": 400000,
1100
- "output": 32768
1101
- },
1102
- "name": "Gpt 5 1 Codex Max",
1103
- "options": {
1104
- "reasoningEffort": "medium"
1105
- },
1106
- "reasoning": true
1107
- },
1108
- "gpt-5.1-codex-mini": {
1109
- "limit": {
1110
- "context": 400000,
1111
- "output": 32768
1112
- },
1113
- "name": "Gpt 5 1 Codex Mini",
1114
- "options": {
1115
- "reasoningEffort": "medium"
1116
- },
1117
- "reasoning": true
1118
- },
1119
- "gpt-5.2": {
1120
- "limit": {
1121
- "context": 400000,
1122
- "output": 32768
1123
- },
1124
- "name": "Gpt 5 2",
1125
- "options": {
1126
- "reasoningEffort": "medium"
1127
- },
1128
- "reasoning": true
1129
- },
1130
- "gpt-5.2-codex": {
1131
- "limit": {
1132
- "context": 400000,
1133
- "output": 32768
1134
- },
1135
- "name": "Gpt 5 2 Codex",
1136
- "options": {
1137
- "reasoningEffort": "medium"
1138
- },
1139
- "reasoning": true
1140
- },
1141
- "gpt-5.3-codex": {
1142
- "limit": {
1143
- "context": 400000,
1144
- "output": 32768
1145
- },
1146
- "name": "Gpt 5 3 Codex",
1147
- "options": {
1148
- "reasoningEffort": "medium"
1149
- },
1150
- "reasoning": true
1151
- },
1152
- "gpt-5.3-codex-spark": {
1153
- "limit": {
1154
- "context": 400000,
1155
- "output": 32768
1156
- },
1157
- "name": "Gpt 5 3 Codex Spark",
1158
- "options": {
1159
- "reasoningEffort": "medium"
1160
- },
1161
- "reasoning": true
1162
- },
1163
- "gpt-oss-120b-medium": {
1164
- "limit": {
1165
- "context": 128000,
1166
- "output": 16384
1167
- },
1168
- "name": "Gpt Oss 120b Medium"
1169
- },
1170
- "kimi-k2": {
1171
- "limit": {
1172
- "context": 128000,
1173
- "output": 16384
1174
- },
1175
- "name": "Kimi K2"
1176
- },
1177
- "kimi-k2-thinking": {
1178
- "limit": {
1179
- "context": 128000,
1180
- "output": 16384
1181
- },
1182
- "name": "Kimi K2 Thinking",
1183
- "options": {
1184
- "reasoningEffort": "high"
1185
- },
1186
- "reasoning": true
1187
- },
1188
- "kimi-k2.5": {
1189
- "limit": {
1190
- "context": 128000,
1191
- "output": 16384
1192
- },
1193
- "name": "Kimi K2 5"
1194
- },
1195
- "kiro-auto": {
1196
- "limit": {
1197
- "context": 128000,
1198
- "output": 16384
1199
- },
1200
- "name": "Kiro Auto"
1201
- },
1202
- "kiro-claude-haiku-4-5": {
1203
- "limit": {
1204
- "context": 200000,
1205
- "output": 64000
1206
- },
1207
- "name": "Kiro Claude Haiku 4 5"
1208
- },
1209
- "kiro-claude-haiku-4-5-agentic": {
1210
- "limit": {
1211
- "context": 200000,
1212
- "output": 64000
1213
- },
1214
- "name": "Kiro Claude Haiku 4 5 Agentic"
1215
- },
1216
- "kiro-claude-sonnet-4": {
1217
- "limit": {
1218
- "context": 200000,
1219
- "output": 64000
1220
- },
1221
- "name": "Kiro Claude Sonnet 4"
1222
- },
1223
- "kiro-claude-sonnet-4-5": {
1224
- "limit": {
1225
- "context": 200000,
1226
- "output": 64000
1227
- },
1228
- "name": "Kiro Claude Sonnet 4 5"
1229
- },
1230
- "kiro-claude-sonnet-4-5-agentic": {
1231
- "limit": {
1232
- "context": 200000,
1233
- "output": 64000
1234
- },
1235
- "name": "Kiro Claude Sonnet 4 5 Agentic"
1236
- },
1237
- "kiro-claude-sonnet-4-agentic": {
1238
- "limit": {
1239
- "context": 200000,
1240
- "output": 64000
1241
- },
1242
- "name": "Kiro Claude Sonnet 4 Agentic"
1243
- },
1244
- "kiro-deepseek-3-2": {
1245
- "limit": {
1246
- "context": 128000,
1247
- "output": 8192
1248
- },
1249
- "name": "Kiro Deepseek 3 2"
1250
- },
1251
- "kiro-deepseek-3-2-agentic": {
1252
- "limit": {
1253
- "context": 128000,
1254
- "output": 8192
1255
- },
1256
- "name": "Kiro Deepseek 3 2 Agentic"
1257
- },
1258
- "kiro-minimax-m2-1": {
1259
- "limit": {
1260
- "context": 128000,
1261
- "output": 16384
1262
- },
1263
- "name": "Kiro Minimax M2 1"
1264
- },
1265
- "kiro-minimax-m2-1-agentic": {
1266
- "limit": {
1267
- "context": 128000,
1268
- "output": 16384
1269
- },
1270
- "name": "Kiro Minimax M2 1 Agentic"
1271
- },
1272
- "kiro-qwen3-coder-next": {
1273
- "limit": {
1274
- "context": 1000000,
1275
- "output": 65536
1276
- },
1277
- "name": "Kiro Qwen3 Coder Next"
1278
- },
1279
- "kiro-qwen3-coder-next-agentic": {
1280
- "limit": {
1281
- "context": 1000000,
1282
- "output": 65536
1283
- },
1284
- "name": "Kiro Qwen3 Coder Next Agentic"
1285
- },
1286
- "tab_flash_lite_preview": {
1287
- "limit": {
1288
- "context": 128000,
1289
- "output": 16384
1290
- },
1291
- "name": "Tab_flash_lite_preview"
1292
- },
1293
- "tab_jump_flash_lite_preview": {
1294
- "limit": {
1295
- "context": 128000,
1296
- "output": 16384
1297
- },
1298
- "name": "Tab_jump_flash_lite_preview"
1299
- }
1300
- },
1301
- "name": "ProxyPal",
1302
- "npm": "@ai-sdk/anthropic",
1303
- "options": {
1304
- "apiKey": "proxypal-local",
1305
- "baseURL": "http://127.0.0.1:8317/v1",
1306
- "includeUsage": true
1307
- }
1308
- },
1309
- "zai-coding-plan": {
1310
- "models": {
1311
- "glm-4.6": {
1312
- "limit": {
1313
- "context": 128000,
1314
- "output": 16384
1315
- },
1316
- "options": {
1317
- "temperature": 1,
1318
- "thinking": {
1319
- "type": "enabled"
1320
- }
1321
- },
1322
- "reasoning": true,
1323
- "temperature": true,
1324
- "tool_call": true
1325
- },
1326
- "glm-4.7": {
1327
- "id": "glm-4.7",
1328
- "interleaved": true,
1329
- "limit": {
1330
- "context": 200000,
1331
- "output": 128000
1332
- },
1333
- "name": "GLM-4.7",
1334
- "options": {
1335
- "temperature": 1,
1336
- "thinking": {
1337
- "type": "enabled"
1338
- }
1339
- },
1340
- "reasoning": true
1341
- },
1342
- "glm-5": {
1343
- "name": "GLM-5",
1344
- "options": {
1345
- "maxOutputTokens": 131072,
1346
- "reasoningEffort": "high",
1347
- "reasoningSummary": "true",
1348
- "temperature": 1,
1349
- "thinking": {
1350
- "type": "enabled"
1351
- },
1352
- "top_k": 40,
1353
- "top_p": 0.95
1354
- },
1355
- "reasoning": true
1356
- }
1357
- },
1358
- "name": "Z.AI Coding Plan"
1359
- }
1360
- },
1361
- "share": "manual",
1362
- "small_model": "opencode/gpt-5-nano",
1363
- "tui": {
1364
- "diff_style": "auto",
1365
- "scroll_acceleration": {
1366
- "enabled": true
1367
- },
1368
- "scroll_speed": 3
1369
- },
1370
- "watcher": {
1371
- "ignore": [
1372
- "node_modules/**",
1373
- ".git/**",
1374
- "dist/**",
1375
- "build/**",
1376
- "*.log",
1377
- ".DS_Store"
1378
- ]
1379
- }
1380
- }