opencodekit 0.15.14 → 0.15.15

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