opencodekit 0.15.13 → 0.15.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +19 -7
- package/dist/template/.opencode/AGENTS.md +48 -4
- package/dist/template/.opencode/agent/scout.md +20 -1
- package/dist/template/.opencode/command/research.md +55 -61
- package/dist/template/.opencode/memory/observations/2026-01-28-decision-created-deep-research-skill-for-thorough.md +29 -0
- package/dist/template/.opencode/memory/observations/2026-01-28-decision-oracle-tool-optimal-usage-patterns.md +32 -0
- package/dist/template/.opencode/memory/observations/2026-01-28-learning-ampcode-deep-mode-research-integration-w.md +42 -0
- package/dist/template/.opencode/memory/observations/2026-01-28-pattern-research-delegation-pattern-explore-for-.md +32 -0
- package/dist/template/.opencode/memory/observations/2026-01-29-learning-karpathy-llm-coding-insights-dec-2025.md +44 -0
- package/dist/template/.opencode/opencode.json +306 -121
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/skill/deep-research/SKILL.md +385 -0
- package/dist/template/.opencode/tool/oracle.ts +240 -0
- package/package.json +16 -4
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"description": "Media extraction specialist for images, PDFs, diagrams",
|
|
21
21
|
"model": "opencode/gpt-5-nano"
|
|
22
22
|
},
|
|
23
|
+
"painter": {
|
|
24
|
+
"description": "Image generation and editing specialist using Gemini 3 Pro Image. Use for creating UI mockups, app icons, hero images, visual assets, and editing/redacting existing images",
|
|
25
|
+
"model": "opencode/gpt-5-nano"
|
|
26
|
+
},
|
|
23
27
|
"plan": {
|
|
24
28
|
"description": "Primary planning agent for architecture and multi-phase execution",
|
|
25
29
|
"model": "opencode/big-pickle"
|
|
@@ -35,10 +39,6 @@
|
|
|
35
39
|
"vision": {
|
|
36
40
|
"description": "Visual content specialist for multimodal analysis and UI/UX guidance",
|
|
37
41
|
"model": "opencode/gpt-5-nano"
|
|
38
|
-
},
|
|
39
|
-
"painter": {
|
|
40
|
-
"description": "Image generation and editing specialist using Gemini 3 Pro Image. Use for creating UI mockups, app icons, hero images, visual assets, and editing/redacting existing images",
|
|
41
|
-
"model": "opencode/gpt-5-nano"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"autoupdate": false,
|
|
@@ -49,22 +49,65 @@
|
|
|
49
49
|
"experimental": {},
|
|
50
50
|
"formatter": {
|
|
51
51
|
"biome": {
|
|
52
|
-
"command": [
|
|
53
|
-
|
|
52
|
+
"command": [
|
|
53
|
+
"npx",
|
|
54
|
+
"@biomejs/biome",
|
|
55
|
+
"check",
|
|
56
|
+
"--write",
|
|
57
|
+
"$FILE"
|
|
58
|
+
],
|
|
59
|
+
"extensions": [
|
|
60
|
+
".js",
|
|
61
|
+
".jsx",
|
|
62
|
+
".ts",
|
|
63
|
+
".tsx",
|
|
64
|
+
".json",
|
|
65
|
+
".jsonc"
|
|
66
|
+
]
|
|
54
67
|
},
|
|
55
68
|
"cargo-fmt": {
|
|
56
|
-
"command": [
|
|
57
|
-
|
|
69
|
+
"command": [
|
|
70
|
+
"cargo",
|
|
71
|
+
"fmt",
|
|
72
|
+
"--",
|
|
73
|
+
"$FILE"
|
|
74
|
+
],
|
|
75
|
+
"extensions": [
|
|
76
|
+
".rs"
|
|
77
|
+
]
|
|
58
78
|
},
|
|
59
79
|
"java-formatter": {
|
|
60
|
-
"command": [
|
|
80
|
+
"command": [
|
|
81
|
+
"google-java-format",
|
|
82
|
+
"--replace",
|
|
83
|
+
"$FILE"
|
|
84
|
+
],
|
|
61
85
|
"environment": {
|
|
62
86
|
"JAVA_HOME": "{env:JAVA_HOME}"
|
|
63
87
|
},
|
|
64
|
-
"extensions": [
|
|
88
|
+
"extensions": [
|
|
89
|
+
".java"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"laravel-pint": {
|
|
93
|
+
"command": [
|
|
94
|
+
"npx",
|
|
95
|
+
"laravel-pint",
|
|
96
|
+
"--preset",
|
|
97
|
+
"psr12",
|
|
98
|
+
"$FILE"
|
|
99
|
+
],
|
|
100
|
+
"extensions": [
|
|
101
|
+
".php"
|
|
102
|
+
]
|
|
65
103
|
},
|
|
66
104
|
"oxfmt": {
|
|
67
|
-
"command": [
|
|
105
|
+
"command": [
|
|
106
|
+
"npx",
|
|
107
|
+
"oxfmt",
|
|
108
|
+
"--write",
|
|
109
|
+
"$FILE"
|
|
110
|
+
],
|
|
68
111
|
"extensions": [
|
|
69
112
|
".js",
|
|
70
113
|
".jsx",
|
|
@@ -81,13 +124,12 @@
|
|
|
81
124
|
".yaml",
|
|
82
125
|
".yml"
|
|
83
126
|
]
|
|
84
|
-
},
|
|
85
|
-
"laravel-pint": {
|
|
86
|
-
"command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
|
|
87
|
-
"extensions": [".php"]
|
|
88
127
|
}
|
|
89
128
|
},
|
|
90
|
-
"instructions": [
|
|
129
|
+
"instructions": [
|
|
130
|
+
".opencode/memory/user.md",
|
|
131
|
+
".opencode/memory/project/*.md"
|
|
132
|
+
],
|
|
91
133
|
"keybinds": {
|
|
92
134
|
"command_list": ";",
|
|
93
135
|
"leader": "`",
|
|
@@ -98,13 +140,13 @@
|
|
|
98
140
|
"mcp": {
|
|
99
141
|
"stitch": {
|
|
100
142
|
"enabled": false,
|
|
101
|
-
"type": "remote",
|
|
102
|
-
"url": "https://stitch.googleapis.com/mcp",
|
|
103
|
-
"oauth": false,
|
|
104
143
|
"headers": {
|
|
105
144
|
"Authorization": "Bearer {env:STITCH_ACCESS_TOKEN}",
|
|
106
145
|
"X-Goog-User-Project": "{env:GOOGLE_CLOUD_PROJECT}"
|
|
107
|
-
}
|
|
146
|
+
},
|
|
147
|
+
"oauth": false,
|
|
148
|
+
"type": "remote",
|
|
149
|
+
"url": "https://stitch.googleapis.com/mcp"
|
|
108
150
|
}
|
|
109
151
|
},
|
|
110
152
|
"model": "opencode/big-pickle",
|
|
@@ -142,15 +184,10 @@
|
|
|
142
184
|
"@tarquinen/opencode-dcp@latest",
|
|
143
185
|
"@franlol/opencode-md-table-formatter@0.0.3"
|
|
144
186
|
],
|
|
145
|
-
"tools": {
|
|
146
|
-
"grep-search": true,
|
|
147
|
-
"context7-resolve-library-id": true,
|
|
148
|
-
"context7-query-docs": true
|
|
149
|
-
},
|
|
150
187
|
"provider": {
|
|
151
188
|
"github-copilot": {
|
|
152
189
|
"models": {
|
|
153
|
-
"claude-
|
|
190
|
+
"claude-haiku-4.5": {
|
|
154
191
|
"attachment": true,
|
|
155
192
|
"reasoning": true,
|
|
156
193
|
"temperature": true,
|
|
@@ -174,7 +211,7 @@
|
|
|
174
211
|
}
|
|
175
212
|
}
|
|
176
213
|
},
|
|
177
|
-
"claude-
|
|
214
|
+
"claude-opus-4.5": {
|
|
178
215
|
"attachment": true,
|
|
179
216
|
"reasoning": true,
|
|
180
217
|
"temperature": true,
|
|
@@ -183,7 +220,7 @@
|
|
|
183
220
|
"high": {
|
|
184
221
|
"options": {
|
|
185
222
|
"thinking": {
|
|
186
|
-
"budgetTokens":
|
|
223
|
+
"budgetTokens": 32000,
|
|
187
224
|
"type": "enabled"
|
|
188
225
|
}
|
|
189
226
|
}
|
|
@@ -191,14 +228,14 @@
|
|
|
191
228
|
"medium": {
|
|
192
229
|
"options": {
|
|
193
230
|
"thinking": {
|
|
194
|
-
"budgetTokens":
|
|
231
|
+
"budgetTokens": 16000,
|
|
195
232
|
"type": "enabled"
|
|
196
233
|
}
|
|
197
234
|
}
|
|
198
235
|
}
|
|
199
236
|
}
|
|
200
237
|
},
|
|
201
|
-
"claude-
|
|
238
|
+
"claude-sonnet-4.5": {
|
|
202
239
|
"attachment": true,
|
|
203
240
|
"reasoning": true,
|
|
204
241
|
"temperature": true,
|
|
@@ -207,7 +244,7 @@
|
|
|
207
244
|
"high": {
|
|
208
245
|
"options": {
|
|
209
246
|
"thinking": {
|
|
210
|
-
"budgetTokens":
|
|
247
|
+
"budgetTokens": 16000,
|
|
211
248
|
"type": "enabled"
|
|
212
249
|
}
|
|
213
250
|
}
|
|
@@ -215,7 +252,7 @@
|
|
|
215
252
|
"medium": {
|
|
216
253
|
"options": {
|
|
217
254
|
"thinking": {
|
|
218
|
-
"budgetTokens":
|
|
255
|
+
"budgetTokens": 8000,
|
|
219
256
|
"type": "enabled"
|
|
220
257
|
}
|
|
221
258
|
}
|
|
@@ -235,17 +272,17 @@
|
|
|
235
272
|
}
|
|
236
273
|
}
|
|
237
274
|
},
|
|
238
|
-
"
|
|
275
|
+
"low": {
|
|
239
276
|
"options": {
|
|
240
277
|
"reasoning": {
|
|
241
|
-
"effort": "
|
|
278
|
+
"effort": "low"
|
|
242
279
|
}
|
|
243
280
|
}
|
|
244
281
|
},
|
|
245
|
-
"
|
|
282
|
+
"medium": {
|
|
246
283
|
"options": {
|
|
247
284
|
"reasoning": {
|
|
248
|
-
"effort": "
|
|
285
|
+
"effort": "medium"
|
|
249
286
|
}
|
|
250
287
|
}
|
|
251
288
|
}
|
|
@@ -264,17 +301,17 @@
|
|
|
264
301
|
}
|
|
265
302
|
}
|
|
266
303
|
},
|
|
267
|
-
"
|
|
304
|
+
"low": {
|
|
268
305
|
"options": {
|
|
269
306
|
"reasoning": {
|
|
270
|
-
"effort": "
|
|
307
|
+
"effort": "low"
|
|
271
308
|
}
|
|
272
309
|
}
|
|
273
310
|
},
|
|
274
|
-
"
|
|
311
|
+
"medium": {
|
|
275
312
|
"options": {
|
|
276
313
|
"reasoning": {
|
|
277
|
-
"effort": "
|
|
314
|
+
"effort": "medium"
|
|
278
315
|
}
|
|
279
316
|
}
|
|
280
317
|
}
|
|
@@ -290,13 +327,17 @@
|
|
|
290
327
|
"disabled": true
|
|
291
328
|
},
|
|
292
329
|
"high": {
|
|
293
|
-
"include": [
|
|
330
|
+
"include": [
|
|
331
|
+
"reasoning.encrypted_content"
|
|
332
|
+
],
|
|
294
333
|
"reasoningEffort": "high",
|
|
295
334
|
"reasoningSummary": "auto",
|
|
296
335
|
"textVerbosity": "low"
|
|
297
336
|
},
|
|
298
337
|
"medium": {
|
|
299
|
-
"include": [
|
|
338
|
+
"include": [
|
|
339
|
+
"reasoning.encrypted_content"
|
|
340
|
+
],
|
|
300
341
|
"reasoningEffort": "medium",
|
|
301
342
|
"reasoningSummary": "auto",
|
|
302
343
|
"textVerbosity": "low"
|
|
@@ -309,13 +350,17 @@
|
|
|
309
350
|
"disabled": true
|
|
310
351
|
},
|
|
311
352
|
"high": {
|
|
312
|
-
"include": [
|
|
353
|
+
"include": [
|
|
354
|
+
"reasoning.encrypted_content"
|
|
355
|
+
],
|
|
313
356
|
"reasoningEffort": "high",
|
|
314
357
|
"reasoningSummary": "auto",
|
|
315
358
|
"textVerbosity": "low"
|
|
316
359
|
},
|
|
317
360
|
"medium": {
|
|
318
|
-
"include": [
|
|
361
|
+
"include": [
|
|
362
|
+
"reasoning.encrypted_content"
|
|
363
|
+
],
|
|
319
364
|
"reasoningEffort": "medium",
|
|
320
365
|
"reasoningSummary": "auto",
|
|
321
366
|
"textVerbosity": "low"
|
|
@@ -339,114 +384,161 @@
|
|
|
339
384
|
},
|
|
340
385
|
"proxypal": {
|
|
341
386
|
"models": {
|
|
342
|
-
"gemini-2.5-computer-use-preview-10-2025": {
|
|
343
|
-
"limit": {
|
|
344
|
-
"context": 880964,
|
|
345
|
-
"output": 65536
|
|
346
|
-
},
|
|
347
|
-
"name": "Gemini 2 5 Computer Use Preview 10 2025",
|
|
348
|
-
"modalities": {
|
|
349
|
-
"input": ["text", "image", "pdf"],
|
|
350
|
-
"output": ["text"]
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
387
|
"gemini-2.5-flash": {
|
|
354
388
|
"limit": {
|
|
355
|
-
"context":
|
|
389
|
+
"context": 1000000,
|
|
356
390
|
"output": 65536
|
|
357
391
|
},
|
|
358
|
-
"name": "Gemini 2 5 Flash",
|
|
359
392
|
"modalities": {
|
|
360
|
-
"input": [
|
|
361
|
-
|
|
362
|
-
|
|
393
|
+
"input": [
|
|
394
|
+
"text",
|
|
395
|
+
"image",
|
|
396
|
+
"pdf"
|
|
397
|
+
],
|
|
398
|
+
"output": [
|
|
399
|
+
"text"
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
"name": "Gemini 2 5 Flash"
|
|
363
403
|
},
|
|
364
404
|
"gemini-2.5-flash-lite": {
|
|
365
405
|
"limit": {
|
|
366
|
-
"context":
|
|
406
|
+
"context": 1000000,
|
|
367
407
|
"output": 65536
|
|
368
408
|
},
|
|
369
|
-
"name": "Gemini 2 5 Flash Lite",
|
|
370
409
|
"modalities": {
|
|
371
|
-
"input": [
|
|
372
|
-
|
|
373
|
-
|
|
410
|
+
"input": [
|
|
411
|
+
"text",
|
|
412
|
+
"image",
|
|
413
|
+
"pdf"
|
|
414
|
+
],
|
|
415
|
+
"output": [
|
|
416
|
+
"text"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
"name": "Gemini 2 5 Flash Lite"
|
|
374
420
|
},
|
|
375
421
|
"gemini-2.5-pro": {
|
|
376
422
|
"limit": {
|
|
377
|
-
"context":
|
|
423
|
+
"context": 1000000,
|
|
378
424
|
"output": 65536
|
|
379
425
|
},
|
|
380
|
-
"name": "Gemini 2 5 Pro",
|
|
381
426
|
"modalities": {
|
|
382
|
-
"input": [
|
|
383
|
-
|
|
384
|
-
|
|
427
|
+
"input": [
|
|
428
|
+
"text",
|
|
429
|
+
"image",
|
|
430
|
+
"pdf"
|
|
431
|
+
],
|
|
432
|
+
"output": [
|
|
433
|
+
"text"
|
|
434
|
+
]
|
|
435
|
+
},
|
|
436
|
+
"name": "Gemini 2 5 Pro"
|
|
385
437
|
},
|
|
386
438
|
"gemini-3-flash-preview": {
|
|
387
439
|
"limit": {
|
|
388
|
-
"context":
|
|
440
|
+
"context": 1000000,
|
|
389
441
|
"output": 65536
|
|
390
442
|
},
|
|
391
|
-
"name": "Gemini 3 Flash Preview",
|
|
392
443
|
"modalities": {
|
|
393
|
-
"input": [
|
|
394
|
-
|
|
444
|
+
"input": [
|
|
445
|
+
"text",
|
|
446
|
+
"image",
|
|
447
|
+
"pdf"
|
|
448
|
+
],
|
|
449
|
+
"output": [
|
|
450
|
+
"text"
|
|
451
|
+
]
|
|
452
|
+
},
|
|
453
|
+
"name": "Gemini 3 Flash Preview",
|
|
454
|
+
"options": {
|
|
455
|
+
"generationConfig": {
|
|
456
|
+
"thinkingConfig": {
|
|
457
|
+
"includeThoughts": true,
|
|
458
|
+
"thinkingLevel": "medium"
|
|
459
|
+
}
|
|
460
|
+
}
|
|
395
461
|
},
|
|
462
|
+
"reasoning": true,
|
|
396
463
|
"variants": {
|
|
464
|
+
"high": {
|
|
465
|
+
"thinkingLevel": "high"
|
|
466
|
+
},
|
|
397
467
|
"low": {
|
|
398
468
|
"thinkingLevel": "low"
|
|
399
469
|
},
|
|
400
470
|
"medium": {
|
|
401
471
|
"thinkingLevel": "medium"
|
|
402
|
-
},
|
|
403
|
-
"high": {
|
|
404
|
-
"thinkingLevel": "high"
|
|
405
472
|
}
|
|
406
|
-
}
|
|
407
|
-
"reasoning": true
|
|
473
|
+
}
|
|
408
474
|
},
|
|
409
475
|
"gemini-3-pro-image-preview": {
|
|
410
476
|
"limit": {
|
|
411
|
-
"context":
|
|
477
|
+
"context": 1000000,
|
|
412
478
|
"output": 65536
|
|
413
479
|
},
|
|
414
|
-
"name": "Gemini 3 Pro Image Preview"
|
|
415
|
-
"modalities": {
|
|
416
|
-
"input": ["text", "image", "pdf"],
|
|
417
|
-
"output": ["text"]
|
|
418
|
-
}
|
|
480
|
+
"name": "Gemini 3 Pro Image Preview"
|
|
419
481
|
},
|
|
420
482
|
"gemini-3-pro-preview": {
|
|
421
483
|
"limit": {
|
|
422
|
-
"context":
|
|
484
|
+
"context": 1000000,
|
|
423
485
|
"output": 65536
|
|
424
486
|
},
|
|
425
|
-
"name": "Gemini 3 Pro Preview",
|
|
426
487
|
"modalities": {
|
|
427
|
-
"input": [
|
|
428
|
-
|
|
488
|
+
"input": [
|
|
489
|
+
"text",
|
|
490
|
+
"image",
|
|
491
|
+
"pdf"
|
|
492
|
+
],
|
|
493
|
+
"output": [
|
|
494
|
+
"text"
|
|
495
|
+
]
|
|
496
|
+
},
|
|
497
|
+
"name": "Gemini 3 Pro Preview",
|
|
498
|
+
"options": {
|
|
499
|
+
"generationConfig": {
|
|
500
|
+
"thinkingConfig": {
|
|
501
|
+
"includeThoughts": true,
|
|
502
|
+
"thinkingLevel": "medium"
|
|
503
|
+
}
|
|
504
|
+
}
|
|
429
505
|
},
|
|
506
|
+
"reasoning": true,
|
|
430
507
|
"variants": {
|
|
508
|
+
"high": {
|
|
509
|
+
"thinkingLevel": "high"
|
|
510
|
+
},
|
|
431
511
|
"low": {
|
|
432
512
|
"thinkingLevel": "low"
|
|
433
513
|
},
|
|
434
|
-
"
|
|
435
|
-
"thinkingLevel": "
|
|
514
|
+
"medium": {
|
|
515
|
+
"thinkingLevel": "medium"
|
|
436
516
|
}
|
|
437
|
-
}
|
|
438
|
-
"reasoning": true
|
|
517
|
+
}
|
|
439
518
|
},
|
|
440
519
|
"gemini-claude-opus-4-5-thinking": {
|
|
441
520
|
"limit": {
|
|
442
|
-
"context":
|
|
521
|
+
"context": 200000,
|
|
443
522
|
"output": 64000
|
|
444
523
|
},
|
|
445
524
|
"modalities": {
|
|
446
|
-
"input": [
|
|
447
|
-
|
|
525
|
+
"input": [
|
|
526
|
+
"text",
|
|
527
|
+
"image",
|
|
528
|
+
"pdf"
|
|
529
|
+
],
|
|
530
|
+
"output": [
|
|
531
|
+
"text"
|
|
532
|
+
]
|
|
448
533
|
},
|
|
449
534
|
"name": "Gemini Claude Opus 4 5 Thinking",
|
|
535
|
+
"options": {
|
|
536
|
+
"thinking": {
|
|
537
|
+
"budgetTokens": 8192,
|
|
538
|
+
"type": "enabled"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"reasoning": true,
|
|
450
542
|
"variants": {
|
|
451
543
|
"low": {
|
|
452
544
|
"thinkingConfig": {
|
|
@@ -458,30 +550,48 @@
|
|
|
458
550
|
"thinkingBudget": 32768
|
|
459
551
|
}
|
|
460
552
|
}
|
|
461
|
-
}
|
|
462
|
-
"reasoning": true
|
|
553
|
+
}
|
|
463
554
|
},
|
|
464
555
|
"gemini-claude-sonnet-4-5": {
|
|
465
556
|
"limit": {
|
|
466
|
-
"context":
|
|
557
|
+
"context": 200000,
|
|
467
558
|
"output": 64000
|
|
468
559
|
},
|
|
469
560
|
"modalities": {
|
|
470
|
-
"input": [
|
|
471
|
-
|
|
561
|
+
"input": [
|
|
562
|
+
"text",
|
|
563
|
+
"image",
|
|
564
|
+
"pdf"
|
|
565
|
+
],
|
|
566
|
+
"output": [
|
|
567
|
+
"text"
|
|
568
|
+
]
|
|
472
569
|
},
|
|
473
570
|
"name": "Gemini Claude Sonnet 4 5"
|
|
474
571
|
},
|
|
475
572
|
"gemini-claude-sonnet-4-5-thinking": {
|
|
476
573
|
"limit": {
|
|
477
|
-
"context":
|
|
574
|
+
"context": 200000,
|
|
478
575
|
"output": 64000
|
|
479
576
|
},
|
|
480
577
|
"modalities": {
|
|
481
|
-
"input": [
|
|
482
|
-
|
|
578
|
+
"input": [
|
|
579
|
+
"text",
|
|
580
|
+
"image",
|
|
581
|
+
"pdf"
|
|
582
|
+
],
|
|
583
|
+
"output": [
|
|
584
|
+
"text"
|
|
585
|
+
]
|
|
483
586
|
},
|
|
484
587
|
"name": "Gemini Claude Sonnet 4 5 Thinking",
|
|
588
|
+
"options": {
|
|
589
|
+
"thinking": {
|
|
590
|
+
"budgetTokens": 8192,
|
|
591
|
+
"type": "enabled"
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"reasoning": true,
|
|
485
595
|
"variants": {
|
|
486
596
|
"low": {
|
|
487
597
|
"thinkingConfig": {
|
|
@@ -493,40 +603,39 @@
|
|
|
493
603
|
"thinkingBudget": 32768
|
|
494
604
|
}
|
|
495
605
|
}
|
|
496
|
-
}
|
|
497
|
-
"reasoning": true
|
|
606
|
+
}
|
|
498
607
|
},
|
|
499
608
|
"glm-4.5": {
|
|
500
609
|
"limit": {
|
|
501
|
-
"context":
|
|
610
|
+
"context": 128000,
|
|
502
611
|
"output": 16384
|
|
503
612
|
},
|
|
504
613
|
"name": "Glm 4 5"
|
|
505
614
|
},
|
|
506
615
|
"glm-4.5-air": {
|
|
507
616
|
"limit": {
|
|
508
|
-
"context":
|
|
617
|
+
"context": 128000,
|
|
509
618
|
"output": 16384
|
|
510
619
|
},
|
|
511
620
|
"name": "Glm 4 5 Air"
|
|
512
621
|
},
|
|
513
622
|
"glm-4.6": {
|
|
514
623
|
"limit": {
|
|
515
|
-
"context":
|
|
624
|
+
"context": 128000,
|
|
516
625
|
"output": 16384
|
|
517
626
|
},
|
|
518
627
|
"name": "Glm 4 6"
|
|
519
628
|
},
|
|
520
629
|
"glm-4.7": {
|
|
521
630
|
"limit": {
|
|
522
|
-
"context":
|
|
631
|
+
"context": 128000,
|
|
523
632
|
"output": 16384
|
|
524
633
|
},
|
|
525
634
|
"name": "Glm 4 7"
|
|
526
635
|
},
|
|
527
636
|
"gpt-5": {
|
|
528
637
|
"limit": {
|
|
529
|
-
"context":
|
|
638
|
+
"context": 400000,
|
|
530
639
|
"output": 32768
|
|
531
640
|
},
|
|
532
641
|
"name": "Gpt 5",
|
|
@@ -537,7 +646,7 @@
|
|
|
537
646
|
},
|
|
538
647
|
"gpt-5-codex": {
|
|
539
648
|
"limit": {
|
|
540
|
-
"context":
|
|
649
|
+
"context": 400000,
|
|
541
650
|
"output": 32768
|
|
542
651
|
},
|
|
543
652
|
"name": "Gpt 5 Codex",
|
|
@@ -548,7 +657,7 @@
|
|
|
548
657
|
},
|
|
549
658
|
"gpt-5-codex-mini": {
|
|
550
659
|
"limit": {
|
|
551
|
-
"context":
|
|
660
|
+
"context": 400000,
|
|
552
661
|
"output": 32768
|
|
553
662
|
},
|
|
554
663
|
"name": "Gpt 5 Codex Mini",
|
|
@@ -559,7 +668,7 @@
|
|
|
559
668
|
},
|
|
560
669
|
"gpt-5.1": {
|
|
561
670
|
"limit": {
|
|
562
|
-
"context":
|
|
671
|
+
"context": 400000,
|
|
563
672
|
"output": 32768
|
|
564
673
|
},
|
|
565
674
|
"name": "Gpt 5 1",
|
|
@@ -570,7 +679,7 @@
|
|
|
570
679
|
},
|
|
571
680
|
"gpt-5.1-codex": {
|
|
572
681
|
"limit": {
|
|
573
|
-
"context":
|
|
682
|
+
"context": 400000,
|
|
574
683
|
"output": 32768
|
|
575
684
|
},
|
|
576
685
|
"name": "Gpt 5 1 Codex",
|
|
@@ -581,7 +690,7 @@
|
|
|
581
690
|
},
|
|
582
691
|
"gpt-5.1-codex-max": {
|
|
583
692
|
"limit": {
|
|
584
|
-
"context":
|
|
693
|
+
"context": 400000,
|
|
585
694
|
"output": 32768
|
|
586
695
|
},
|
|
587
696
|
"name": "Gpt 5 1 Codex Max",
|
|
@@ -592,7 +701,7 @@
|
|
|
592
701
|
},
|
|
593
702
|
"gpt-5.1-codex-mini": {
|
|
594
703
|
"limit": {
|
|
595
|
-
"context":
|
|
704
|
+
"context": 400000,
|
|
596
705
|
"output": 32768
|
|
597
706
|
},
|
|
598
707
|
"name": "Gpt 5 1 Codex Mini",
|
|
@@ -603,7 +712,7 @@
|
|
|
603
712
|
},
|
|
604
713
|
"gpt-5.2": {
|
|
605
714
|
"limit": {
|
|
606
|
-
"context":
|
|
715
|
+
"context": 400000,
|
|
607
716
|
"output": 32768
|
|
608
717
|
},
|
|
609
718
|
"name": "Gpt 5 2",
|
|
@@ -614,7 +723,7 @@
|
|
|
614
723
|
},
|
|
615
724
|
"gpt-5.2-codex": {
|
|
616
725
|
"limit": {
|
|
617
|
-
"context":
|
|
726
|
+
"context": 400000,
|
|
618
727
|
"output": 32768
|
|
619
728
|
},
|
|
620
729
|
"name": "Gpt 5 2 Codex",
|
|
@@ -625,10 +734,80 @@
|
|
|
625
734
|
},
|
|
626
735
|
"gpt-oss-120b-medium": {
|
|
627
736
|
"limit": {
|
|
628
|
-
"context":
|
|
737
|
+
"context": 128000,
|
|
629
738
|
"output": 16384
|
|
630
739
|
},
|
|
631
740
|
"name": "Gpt Oss 120b Medium"
|
|
741
|
+
},
|
|
742
|
+
"kiro-auto": {
|
|
743
|
+
"limit": {
|
|
744
|
+
"context": 128000,
|
|
745
|
+
"output": 16384
|
|
746
|
+
},
|
|
747
|
+
"name": "Kiro Auto"
|
|
748
|
+
},
|
|
749
|
+
"kiro-claude-haiku-4-5": {
|
|
750
|
+
"limit": {
|
|
751
|
+
"context": 200000,
|
|
752
|
+
"output": 64000
|
|
753
|
+
},
|
|
754
|
+
"name": "Kiro Claude Haiku 4 5"
|
|
755
|
+
},
|
|
756
|
+
"kiro-claude-haiku-4-5-agentic": {
|
|
757
|
+
"limit": {
|
|
758
|
+
"context": 200000,
|
|
759
|
+
"output": 64000
|
|
760
|
+
},
|
|
761
|
+
"name": "Kiro Claude Haiku 4 5 Agentic"
|
|
762
|
+
},
|
|
763
|
+
"kiro-claude-opus-4-5": {
|
|
764
|
+
"limit": {
|
|
765
|
+
"context": 200000,
|
|
766
|
+
"output": 64000
|
|
767
|
+
},
|
|
768
|
+
"name": "Kiro Claude Opus 4 5"
|
|
769
|
+
},
|
|
770
|
+
"kiro-claude-opus-4-5-agentic": {
|
|
771
|
+
"limit": {
|
|
772
|
+
"context": 200000,
|
|
773
|
+
"output": 64000
|
|
774
|
+
},
|
|
775
|
+
"name": "Kiro Claude Opus 4 5 Agentic"
|
|
776
|
+
},
|
|
777
|
+
"kiro-claude-sonnet-4": {
|
|
778
|
+
"limit": {
|
|
779
|
+
"context": 200000,
|
|
780
|
+
"output": 64000
|
|
781
|
+
},
|
|
782
|
+
"name": "Kiro Claude Sonnet 4"
|
|
783
|
+
},
|
|
784
|
+
"kiro-claude-sonnet-4-5": {
|
|
785
|
+
"limit": {
|
|
786
|
+
"context": 200000,
|
|
787
|
+
"output": 64000
|
|
788
|
+
},
|
|
789
|
+
"name": "Kiro Claude Sonnet 4 5"
|
|
790
|
+
},
|
|
791
|
+
"kiro-claude-sonnet-4-5-agentic": {
|
|
792
|
+
"limit": {
|
|
793
|
+
"context": 200000,
|
|
794
|
+
"output": 64000
|
|
795
|
+
},
|
|
796
|
+
"name": "Kiro Claude Sonnet 4 5 Agentic"
|
|
797
|
+
},
|
|
798
|
+
"kiro-claude-sonnet-4-agentic": {
|
|
799
|
+
"limit": {
|
|
800
|
+
"context": 200000,
|
|
801
|
+
"output": 64000
|
|
802
|
+
},
|
|
803
|
+
"name": "Kiro Claude Sonnet 4 Agentic"
|
|
804
|
+
},
|
|
805
|
+
"tab_flash_lite_preview": {
|
|
806
|
+
"limit": {
|
|
807
|
+
"context": 128000,
|
|
808
|
+
"output": 16384
|
|
809
|
+
},
|
|
810
|
+
"name": "Tab_flash_lite_preview"
|
|
632
811
|
}
|
|
633
812
|
},
|
|
634
813
|
"name": "ProxyPal",
|
|
@@ -678,6 +857,12 @@
|
|
|
678
857
|
},
|
|
679
858
|
"share": "manual",
|
|
680
859
|
"small_model": "opencode/gpt-5-nano",
|
|
860
|
+
"tools": {
|
|
861
|
+
"context7-query-docs": true,
|
|
862
|
+
"context7-resolve-library-id": true,
|
|
863
|
+
"grep-search": true,
|
|
864
|
+
"oracle": true
|
|
865
|
+
},
|
|
681
866
|
"tui": {
|
|
682
867
|
"diff_style": "auto",
|
|
683
868
|
"scroll_acceleration": {
|
|
@@ -695,4 +880,4 @@
|
|
|
695
880
|
".DS_Store"
|
|
696
881
|
]
|
|
697
882
|
}
|
|
698
|
-
}
|
|
883
|
+
}
|