opencodekit 0.15.14 → 0.15.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,699 +1,843 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "opencode/big-pickle"
7
- },
8
- "compaction": {
9
- "description": "Session summarizer for context continuity across compactions"
10
- },
11
- "explore": {
12
- "description": "Fast codebase search specialist",
13
- "model": "opencode/big-pickle"
14
- },
15
- "general": {
16
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
- "model": "opencode/big-pickle"
18
- },
19
- "looker": {
20
- "description": "Media extraction specialist for images, PDFs, diagrams",
21
- "model": "opencode/gpt-5-nano"
22
- },
23
- "plan": {
24
- "description": "Primary planning agent for architecture and multi-phase execution",
25
- "model": "opencode/big-pickle"
26
- },
27
- "review": {
28
- "description": "Code review, debugging, and security audit specialist",
29
- "model": "opencode/big-pickle"
30
- },
31
- "scout": {
32
- "description": "External research specialist for library docs and patterns",
33
- "model": "opencode/big-pickle"
34
- },
35
- "vision": {
36
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
37
- "model": "opencode/gpt-5-nano"
38
- },
39
- "painter": {
40
- "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",
41
- "model": "opencode/gpt-5-nano"
42
- }
43
- },
44
- "autoupdate": false,
45
- "compaction": {
46
- "auto": true,
47
- "prune": true
48
- },
49
- "experimental": {},
50
- "formatter": {
51
- "biome": {
52
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
53
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
54
- },
55
- "cargo-fmt": {
56
- "command": ["cargo", "fmt", "--", "$FILE"],
57
- "extensions": [".rs"]
58
- },
59
- "java-formatter": {
60
- "command": ["google-java-format", "--replace", "$FILE"],
61
- "environment": {
62
- "JAVA_HOME": "{env:JAVA_HOME}"
63
- },
64
- "extensions": [".java"]
65
- },
66
- "oxfmt": {
67
- "command": ["npx", "oxfmt", "--write", "$FILE"],
68
- "extensions": [
69
- ".js",
70
- ".jsx",
71
- ".ts",
72
- ".tsx",
73
- ".json",
74
- ".jsonc",
75
- ".html",
76
- ".css",
77
- ".scss",
78
- ".sass",
79
- ".md",
80
- ".mdx",
81
- ".yaml",
82
- ".yml"
83
- ]
84
- },
85
- "laravel-pint": {
86
- "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
87
- "extensions": [".php"]
88
- }
89
- },
90
- "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
91
- "keybinds": {
92
- "command_list": ";",
93
- "leader": "`",
94
- "session_child_cycle": "ctrl+alt+right",
95
- "session_child_cycle_reverse": "ctrl+alt+left",
96
- "session_compact": "ctrl+k"
97
- },
98
- "mcp": {
99
- "stitch": {
100
- "enabled": false,
101
- "type": "remote",
102
- "url": "https://stitch.googleapis.com/mcp",
103
- "oauth": false,
104
- "headers": {
105
- "Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
106
- "X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
107
- }
108
- }
109
- },
110
- "model": "opencode/big-pickle",
111
- "permission": {
112
- "bash": {
113
- "*": "allow",
114
- "cat *": "allow",
115
- "git branch *": "allow",
116
- "git commit *": "ask",
117
- "git diff *": "allow",
118
- "git log *": "allow",
119
- "git push *": "ask",
120
- "git rebase *": "ask",
121
- "git reset *": "ask",
122
- "git status *": "allow",
123
- "ls *": "allow",
124
- "npm *": "allow",
125
- "npx *": "allow",
126
- "rm *": "deny",
127
- "rm -rf *": "deny",
128
- "sudo *": "deny"
129
- },
130
- "doom_loop": "ask",
131
- "edit": "allow",
132
- "external_directory": "ask",
133
- "question": "allow",
134
- "read": {
135
- "*": "allow",
136
- "*.env": "deny",
137
- "*.env.*": "deny",
138
- "*.env.example": "allow"
139
- }
140
- },
141
- "plugin": [
142
- "@tarquinen/opencode-dcp@latest",
143
- "@franlol/opencode-md-table-formatter@0.0.3"
144
- ],
145
- "tools": {
146
- "grep-search": true,
147
- "context7-resolve-library-id": true,
148
- "context7-query-docs": true,
149
- "oracle": true
150
- },
151
- "provider": {
152
- "github-copilot": {
153
- "models": {
154
- "claude-opus-4.5": {
155
- "attachment": true,
156
- "reasoning": true,
157
- "temperature": true,
158
- "tool_call": true,
159
- "variants": {
160
- "high": {
161
- "options": {
162
- "thinking": {
163
- "budgetTokens": 32000,
164
- "type": "enabled"
165
- }
166
- }
167
- },
168
- "medium": {
169
- "options": {
170
- "thinking": {
171
- "budgetTokens": 16000,
172
- "type": "enabled"
173
- }
174
- }
175
- }
176
- }
177
- },
178
- "claude-sonnet-4.5": {
179
- "attachment": true,
180
- "reasoning": true,
181
- "temperature": true,
182
- "tool_call": true,
183
- "variants": {
184
- "high": {
185
- "options": {
186
- "thinking": {
187
- "budgetTokens": 16000,
188
- "type": "enabled"
189
- }
190
- }
191
- },
192
- "medium": {
193
- "options": {
194
- "thinking": {
195
- "budgetTokens": 8000,
196
- "type": "enabled"
197
- }
198
- }
199
- }
200
- }
201
- },
202
- "claude-haiku-4.5": {
203
- "attachment": true,
204
- "reasoning": true,
205
- "temperature": true,
206
- "tool_call": true,
207
- "variants": {
208
- "high": {
209
- "options": {
210
- "thinking": {
211
- "budgetTokens": 32000,
212
- "type": "enabled"
213
- }
214
- }
215
- },
216
- "medium": {
217
- "options": {
218
- "thinking": {
219
- "budgetTokens": 16000,
220
- "type": "enabled"
221
- }
222
- }
223
- }
224
- }
225
- },
226
- "gpt-5-mini": {
227
- "attachment": true,
228
- "reasoning": true,
229
- "temperature": true,
230
- "tool_call": true,
231
- "variants": {
232
- "high": {
233
- "options": {
234
- "reasoning": {
235
- "effort": "high"
236
- }
237
- }
238
- },
239
- "medium": {
240
- "options": {
241
- "reasoning": {
242
- "effort": "medium"
243
- }
244
- }
245
- },
246
- "low": {
247
- "options": {
248
- "reasoning": {
249
- "effort": "low"
250
- }
251
- }
252
- }
253
- }
254
- },
255
- "gpt-5.2-codex": {
256
- "attachment": true,
257
- "reasoning": true,
258
- "temperature": true,
259
- "tool_call": true,
260
- "variants": {
261
- "high": {
262
- "options": {
263
- "reasoning": {
264
- "effort": "high"
265
- }
266
- }
267
- },
268
- "medium": {
269
- "options": {
270
- "reasoning": {
271
- "effort": "medium"
272
- }
273
- }
274
- },
275
- "low": {
276
- "options": {
277
- "reasoning": {
278
- "effort": "low"
279
- }
280
- }
281
- }
282
- }
283
- }
284
- }
285
- },
286
- "openai": {
287
- "models": {
288
- "gpt-5.2": {
289
- "variants": {
290
- "fast": {
291
- "disabled": true
292
- },
293
- "high": {
294
- "include": ["reasoning.encrypted_content"],
295
- "reasoningEffort": "high",
296
- "reasoningSummary": "auto",
297
- "textVerbosity": "low"
298
- },
299
- "medium": {
300
- "include": ["reasoning.encrypted_content"],
301
- "reasoningEffort": "medium",
302
- "reasoningSummary": "auto",
303
- "textVerbosity": "low"
304
- }
305
- }
306
- },
307
- "gpt-5.2-codex": {
308
- "variants": {
309
- "fast": {
310
- "disabled": true
311
- },
312
- "high": {
313
- "include": ["reasoning.encrypted_content"],
314
- "reasoningEffort": "high",
315
- "reasoningSummary": "auto",
316
- "textVerbosity": "low"
317
- },
318
- "medium": {
319
- "include": ["reasoning.encrypted_content"],
320
- "reasoningEffort": "medium",
321
- "reasoningSummary": "auto",
322
- "textVerbosity": "low"
323
- }
324
- }
325
- }
326
- }
327
- },
328
- "opencode": {
329
- "models": {
330
- "big-pickle": {
331
- "options": {
332
- "reasoningEffort": "high",
333
- "temperature": 1,
334
- "top_k": 40,
335
- "top_p": 0.95
336
- },
337
- "reasoning": true
338
- }
339
- }
340
- },
341
- "proxypal": {
342
- "models": {
343
- "gemini-2.5-computer-use-preview-10-2025": {
344
- "limit": {
345
- "context": 880964,
346
- "output": 65536
347
- },
348
- "name": "Gemini 2 5 Computer Use Preview 10 2025",
349
- "modalities": {
350
- "input": ["text", "image", "pdf"],
351
- "output": ["text"]
352
- }
353
- },
354
- "gemini-2.5-flash": {
355
- "limit": {
356
- "context": 880964,
357
- "output": 65536
358
- },
359
- "name": "Gemini 2 5 Flash",
360
- "modalities": {
361
- "input": ["text", "image", "pdf"],
362
- "output": ["text"]
363
- }
364
- },
365
- "gemini-2.5-flash-lite": {
366
- "limit": {
367
- "context": 880964,
368
- "output": 65536
369
- },
370
- "name": "Gemini 2 5 Flash Lite",
371
- "modalities": {
372
- "input": ["text", "image", "pdf"],
373
- "output": ["text"]
374
- }
375
- },
376
- "gemini-2.5-pro": {
377
- "limit": {
378
- "context": 880964,
379
- "output": 65536
380
- },
381
- "name": "Gemini 2 5 Pro",
382
- "modalities": {
383
- "input": ["text", "image", "pdf"],
384
- "output": ["text"]
385
- }
386
- },
387
- "gemini-3-flash-preview": {
388
- "limit": {
389
- "context": 880964,
390
- "output": 65536
391
- },
392
- "name": "Gemini 3 Flash Preview",
393
- "modalities": {
394
- "input": ["text", "image", "pdf"],
395
- "output": ["text"]
396
- },
397
- "variants": {
398
- "low": {
399
- "thinkingLevel": "low"
400
- },
401
- "medium": {
402
- "thinkingLevel": "medium"
403
- },
404
- "high": {
405
- "thinkingLevel": "high"
406
- }
407
- },
408
- "reasoning": true
409
- },
410
- "gemini-3-pro-image-preview": {
411
- "limit": {
412
- "context": 880964,
413
- "output": 65536
414
- },
415
- "name": "Gemini 3 Pro Image Preview",
416
- "modalities": {
417
- "input": ["text", "image", "pdf"],
418
- "output": ["text"]
419
- }
420
- },
421
- "gemini-3-pro-preview": {
422
- "limit": {
423
- "context": 880964,
424
- "output": 65536
425
- },
426
- "name": "Gemini 3 Pro Preview",
427
- "modalities": {
428
- "input": ["text", "image", "pdf"],
429
- "output": ["text"]
430
- },
431
- "variants": {
432
- "low": {
433
- "thinkingLevel": "low"
434
- },
435
- "high": {
436
- "thinkingLevel": "high"
437
- }
438
- },
439
- "reasoning": true
440
- },
441
- "gemini-claude-opus-4-5-thinking": {
442
- "limit": {
443
- "context": 168000,
444
- "output": 64000
445
- },
446
- "modalities": {
447
- "input": ["text", "image", "pdf"],
448
- "output": ["text"]
449
- },
450
- "name": "Gemini Claude Opus 4 5 Thinking",
451
- "variants": {
452
- "low": {
453
- "thinkingConfig": {
454
- "thinkingBudget": 8192
455
- }
456
- },
457
- "max": {
458
- "thinkingConfig": {
459
- "thinkingBudget": 32768
460
- }
461
- }
462
- },
463
- "reasoning": true
464
- },
465
- "gemini-claude-sonnet-4-5": {
466
- "limit": {
467
- "context": 168000,
468
- "output": 64000
469
- },
470
- "modalities": {
471
- "input": ["text", "image", "pdf"],
472
- "output": ["text"]
473
- },
474
- "name": "Gemini Claude Sonnet 4 5"
475
- },
476
- "gemini-claude-sonnet-4-5-thinking": {
477
- "limit": {
478
- "context": 168000,
479
- "output": 64000
480
- },
481
- "modalities": {
482
- "input": ["text", "image", "pdf"],
483
- "output": ["text"]
484
- },
485
- "name": "Gemini Claude Sonnet 4 5 Thinking",
486
- "variants": {
487
- "low": {
488
- "thinkingConfig": {
489
- "thinkingBudget": 8192
490
- }
491
- },
492
- "max": {
493
- "thinkingConfig": {
494
- "thinkingBudget": 32768
495
- }
496
- }
497
- },
498
- "reasoning": true
499
- },
500
- "glm-4.5": {
501
- "limit": {
502
- "context": 107520,
503
- "output": 16384
504
- },
505
- "name": "Glm 4 5"
506
- },
507
- "glm-4.5-air": {
508
- "limit": {
509
- "context": 107520,
510
- "output": 16384
511
- },
512
- "name": "Glm 4 5 Air"
513
- },
514
- "glm-4.6": {
515
- "limit": {
516
- "context": 107520,
517
- "output": 16384
518
- },
519
- "name": "Glm 4 6"
520
- },
521
- "glm-4.7": {
522
- "limit": {
523
- "context": 107520,
524
- "output": 16384
525
- },
526
- "name": "Glm 4 7"
527
- },
528
- "gpt-5": {
529
- "limit": {
530
- "context": 336000,
531
- "output": 32768
532
- },
533
- "name": "Gpt 5",
534
- "options": {
535
- "reasoningEffort": "medium"
536
- },
537
- "reasoning": true
538
- },
539
- "gpt-5-codex": {
540
- "limit": {
541
- "context": 336000,
542
- "output": 32768
543
- },
544
- "name": "Gpt 5 Codex",
545
- "options": {
546
- "reasoningEffort": "medium"
547
- },
548
- "reasoning": true
549
- },
550
- "gpt-5-codex-mini": {
551
- "limit": {
552
- "context": 336000,
553
- "output": 32768
554
- },
555
- "name": "Gpt 5 Codex Mini",
556
- "options": {
557
- "reasoningEffort": "medium"
558
- },
559
- "reasoning": true
560
- },
561
- "gpt-5.1": {
562
- "limit": {
563
- "context": 336000,
564
- "output": 32768
565
- },
566
- "name": "Gpt 5 1",
567
- "options": {
568
- "reasoningEffort": "medium"
569
- },
570
- "reasoning": true
571
- },
572
- "gpt-5.1-codex": {
573
- "limit": {
574
- "context": 336000,
575
- "output": 32768
576
- },
577
- "name": "Gpt 5 1 Codex",
578
- "options": {
579
- "reasoningEffort": "medium"
580
- },
581
- "reasoning": true
582
- },
583
- "gpt-5.1-codex-max": {
584
- "limit": {
585
- "context": 336000,
586
- "output": 32768
587
- },
588
- "name": "Gpt 5 1 Codex Max",
589
- "options": {
590
- "reasoningEffort": "medium"
591
- },
592
- "reasoning": true
593
- },
594
- "gpt-5.1-codex-mini": {
595
- "limit": {
596
- "context": 336000,
597
- "output": 32768
598
- },
599
- "name": "Gpt 5 1 Codex Mini",
600
- "options": {
601
- "reasoningEffort": "medium"
602
- },
603
- "reasoning": true
604
- },
605
- "gpt-5.2": {
606
- "limit": {
607
- "context": 336000,
608
- "output": 32768
609
- },
610
- "name": "Gpt 5 2",
611
- "options": {
612
- "reasoningEffort": "medium"
613
- },
614
- "reasoning": true
615
- },
616
- "gpt-5.2-codex": {
617
- "limit": {
618
- "context": 336000,
619
- "output": 32768
620
- },
621
- "name": "Gpt 5 2 Codex",
622
- "options": {
623
- "reasoningEffort": "medium"
624
- },
625
- "reasoning": true
626
- },
627
- "gpt-oss-120b-medium": {
628
- "limit": {
629
- "context": 107520,
630
- "output": 16384
631
- },
632
- "name": "Gpt Oss 120b Medium"
633
- }
634
- },
635
- "name": "ProxyPal",
636
- "npm": "@ai-sdk/anthropic",
637
- "options": {
638
- "apiKey": "proxypal-local",
639
- "baseURL": "http://127.0.0.1:8317/v1",
640
- "includeUsage": true
641
- }
642
- },
643
- "zai-coding-plan": {
644
- "models": {
645
- "glm-4.6": {
646
- "limit": {
647
- "context": 128000,
648
- "output": 16384
649
- },
650
- "options": {
651
- "temperature": 1,
652
- "thinking": {
653
- "type": "enabled"
654
- }
655
- },
656
- "reasoning": true,
657
- "temperature": true,
658
- "tool_call": true
659
- },
660
- "glm-4.7": {
661
- "id": "glm-4.7",
662
- "interleaved": true,
663
- "limit": {
664
- "context": 200000,
665
- "output": 128000
666
- },
667
- "name": "GLM-4.7",
668
- "options": {
669
- "temperature": 1,
670
- "thinking": {
671
- "type": "enabled"
672
- }
673
- },
674
- "reasoning": true
675
- }
676
- },
677
- "name": "Z.AI Coding Plan"
678
- }
679
- },
680
- "share": "manual",
681
- "small_model": "opencode/gpt-5-nano",
682
- "tui": {
683
- "diff_style": "auto",
684
- "scroll_acceleration": {
685
- "enabled": true
686
- },
687
- "scroll_speed": 3
688
- },
689
- "watcher": {
690
- "ignore": [
691
- "node_modules/**",
692
- ".git/**",
693
- "dist/**",
694
- "build/**",
695
- "*.log",
696
- ".DS_Store"
697
- ]
698
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "kimi-for-coding/k2p5"
7
+ },
8
+ "compaction": {
9
+ "description": "Session summarizer for context continuity across compactions"
10
+ },
11
+ "explore": {
12
+ "description": "Fast codebase search specialist",
13
+ "model": "opencode/big-pickle"
14
+ },
15
+ "general": {
16
+ "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
+ "model": "opencode/big-pickle"
18
+ },
19
+ "looker": {
20
+ "description": "Media extraction specialist for images, PDFs, diagrams",
21
+ "model": "opencode/gpt-5-nano"
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": "opencode/gpt-5-nano"
26
+ },
27
+ "plan": {
28
+ "description": "Primary planning agent for architecture and multi-phase execution",
29
+ "model": "kimi-for-coding/k2p5"
30
+ },
31
+ "review": {
32
+ "description": "Code review, debugging, and security audit specialist",
33
+ "model": "opencode/big-pickle"
34
+ },
35
+ "scout": {
36
+ "description": "External research specialist for library docs and patterns",
37
+ "model": "opencode/big-pickle"
38
+ },
39
+ "vision": {
40
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
41
+ "model": "opencode/gpt-5-nano"
42
+ }
43
+ },
44
+ "autoupdate": false,
45
+ "compaction": {
46
+ "auto": true,
47
+ "prune": true
48
+ },
49
+ "experimental": {},
50
+ "formatter": {
51
+ "biome": {
52
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
53
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
54
+ },
55
+ "cargo-fmt": {
56
+ "command": ["cargo", "fmt", "--", "$FILE"],
57
+ "extensions": [".rs"]
58
+ },
59
+ "java-formatter": {
60
+ "command": ["google-java-format", "--replace", "$FILE"],
61
+ "environment": {
62
+ "JAVA_HOME": "{env:JAVA_HOME}"
63
+ },
64
+ "extensions": [".java"]
65
+ },
66
+ "laravel-pint": {
67
+ "command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
68
+ "extensions": [".php"]
69
+ },
70
+ "oxfmt": {
71
+ "command": ["npx", "oxfmt", "--write", "$FILE"],
72
+ "extensions": [
73
+ ".js",
74
+ ".jsx",
75
+ ".ts",
76
+ ".tsx",
77
+ ".json",
78
+ ".jsonc",
79
+ ".html",
80
+ ".css",
81
+ ".scss",
82
+ ".sass",
83
+ ".md",
84
+ ".mdx",
85
+ ".yaml",
86
+ ".yml"
87
+ ]
88
+ }
89
+ },
90
+ "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
91
+ "keybinds": {
92
+ "command_list": ";",
93
+ "leader": "`",
94
+ "session_child_cycle": "ctrl+alt+right",
95
+ "session_child_cycle_reverse": "ctrl+alt+left",
96
+ "session_compact": "ctrl+k"
97
+ },
98
+ "mcp": {
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": "kimi-for-coding/k2p5",
111
+ "permission": {
112
+ "bash": {
113
+ "*": "allow",
114
+ "cat *": "allow",
115
+ "git branch *": "allow",
116
+ "git commit *": "ask",
117
+ "git diff *": "allow",
118
+ "git log *": "allow",
119
+ "git push *": "ask",
120
+ "git rebase *": "ask",
121
+ "git reset *": "ask",
122
+ "git status *": "allow",
123
+ "ls *": "allow",
124
+ "npm *": "allow",
125
+ "npx *": "allow",
126
+ "rm *": "deny",
127
+ "rm -rf *": "deny",
128
+ "sudo *": "deny"
129
+ },
130
+ "doom_loop": "ask",
131
+ "edit": "allow",
132
+ "external_directory": "ask",
133
+ "question": "allow",
134
+ "read": {
135
+ "*": "allow",
136
+ "*.env": "deny",
137
+ "*.env.*": "deny",
138
+ "*.env.example": "allow"
139
+ }
140
+ },
141
+ "plugin": [
142
+ "@tarquinen/opencode-dcp@latest",
143
+ "@franlol/opencode-md-table-formatter@0.0.3"
144
+ ],
145
+ "provider": {
146
+ "kimi-for-coding": {
147
+ "models": {
148
+ "k2p5": {
149
+ "limit": {
150
+ "context": 262144,
151
+ "output": 32768
152
+ },
153
+ "temperature": true,
154
+ "reasoning": true,
155
+ "tool_call": true,
156
+ "variants": {
157
+ "high": {
158
+ "options": {
159
+ "thinking": {
160
+ "budgetTokens": 32000,
161
+ "type": "enabled"
162
+ }
163
+ }
164
+ },
165
+ "medium": {
166
+ "options": {
167
+ "thinking": {
168
+ "budgetTokens": 16000,
169
+ "type": "enabled"
170
+ }
171
+ }
172
+ }
173
+ }
174
+ },
175
+ "kimi-k2-thinking": {
176
+ "limit": {
177
+ "context": 262144,
178
+ "output": 32768
179
+ },
180
+ "temperature": true,
181
+ "reasoning": true,
182
+ "tool_call": true,
183
+ "variants": {
184
+ "high": {
185
+ "options": {
186
+ "thinking": {
187
+ "budgetTokens": 32000,
188
+ "type": "enabled"
189
+ }
190
+ }
191
+ },
192
+ "medium": {
193
+ "options": {
194
+ "thinking": {
195
+ "budgetTokens": 16000,
196
+ "type": "enabled"
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+ }
203
+ },
204
+ "github-copilot": {
205
+ "models": {
206
+ "claude-haiku-4.5": {
207
+ "attachment": true,
208
+ "reasoning": true,
209
+ "temperature": true,
210
+ "tool_call": true,
211
+ "variants": {
212
+ "high": {
213
+ "options": {
214
+ "thinking": {
215
+ "budgetTokens": 32000,
216
+ "type": "enabled"
217
+ }
218
+ }
219
+ },
220
+ "medium": {
221
+ "options": {
222
+ "thinking": {
223
+ "budgetTokens": 16000,
224
+ "type": "enabled"
225
+ }
226
+ }
227
+ }
228
+ }
229
+ },
230
+ "claude-opus-4.5": {
231
+ "attachment": true,
232
+ "reasoning": true,
233
+ "temperature": true,
234
+ "tool_call": true,
235
+ "variants": {
236
+ "high": {
237
+ "options": {
238
+ "thinking": {
239
+ "budgetTokens": 32000,
240
+ "type": "enabled"
241
+ }
242
+ }
243
+ },
244
+ "medium": {
245
+ "options": {
246
+ "thinking": {
247
+ "budgetTokens": 16000,
248
+ "type": "enabled"
249
+ }
250
+ }
251
+ }
252
+ }
253
+ },
254
+ "claude-sonnet-4.5": {
255
+ "attachment": true,
256
+ "reasoning": true,
257
+ "temperature": true,
258
+ "tool_call": true,
259
+ "variants": {
260
+ "high": {
261
+ "options": {
262
+ "thinking": {
263
+ "budgetTokens": 16000,
264
+ "type": "enabled"
265
+ }
266
+ }
267
+ },
268
+ "medium": {
269
+ "options": {
270
+ "thinking": {
271
+ "budgetTokens": 8000,
272
+ "type": "enabled"
273
+ }
274
+ }
275
+ }
276
+ }
277
+ },
278
+ "gpt-5-mini": {
279
+ "attachment": true,
280
+ "reasoning": true,
281
+ "temperature": true,
282
+ "tool_call": true,
283
+ "variants": {
284
+ "high": {
285
+ "options": {
286
+ "reasoning": {
287
+ "effort": "high"
288
+ }
289
+ }
290
+ },
291
+ "low": {
292
+ "options": {
293
+ "reasoning": {
294
+ "effort": "low"
295
+ }
296
+ }
297
+ },
298
+ "medium": {
299
+ "options": {
300
+ "reasoning": {
301
+ "effort": "medium"
302
+ }
303
+ }
304
+ }
305
+ }
306
+ },
307
+ "gpt-5.2-codex": {
308
+ "attachment": true,
309
+ "reasoning": true,
310
+ "temperature": true,
311
+ "tool_call": true,
312
+ "variants": {
313
+ "high": {
314
+ "options": {
315
+ "reasoning": {
316
+ "effort": "high"
317
+ }
318
+ }
319
+ },
320
+ "low": {
321
+ "options": {
322
+ "reasoning": {
323
+ "effort": "low"
324
+ }
325
+ }
326
+ },
327
+ "medium": {
328
+ "options": {
329
+ "reasoning": {
330
+ "effort": "medium"
331
+ }
332
+ }
333
+ }
334
+ }
335
+ }
336
+ }
337
+ },
338
+ "openai": {
339
+ "models": {
340
+ "gpt-5.2": {
341
+ "variants": {
342
+ "fast": {
343
+ "disabled": true
344
+ },
345
+ "high": {
346
+ "include": ["reasoning.encrypted_content"],
347
+ "reasoningEffort": "high",
348
+ "reasoningSummary": "auto",
349
+ "textVerbosity": "low"
350
+ },
351
+ "medium": {
352
+ "include": ["reasoning.encrypted_content"],
353
+ "reasoningEffort": "medium",
354
+ "reasoningSummary": "auto",
355
+ "textVerbosity": "low"
356
+ }
357
+ }
358
+ },
359
+ "gpt-5.2-codex": {
360
+ "variants": {
361
+ "fast": {
362
+ "disabled": true
363
+ },
364
+ "high": {
365
+ "include": ["reasoning.encrypted_content"],
366
+ "reasoningEffort": "high",
367
+ "reasoningSummary": "auto",
368
+ "textVerbosity": "low"
369
+ },
370
+ "medium": {
371
+ "include": ["reasoning.encrypted_content"],
372
+ "reasoningEffort": "medium",
373
+ "reasoningSummary": "auto",
374
+ "textVerbosity": "low"
375
+ }
376
+ }
377
+ }
378
+ }
379
+ },
380
+ "opencode": {
381
+ "models": {
382
+ "big-pickle": {
383
+ "options": {
384
+ "reasoningEffort": "high",
385
+ "temperature": 1,
386
+ "top_k": 40,
387
+ "top_p": 0.95
388
+ },
389
+ "reasoning": true
390
+ }
391
+ }
392
+ },
393
+ "proxypal": {
394
+ "models": {
395
+ "gemini-2.5-flash": {
396
+ "limit": {
397
+ "context": 1000000,
398
+ "output": 65536
399
+ },
400
+ "modalities": {
401
+ "input": ["text", "image", "pdf"],
402
+ "output": ["text"]
403
+ },
404
+ "name": "Gemini 2 5 Flash"
405
+ },
406
+ "gemini-2.5-flash-lite": {
407
+ "limit": {
408
+ "context": 1000000,
409
+ "output": 65536
410
+ },
411
+ "modalities": {
412
+ "input": ["text", "image", "pdf"],
413
+ "output": ["text"]
414
+ },
415
+ "name": "Gemini 2 5 Flash Lite"
416
+ },
417
+ "gemini-2.5-pro": {
418
+ "limit": {
419
+ "context": 1000000,
420
+ "output": 65536
421
+ },
422
+ "modalities": {
423
+ "input": ["text", "image", "pdf"],
424
+ "output": ["text"]
425
+ },
426
+ "name": "Gemini 2 5 Pro"
427
+ },
428
+ "gemini-3-flash-preview": {
429
+ "limit": {
430
+ "context": 1000000,
431
+ "output": 65536
432
+ },
433
+ "modalities": {
434
+ "input": ["text", "image", "pdf"],
435
+ "output": ["text"]
436
+ },
437
+ "name": "Gemini 3 Flash Preview",
438
+ "options": {
439
+ "generationConfig": {
440
+ "thinkingConfig": {
441
+ "includeThoughts": true,
442
+ "thinkingLevel": "medium"
443
+ }
444
+ }
445
+ },
446
+ "reasoning": true,
447
+ "variants": {
448
+ "high": {
449
+ "thinkingLevel": "high"
450
+ },
451
+ "low": {
452
+ "thinkingLevel": "low"
453
+ },
454
+ "medium": {
455
+ "thinkingLevel": "medium"
456
+ }
457
+ }
458
+ },
459
+ "gemini-3-pro-image-preview": {
460
+ "limit": {
461
+ "context": 1000000,
462
+ "output": 65536
463
+ },
464
+ "name": "Gemini 3 Pro Image Preview"
465
+ },
466
+ "gemini-3-pro-preview": {
467
+ "limit": {
468
+ "context": 1000000,
469
+ "output": 65536
470
+ },
471
+ "modalities": {
472
+ "input": ["text", "image", "pdf"],
473
+ "output": ["text"]
474
+ },
475
+ "name": "Gemini 3 Pro Preview",
476
+ "options": {
477
+ "generationConfig": {
478
+ "thinkingConfig": {
479
+ "includeThoughts": true,
480
+ "thinkingLevel": "medium"
481
+ }
482
+ }
483
+ },
484
+ "reasoning": true,
485
+ "variants": {
486
+ "high": {
487
+ "thinkingLevel": "high"
488
+ },
489
+ "low": {
490
+ "thinkingLevel": "low"
491
+ },
492
+ "medium": {
493
+ "thinkingLevel": "medium"
494
+ }
495
+ }
496
+ },
497
+ "gemini-claude-opus-4-5-thinking": {
498
+ "limit": {
499
+ "context": 200000,
500
+ "output": 64000
501
+ },
502
+ "modalities": {
503
+ "input": ["text", "image", "pdf"],
504
+ "output": ["text"]
505
+ },
506
+ "name": "Gemini Claude Opus 4 5 Thinking",
507
+ "options": {
508
+ "thinking": {
509
+ "budgetTokens": 8192,
510
+ "type": "enabled"
511
+ }
512
+ },
513
+ "reasoning": true,
514
+ "variants": {
515
+ "low": {
516
+ "thinkingConfig": {
517
+ "thinkingBudget": 8192
518
+ }
519
+ },
520
+ "max": {
521
+ "thinkingConfig": {
522
+ "thinkingBudget": 32768
523
+ }
524
+ }
525
+ }
526
+ },
527
+ "gemini-claude-sonnet-4-5": {
528
+ "limit": {
529
+ "context": 200000,
530
+ "output": 64000
531
+ },
532
+ "modalities": {
533
+ "input": ["text", "image", "pdf"],
534
+ "output": ["text"]
535
+ },
536
+ "name": "Gemini Claude Sonnet 4 5"
537
+ },
538
+ "gemini-claude-sonnet-4-5-thinking": {
539
+ "limit": {
540
+ "context": 200000,
541
+ "output": 64000
542
+ },
543
+ "modalities": {
544
+ "input": ["text", "image", "pdf"],
545
+ "output": ["text"]
546
+ },
547
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
548
+ "options": {
549
+ "thinking": {
550
+ "budgetTokens": 8192,
551
+ "type": "enabled"
552
+ }
553
+ },
554
+ "reasoning": true,
555
+ "variants": {
556
+ "low": {
557
+ "thinkingConfig": {
558
+ "thinkingBudget": 8192
559
+ }
560
+ },
561
+ "max": {
562
+ "thinkingConfig": {
563
+ "thinkingBudget": 32768
564
+ }
565
+ }
566
+ }
567
+ },
568
+ "glm-4.5": {
569
+ "limit": {
570
+ "context": 128000,
571
+ "output": 16384
572
+ },
573
+ "name": "Glm 4 5"
574
+ },
575
+ "glm-4.5-air": {
576
+ "limit": {
577
+ "context": 128000,
578
+ "output": 16384
579
+ },
580
+ "name": "Glm 4 5 Air"
581
+ },
582
+ "glm-4.6": {
583
+ "limit": {
584
+ "context": 128000,
585
+ "output": 16384
586
+ },
587
+ "name": "Glm 4 6"
588
+ },
589
+ "glm-4.7": {
590
+ "limit": {
591
+ "context": 128000,
592
+ "output": 16384
593
+ },
594
+ "name": "Glm 4 7"
595
+ },
596
+ "gpt-5": {
597
+ "limit": {
598
+ "context": 400000,
599
+ "output": 32768
600
+ },
601
+ "name": "Gpt 5",
602
+ "options": {
603
+ "reasoningEffort": "medium"
604
+ },
605
+ "reasoning": true
606
+ },
607
+ "gpt-5-codex": {
608
+ "limit": {
609
+ "context": 400000,
610
+ "output": 32768
611
+ },
612
+ "name": "Gpt 5 Codex",
613
+ "options": {
614
+ "reasoningEffort": "medium"
615
+ },
616
+ "reasoning": true
617
+ },
618
+ "gpt-5-codex-mini": {
619
+ "limit": {
620
+ "context": 400000,
621
+ "output": 32768
622
+ },
623
+ "name": "Gpt 5 Codex Mini",
624
+ "options": {
625
+ "reasoningEffort": "medium"
626
+ },
627
+ "reasoning": true
628
+ },
629
+ "gpt-5.1": {
630
+ "limit": {
631
+ "context": 400000,
632
+ "output": 32768
633
+ },
634
+ "name": "Gpt 5 1",
635
+ "options": {
636
+ "reasoningEffort": "medium"
637
+ },
638
+ "reasoning": true
639
+ },
640
+ "gpt-5.1-codex": {
641
+ "limit": {
642
+ "context": 400000,
643
+ "output": 32768
644
+ },
645
+ "name": "Gpt 5 1 Codex",
646
+ "options": {
647
+ "reasoningEffort": "medium"
648
+ },
649
+ "reasoning": true
650
+ },
651
+ "gpt-5.1-codex-max": {
652
+ "limit": {
653
+ "context": 400000,
654
+ "output": 32768
655
+ },
656
+ "name": "Gpt 5 1 Codex Max",
657
+ "options": {
658
+ "reasoningEffort": "medium"
659
+ },
660
+ "reasoning": true
661
+ },
662
+ "gpt-5.1-codex-mini": {
663
+ "limit": {
664
+ "context": 400000,
665
+ "output": 32768
666
+ },
667
+ "name": "Gpt 5 1 Codex Mini",
668
+ "options": {
669
+ "reasoningEffort": "medium"
670
+ },
671
+ "reasoning": true
672
+ },
673
+ "gpt-5.2": {
674
+ "limit": {
675
+ "context": 400000,
676
+ "output": 32768
677
+ },
678
+ "name": "Gpt 5 2",
679
+ "options": {
680
+ "reasoningEffort": "medium"
681
+ },
682
+ "reasoning": true
683
+ },
684
+ "gpt-5.2-codex": {
685
+ "limit": {
686
+ "context": 400000,
687
+ "output": 32768
688
+ },
689
+ "name": "Gpt 5 2 Codex",
690
+ "options": {
691
+ "reasoningEffort": "medium"
692
+ },
693
+ "reasoning": true
694
+ },
695
+ "gpt-oss-120b-medium": {
696
+ "limit": {
697
+ "context": 128000,
698
+ "output": 16384
699
+ },
700
+ "name": "Gpt Oss 120b Medium"
701
+ },
702
+ "kiro-auto": {
703
+ "limit": {
704
+ "context": 128000,
705
+ "output": 16384
706
+ },
707
+ "name": "Kiro Auto"
708
+ },
709
+ "kiro-claude-haiku-4-5": {
710
+ "limit": {
711
+ "context": 200000,
712
+ "output": 64000
713
+ },
714
+ "name": "Kiro Claude Haiku 4 5"
715
+ },
716
+ "kiro-claude-haiku-4-5-agentic": {
717
+ "limit": {
718
+ "context": 200000,
719
+ "output": 64000
720
+ },
721
+ "name": "Kiro Claude Haiku 4 5 Agentic"
722
+ },
723
+ "kiro-claude-opus-4-5": {
724
+ "limit": {
725
+ "context": 200000,
726
+ "output": 64000
727
+ },
728
+ "name": "Kiro Claude Opus 4 5"
729
+ },
730
+ "kiro-claude-opus-4-5-agentic": {
731
+ "limit": {
732
+ "context": 200000,
733
+ "output": 64000
734
+ },
735
+ "name": "Kiro Claude Opus 4 5 Agentic"
736
+ },
737
+ "kiro-claude-sonnet-4": {
738
+ "limit": {
739
+ "context": 200000,
740
+ "output": 64000
741
+ },
742
+ "name": "Kiro Claude Sonnet 4"
743
+ },
744
+ "kiro-claude-sonnet-4-5": {
745
+ "limit": {
746
+ "context": 200000,
747
+ "output": 64000
748
+ },
749
+ "name": "Kiro Claude Sonnet 4 5"
750
+ },
751
+ "kiro-claude-sonnet-4-5-agentic": {
752
+ "limit": {
753
+ "context": 200000,
754
+ "output": 64000
755
+ },
756
+ "name": "Kiro Claude Sonnet 4 5 Agentic"
757
+ },
758
+ "kiro-claude-sonnet-4-agentic": {
759
+ "limit": {
760
+ "context": 200000,
761
+ "output": 64000
762
+ },
763
+ "name": "Kiro Claude Sonnet 4 Agentic"
764
+ },
765
+ "tab_flash_lite_preview": {
766
+ "limit": {
767
+ "context": 128000,
768
+ "output": 16384
769
+ },
770
+ "name": "Tab_flash_lite_preview"
771
+ }
772
+ },
773
+ "name": "ProxyPal",
774
+ "npm": "@ai-sdk/anthropic",
775
+ "options": {
776
+ "apiKey": "proxypal-local",
777
+ "baseURL": "http://127.0.0.1:8317/v1",
778
+ "includeUsage": true
779
+ }
780
+ },
781
+ "zai-coding-plan": {
782
+ "models": {
783
+ "glm-4.6": {
784
+ "limit": {
785
+ "context": 128000,
786
+ "output": 16384
787
+ },
788
+ "options": {
789
+ "temperature": 1,
790
+ "thinking": {
791
+ "type": "enabled"
792
+ }
793
+ },
794
+ "reasoning": true,
795
+ "temperature": true,
796
+ "tool_call": true
797
+ },
798
+ "glm-4.7": {
799
+ "id": "glm-4.7",
800
+ "interleaved": true,
801
+ "limit": {
802
+ "context": 200000,
803
+ "output": 128000
804
+ },
805
+ "name": "GLM-4.7",
806
+ "options": {
807
+ "temperature": 1,
808
+ "thinking": {
809
+ "type": "enabled"
810
+ }
811
+ },
812
+ "reasoning": true
813
+ }
814
+ },
815
+ "name": "Z.AI Coding Plan"
816
+ }
817
+ },
818
+ "share": "manual",
819
+ "small_model": "opencode/gpt-5-nano",
820
+ "tools": {
821
+ "context7-query-docs": true,
822
+ "context7-resolve-library-id": true,
823
+ "grepsearch": true,
824
+ "oracle": true
825
+ },
826
+ "tui": {
827
+ "diff_style": "auto",
828
+ "scroll_acceleration": {
829
+ "enabled": true
830
+ },
831
+ "scroll_speed": 3
832
+ },
833
+ "watcher": {
834
+ "ignore": [
835
+ "node_modules/**",
836
+ ".git/**",
837
+ "dist/**",
838
+ "build/**",
839
+ "*.log",
840
+ ".DS_Store"
841
+ ]
842
+ }
699
843
  }