opencodekit 0.20.2 → 0.20.4

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