opencodekit 0.15.7 → 0.15.8

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