opencodekit 0.20.7 → 0.21.0
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 +1 -1
- package/dist/template/.opencode/AGENTS.md +60 -0
- package/dist/template/.opencode/agent/build.md +3 -2
- package/dist/template/.opencode/agent/explore.md +14 -14
- package/dist/template/.opencode/agent/general.md +1 -1
- package/dist/template/.opencode/agent/plan.md +1 -1
- package/dist/template/.opencode/agent/review.md +1 -1
- package/dist/template/.opencode/agent/vision.md +0 -9
- package/dist/template/.opencode/memory.db +0 -0
- package/dist/template/.opencode/memory.db-shm +0 -0
- package/dist/template/.opencode/memory.db-wal +0 -0
- package/dist/template/.opencode/opencode.json +83 -614
- package/dist/template/.opencode/opencodex-fast.jsonc +1 -1
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugin/copilot-auth.ts +27 -12
- package/dist/template/.opencode/plugin/prompt-leverage.ts +193 -0
- package/dist/template/.opencode/plugin/prompt-leverage.ts.bak +228 -0
- package/dist/template/.opencode/plugin/sdk/copilot/copilot-provider.ts +14 -2
- package/dist/template/.opencode/plugin/sdk/copilot/index.ts +2 -2
- package/dist/template/.opencode/plugin/sdk/copilot/responses/convert-to-openai-responses-input.ts +335 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/map-openai-responses-finish-reason.ts +22 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-config.ts +18 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-error.ts +22 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-api-types.ts +214 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-language-model.ts +1770 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-prepare-tools.ts +173 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/openai-responses-settings.ts +1 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/code-interpreter.ts +87 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/file-search.ts +127 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/image-generation.ts +114 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/local-shell.ts +64 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search-preview.ts +103 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search.ts +102 -0
- package/dist/template/.opencode/pnpm-lock.yaml +791 -9
- package/dist/template/.opencode/skill/api-and-interface-design/SKILL.md +162 -0
- package/dist/template/.opencode/skill/beads/SKILL.md +10 -9
- package/dist/template/.opencode/skill/beads/references/MULTI_AGENT.md +10 -10
- package/dist/template/.opencode/skill/ci-cd-and-automation/SKILL.md +202 -0
- package/dist/template/.opencode/skill/code-search-patterns/SKILL.md +253 -0
- package/dist/template/.opencode/skill/code-simplification/SKILL.md +211 -0
- package/dist/template/.opencode/skill/condition-based-waiting/SKILL.md +12 -0
- package/dist/template/.opencode/skill/defense-in-depth/SKILL.md +16 -6
- package/dist/template/.opencode/skill/deprecation-and-migration/SKILL.md +189 -0
- package/dist/template/.opencode/skill/development-lifecycle/SKILL.md +12 -48
- package/dist/template/.opencode/skill/documentation-and-adrs/SKILL.md +220 -0
- package/dist/template/.opencode/skill/gh-address-comments/SKILL.md +29 -0
- package/dist/template/.opencode/skill/gh-address-comments/scripts/fetch_comments.py +237 -0
- package/dist/template/.opencode/skill/gh-fix-ci/SKILL.md +38 -0
- package/dist/template/.opencode/skill/gh-fix-ci/scripts/inspect_pr_checks.py +509 -0
- package/dist/template/.opencode/skill/incremental-implementation/SKILL.md +191 -0
- package/dist/template/.opencode/skill/performance-optimization/SKILL.md +236 -0
- package/dist/template/.opencode/skill/prompt-leverage/SKILL.md +90 -0
- package/dist/template/.opencode/skill/prompt-leverage/references/framework.md +91 -0
- package/dist/template/.opencode/skill/prompt-leverage/scripts/augment_prompt.py +157 -0
- package/dist/template/.opencode/skill/receiving-code-review/SKILL.md +11 -0
- package/dist/template/.opencode/skill/screenshot/SKILL.md +48 -0
- package/dist/template/.opencode/skill/screenshot/scripts/ensure_macos_permissions.sh +54 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_display_info.swift +22 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_permissions.swift +40 -0
- package/dist/template/.opencode/skill/screenshot/scripts/macos_window_info.swift +126 -0
- package/dist/template/.opencode/skill/screenshot/scripts/take_screenshot.ps1 +163 -0
- package/dist/template/.opencode/skill/screenshot/scripts/take_screenshot.py +585 -0
- package/dist/template/.opencode/skill/security-and-hardening/SKILL.md +296 -0
- package/dist/template/.opencode/skill/security-threat-model/SKILL.md +36 -0
- package/dist/template/.opencode/skill/security-threat-model/references/prompt-template.md +255 -0
- package/dist/template/.opencode/skill/security-threat-model/references/security-controls-and-assets.md +32 -0
- package/dist/template/.opencode/skill/skill-installer/SKILL.md +58 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/github_utils.py +21 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/install-skill-from-github.py +313 -0
- package/dist/template/.opencode/skill/skill-installer/scripts/list-skills.py +106 -0
- package/dist/template/.opencode/skill/structured-edit/SKILL.md +10 -0
- package/dist/template/.opencode/skill/swarm-coordination/SKILL.md +66 -1
- package/package.json +1 -1
- package/dist/template/.opencode/skill/beads-bridge/SKILL.md +0 -321
- package/dist/template/.opencode/skill/code-navigation/SKILL.md +0 -130
- package/dist/template/.opencode/skill/mqdh/SKILL.md +0 -171
- package/dist/template/.opencode/skill/obsidian/SKILL.md +0 -192
- package/dist/template/.opencode/skill/obsidian/mcp.json +0 -22
- package/dist/template/.opencode/skill/pencil/SKILL.md +0 -72
- package/dist/template/.opencode/skill/ralph/SKILL.md +0 -296
- package/dist/template/.opencode/skill/tilth-cli/SKILL.md +0 -207
- package/dist/template/.opencode/skill/tool-priority/SKILL.md +0 -299
|
@@ -38,6 +38,10 @@
|
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
40
|
"autoupdate": false,
|
|
41
|
+
"compaction": {
|
|
42
|
+
"auto": false,
|
|
43
|
+
"reserved": 16000
|
|
44
|
+
},
|
|
41
45
|
"formatter": {
|
|
42
46
|
"biome": {
|
|
43
47
|
"command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
|
|
@@ -89,6 +93,12 @@
|
|
|
89
93
|
"session_parent": "up"
|
|
90
94
|
},
|
|
91
95
|
"mcp": {
|
|
96
|
+
"figma-mcp-go": {
|
|
97
|
+
"command": ["npx", "-y", "@vkhanhqui/figma-mcp-go@latest"],
|
|
98
|
+
"enabled": false,
|
|
99
|
+
"timeout": 120000,
|
|
100
|
+
"type": "local"
|
|
101
|
+
},
|
|
92
102
|
"tilth": {
|
|
93
103
|
"command": ["npx", "-y", "tilth", "--mcp", "--edit"],
|
|
94
104
|
"enabled": true,
|
|
@@ -98,22 +108,11 @@
|
|
|
98
108
|
"timeout": 120000,
|
|
99
109
|
"type": "local"
|
|
100
110
|
},
|
|
101
|
-
"figma-mcp-go": {
|
|
102
|
-
"command": ["npx", "-y", "@vkhanhqui/figma-mcp-go@latest"],
|
|
103
|
-
"enabled": false,
|
|
104
|
-
"timeout": 120000,
|
|
105
|
-
"type": "local"
|
|
106
|
-
},
|
|
107
111
|
"webclaw": {
|
|
108
112
|
"command": ["webclaw-mcp"],
|
|
109
113
|
"enabled": true,
|
|
110
114
|
"timeout": 120000,
|
|
111
115
|
"type": "local"
|
|
112
|
-
},
|
|
113
|
-
"pencil": {
|
|
114
|
-
"command": ["openpencil-mcp"],
|
|
115
|
-
"enabled": false,
|
|
116
|
-
"type": "local"
|
|
117
116
|
}
|
|
118
117
|
},
|
|
119
118
|
"model": "opencode/minimax-m2.5-free",
|
|
@@ -181,6 +180,11 @@
|
|
|
181
180
|
"temperature": true,
|
|
182
181
|
"tool_call": true,
|
|
183
182
|
"variants": {
|
|
183
|
+
"high": {
|
|
184
|
+
"options": {
|
|
185
|
+
"reasoningEffort": "high"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
184
188
|
"low": {
|
|
185
189
|
"options": {
|
|
186
190
|
"reasoningEffort": "low"
|
|
@@ -190,11 +194,6 @@
|
|
|
190
194
|
"options": {
|
|
191
195
|
"reasoningEffort": "medium"
|
|
192
196
|
}
|
|
193
|
-
},
|
|
194
|
-
"high": {
|
|
195
|
-
"options": {
|
|
196
|
-
"reasoningEffort": "high"
|
|
197
|
-
}
|
|
198
197
|
}
|
|
199
198
|
}
|
|
200
199
|
},
|
|
@@ -211,6 +210,11 @@
|
|
|
211
210
|
"temperature": true,
|
|
212
211
|
"tool_call": true,
|
|
213
212
|
"variants": {
|
|
213
|
+
"high": {
|
|
214
|
+
"options": {
|
|
215
|
+
"reasoningEffort": "high"
|
|
216
|
+
}
|
|
217
|
+
},
|
|
214
218
|
"low": {
|
|
215
219
|
"options": {
|
|
216
220
|
"reasoningEffort": "low"
|
|
@@ -220,11 +224,6 @@
|
|
|
220
224
|
"options": {
|
|
221
225
|
"reasoningEffort": "medium"
|
|
222
226
|
}
|
|
223
|
-
},
|
|
224
|
-
"high": {
|
|
225
|
-
"options": {
|
|
226
|
-
"reasoningEffort": "high"
|
|
227
|
-
}
|
|
228
227
|
}
|
|
229
228
|
}
|
|
230
229
|
},
|
|
@@ -241,6 +240,11 @@
|
|
|
241
240
|
"temperature": true,
|
|
242
241
|
"tool_call": true,
|
|
243
242
|
"variants": {
|
|
243
|
+
"high": {
|
|
244
|
+
"options": {
|
|
245
|
+
"reasoningEffort": "high"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
244
248
|
"low": {
|
|
245
249
|
"options": {
|
|
246
250
|
"reasoningEffort": "low"
|
|
@@ -250,11 +254,6 @@
|
|
|
250
254
|
"options": {
|
|
251
255
|
"reasoningEffort": "medium"
|
|
252
256
|
}
|
|
253
|
-
},
|
|
254
|
-
"high": {
|
|
255
|
-
"options": {
|
|
256
|
-
"reasoningEffort": "high"
|
|
257
|
-
}
|
|
258
257
|
}
|
|
259
258
|
}
|
|
260
259
|
},
|
|
@@ -271,6 +270,11 @@
|
|
|
271
270
|
"temperature": true,
|
|
272
271
|
"tool_call": true,
|
|
273
272
|
"variants": {
|
|
273
|
+
"high": {
|
|
274
|
+
"options": {
|
|
275
|
+
"reasoningEffort": "high"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
274
278
|
"low": {
|
|
275
279
|
"options": {
|
|
276
280
|
"reasoningEffort": "low"
|
|
@@ -280,11 +284,6 @@
|
|
|
280
284
|
"options": {
|
|
281
285
|
"reasoningEffort": "medium"
|
|
282
286
|
}
|
|
283
|
-
},
|
|
284
|
-
"high": {
|
|
285
|
-
"options": {
|
|
286
|
-
"reasoningEffort": "high"
|
|
287
|
-
}
|
|
288
287
|
}
|
|
289
288
|
}
|
|
290
289
|
},
|
|
@@ -301,6 +300,11 @@
|
|
|
301
300
|
"temperature": true,
|
|
302
301
|
"tool_call": true,
|
|
303
302
|
"variants": {
|
|
303
|
+
"high": {
|
|
304
|
+
"options": {
|
|
305
|
+
"reasoningEffort": "high"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
304
308
|
"low": {
|
|
305
309
|
"options": {
|
|
306
310
|
"reasoningEffort": "low"
|
|
@@ -310,11 +314,6 @@
|
|
|
310
314
|
"options": {
|
|
311
315
|
"reasoningEffort": "medium"
|
|
312
316
|
}
|
|
313
|
-
},
|
|
314
|
-
"high": {
|
|
315
|
-
"options": {
|
|
316
|
-
"reasoningEffort": "high"
|
|
317
|
-
}
|
|
318
317
|
}
|
|
319
318
|
}
|
|
320
319
|
},
|
|
@@ -331,6 +330,11 @@
|
|
|
331
330
|
"temperature": true,
|
|
332
331
|
"tool_call": true,
|
|
333
332
|
"variants": {
|
|
333
|
+
"high": {
|
|
334
|
+
"options": {
|
|
335
|
+
"reasoningEffort": "high"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
334
338
|
"low": {
|
|
335
339
|
"options": {
|
|
336
340
|
"reasoningEffort": "low"
|
|
@@ -340,11 +344,6 @@
|
|
|
340
344
|
"options": {
|
|
341
345
|
"reasoningEffort": "medium"
|
|
342
346
|
}
|
|
343
|
-
},
|
|
344
|
-
"high": {
|
|
345
|
-
"options": {
|
|
346
|
-
"reasoningEffort": "high"
|
|
347
|
-
}
|
|
348
347
|
}
|
|
349
348
|
}
|
|
350
349
|
},
|
|
@@ -406,8 +405,8 @@
|
|
|
406
405
|
"attachment": true,
|
|
407
406
|
"limit": {
|
|
408
407
|
"context": 256000,
|
|
409
|
-
"
|
|
410
|
-
"
|
|
408
|
+
"input": 256000,
|
|
409
|
+
"output": 128000
|
|
411
410
|
},
|
|
412
411
|
"options": {
|
|
413
412
|
"reasoningEffort": "medium",
|
|
@@ -421,8 +420,8 @@
|
|
|
421
420
|
"attachment": true,
|
|
422
421
|
"limit": {
|
|
423
422
|
"context": 256000,
|
|
424
|
-
"
|
|
425
|
-
"
|
|
423
|
+
"input": 256000,
|
|
424
|
+
"output": 128000
|
|
426
425
|
},
|
|
427
426
|
"options": {
|
|
428
427
|
"reasoningEffort": "medium",
|
|
@@ -436,8 +435,8 @@
|
|
|
436
435
|
"attachment": true,
|
|
437
436
|
"limit": {
|
|
438
437
|
"context": 256000,
|
|
439
|
-
"
|
|
440
|
-
"
|
|
438
|
+
"input": 256000,
|
|
439
|
+
"output": 128000
|
|
441
440
|
},
|
|
442
441
|
"options": {
|
|
443
442
|
"reasoningEffort": "medium",
|
|
@@ -481,8 +480,8 @@
|
|
|
481
480
|
"attachment": true,
|
|
482
481
|
"limit": {
|
|
483
482
|
"context": 400000,
|
|
484
|
-
"
|
|
485
|
-
"
|
|
483
|
+
"input": 400000,
|
|
484
|
+
"output": 128000
|
|
486
485
|
},
|
|
487
486
|
"options": {
|
|
488
487
|
"reasoningEffort": "medium",
|
|
@@ -517,8 +516,8 @@
|
|
|
517
516
|
"attachment": true,
|
|
518
517
|
"limit": {
|
|
519
518
|
"context": 400000,
|
|
520
|
-
"
|
|
521
|
-
"
|
|
519
|
+
"input": 400000,
|
|
520
|
+
"output": 128000
|
|
522
521
|
},
|
|
523
522
|
"name": "Gpt 5 3 Codex",
|
|
524
523
|
"options": {
|
|
@@ -554,8 +553,8 @@
|
|
|
554
553
|
"attachment": true,
|
|
555
554
|
"limit": {
|
|
556
555
|
"context": 400000,
|
|
557
|
-
"
|
|
558
|
-
"
|
|
556
|
+
"input": 400000,
|
|
557
|
+
"output": 128000
|
|
559
558
|
},
|
|
560
559
|
"modalities": {
|
|
561
560
|
"input": ["text", "image"],
|
|
@@ -604,6 +603,21 @@
|
|
|
604
603
|
"reasoning": true,
|
|
605
604
|
"temperature": true,
|
|
606
605
|
"tool_call": true
|
|
606
|
+
},
|
|
607
|
+
"minimax-m2.5": {
|
|
608
|
+
"attachment": true,
|
|
609
|
+
"limit": {
|
|
610
|
+
"context": 204800,
|
|
611
|
+
"output": 16384
|
|
612
|
+
},
|
|
613
|
+
"options": {
|
|
614
|
+
"temperature": 1,
|
|
615
|
+
"top_k": 40,
|
|
616
|
+
"top_p": 0.95
|
|
617
|
+
},
|
|
618
|
+
"reasoning": true,
|
|
619
|
+
"temperature": true,
|
|
620
|
+
"tool_call": true
|
|
607
621
|
}
|
|
608
622
|
},
|
|
609
623
|
"options": {
|
|
@@ -805,58 +819,6 @@
|
|
|
805
819
|
},
|
|
806
820
|
"proxypal": {
|
|
807
821
|
"models": {
|
|
808
|
-
"claude-haiku-4-5": {
|
|
809
|
-
"limit": {
|
|
810
|
-
"context": 200000,
|
|
811
|
-
"output": 64000
|
|
812
|
-
},
|
|
813
|
-
"modalities": {
|
|
814
|
-
"input": ["text", "image", "pdf"],
|
|
815
|
-
"output": ["text"]
|
|
816
|
-
},
|
|
817
|
-
"name": "Claude Haiku 4 5"
|
|
818
|
-
},
|
|
819
|
-
"claude-haiku-4-5-20251001": {
|
|
820
|
-
"limit": {
|
|
821
|
-
"context": 200000,
|
|
822
|
-
"output": 64000
|
|
823
|
-
},
|
|
824
|
-
"modalities": {
|
|
825
|
-
"input": ["text", "image", "pdf"],
|
|
826
|
-
"output": ["text"]
|
|
827
|
-
},
|
|
828
|
-
"name": "Claude Haiku 4 5 20251001"
|
|
829
|
-
},
|
|
830
|
-
"claude-opus-4-6-thinking": {
|
|
831
|
-
"limit": {
|
|
832
|
-
"context": 200000,
|
|
833
|
-
"output": 64000
|
|
834
|
-
},
|
|
835
|
-
"modalities": {
|
|
836
|
-
"input": ["text", "image", "pdf"],
|
|
837
|
-
"output": ["text"]
|
|
838
|
-
},
|
|
839
|
-
"name": "Claude Opus 4 6 Thinking",
|
|
840
|
-
"options": {
|
|
841
|
-
"thinking": {
|
|
842
|
-
"budgetTokens": 8192,
|
|
843
|
-
"type": "enabled"
|
|
844
|
-
}
|
|
845
|
-
},
|
|
846
|
-
"reasoning": true,
|
|
847
|
-
"variants": {
|
|
848
|
-
"low": {
|
|
849
|
-
"thinkingConfig": {
|
|
850
|
-
"thinkingBudget": 8192
|
|
851
|
-
}
|
|
852
|
-
},
|
|
853
|
-
"max": {
|
|
854
|
-
"thinkingConfig": {
|
|
855
|
-
"thinkingBudget": 32768
|
|
856
|
-
}
|
|
857
|
-
}
|
|
858
|
-
}
|
|
859
|
-
},
|
|
860
822
|
"claude-opus-4.6": {
|
|
861
823
|
"limit": {
|
|
862
824
|
"context": 200000,
|
|
@@ -868,379 +830,12 @@
|
|
|
868
830
|
},
|
|
869
831
|
"name": "Claude Opus 4 6"
|
|
870
832
|
},
|
|
871
|
-
"
|
|
872
|
-
"limit": {
|
|
873
|
-
"context": 200000,
|
|
874
|
-
"output": 64000
|
|
875
|
-
},
|
|
876
|
-
"modalities": {
|
|
877
|
-
"input": ["text", "image", "pdf"],
|
|
878
|
-
"output": ["text"]
|
|
879
|
-
},
|
|
880
|
-
"name": "Claude Sonnet 4"
|
|
881
|
-
},
|
|
882
|
-
"claude-sonnet-4-20250514": {
|
|
883
|
-
"limit": {
|
|
884
|
-
"context": 200000,
|
|
885
|
-
"output": 64000
|
|
886
|
-
},
|
|
887
|
-
"modalities": {
|
|
888
|
-
"input": ["text", "image", "pdf"],
|
|
889
|
-
"output": ["text"]
|
|
890
|
-
},
|
|
891
|
-
"name": "Claude Sonnet 4 20250514"
|
|
892
|
-
},
|
|
893
|
-
"claude-sonnet-4-5": {
|
|
894
|
-
"limit": {
|
|
895
|
-
"context": 200000,
|
|
896
|
-
"output": 64000
|
|
897
|
-
},
|
|
898
|
-
"modalities": {
|
|
899
|
-
"input": ["text", "image", "pdf"],
|
|
900
|
-
"output": ["text"]
|
|
901
|
-
},
|
|
902
|
-
"name": "Claude Sonnet 4 5"
|
|
903
|
-
},
|
|
904
|
-
"claude-sonnet-4-5-20250929": {
|
|
905
|
-
"limit": {
|
|
906
|
-
"context": 200000,
|
|
907
|
-
"output": 64000
|
|
908
|
-
},
|
|
909
|
-
"modalities": {
|
|
910
|
-
"input": ["text", "image", "pdf"],
|
|
911
|
-
"output": ["text"]
|
|
912
|
-
},
|
|
913
|
-
"name": "Claude Sonnet 4 5 20250929"
|
|
914
|
-
},
|
|
915
|
-
"claude-sonnet-4-6": {
|
|
916
|
-
"limit": {
|
|
917
|
-
"context": 200000,
|
|
918
|
-
"output": 64000
|
|
919
|
-
},
|
|
920
|
-
"modalities": {
|
|
921
|
-
"input": ["text", "image", "pdf"],
|
|
922
|
-
"output": ["text"]
|
|
923
|
-
},
|
|
924
|
-
"name": "Claude Sonnet 4 6"
|
|
925
|
-
},
|
|
926
|
-
"gemini-2.5-flash": {
|
|
927
|
-
"limit": {
|
|
928
|
-
"context": 1000000,
|
|
929
|
-
"output": 65536
|
|
930
|
-
},
|
|
931
|
-
"modalities": {
|
|
932
|
-
"input": ["text", "image", "pdf"],
|
|
933
|
-
"output": ["text"]
|
|
934
|
-
},
|
|
935
|
-
"name": "Gemini 2 5 Flash"
|
|
936
|
-
},
|
|
937
|
-
"gemini-2.5-flash-lite": {
|
|
938
|
-
"limit": {
|
|
939
|
-
"context": 1000000,
|
|
940
|
-
"output": 65536
|
|
941
|
-
},
|
|
942
|
-
"modalities": {
|
|
943
|
-
"input": ["text", "image", "pdf"],
|
|
944
|
-
"output": ["text"]
|
|
945
|
-
},
|
|
946
|
-
"name": "Gemini 2 5 Flash Lite"
|
|
947
|
-
},
|
|
948
|
-
"gemini-2.5-pro": {
|
|
949
|
-
"limit": {
|
|
950
|
-
"context": 1000000,
|
|
951
|
-
"output": 65536
|
|
952
|
-
},
|
|
953
|
-
"modalities": {
|
|
954
|
-
"input": ["text", "image", "pdf"],
|
|
955
|
-
"output": ["text"]
|
|
956
|
-
},
|
|
957
|
-
"name": "Gemini 2 5 Pro"
|
|
958
|
-
},
|
|
959
|
-
"gemini-3-flash": {
|
|
960
|
-
"limit": {
|
|
961
|
-
"context": 1000000,
|
|
962
|
-
"output": 65536
|
|
963
|
-
},
|
|
964
|
-
"modalities": {
|
|
965
|
-
"input": ["text", "image", "pdf"],
|
|
966
|
-
"output": ["text"]
|
|
967
|
-
},
|
|
968
|
-
"name": "Gemini 3 Flash",
|
|
969
|
-
"options": {
|
|
970
|
-
"generationConfig": {
|
|
971
|
-
"thinkingConfig": {
|
|
972
|
-
"includeThoughts": true,
|
|
973
|
-
"thinkingLevel": "medium"
|
|
974
|
-
}
|
|
975
|
-
}
|
|
976
|
-
},
|
|
977
|
-
"reasoning": true,
|
|
978
|
-
"variants": {
|
|
979
|
-
"high": {
|
|
980
|
-
"thinkingLevel": "high"
|
|
981
|
-
},
|
|
982
|
-
"low": {
|
|
983
|
-
"thinkingLevel": "low"
|
|
984
|
-
},
|
|
985
|
-
"medium": {
|
|
986
|
-
"thinkingLevel": "medium"
|
|
987
|
-
}
|
|
988
|
-
}
|
|
989
|
-
},
|
|
990
|
-
"gemini-3-flash-preview": {
|
|
991
|
-
"limit": {
|
|
992
|
-
"context": 1000000,
|
|
993
|
-
"output": 65536
|
|
994
|
-
},
|
|
995
|
-
"modalities": {
|
|
996
|
-
"input": ["text", "image", "pdf"],
|
|
997
|
-
"output": ["text"]
|
|
998
|
-
},
|
|
999
|
-
"name": "Gemini 3 Flash Preview",
|
|
1000
|
-
"options": {
|
|
1001
|
-
"generationConfig": {
|
|
1002
|
-
"thinkingConfig": {
|
|
1003
|
-
"includeThoughts": true,
|
|
1004
|
-
"thinkingLevel": "medium"
|
|
1005
|
-
}
|
|
1006
|
-
}
|
|
1007
|
-
},
|
|
1008
|
-
"reasoning": true,
|
|
1009
|
-
"variants": {
|
|
1010
|
-
"high": {
|
|
1011
|
-
"thinkingLevel": "high"
|
|
1012
|
-
},
|
|
1013
|
-
"low": {
|
|
1014
|
-
"thinkingLevel": "low"
|
|
1015
|
-
},
|
|
1016
|
-
"medium": {
|
|
1017
|
-
"thinkingLevel": "medium"
|
|
1018
|
-
}
|
|
1019
|
-
}
|
|
1020
|
-
},
|
|
1021
|
-
"gemini-3-pro-high": {
|
|
1022
|
-
"limit": {
|
|
1023
|
-
"context": 1000000,
|
|
1024
|
-
"output": 65536
|
|
1025
|
-
},
|
|
1026
|
-
"modalities": {
|
|
1027
|
-
"input": ["text", "image", "pdf"],
|
|
1028
|
-
"output": ["text"]
|
|
1029
|
-
},
|
|
1030
|
-
"name": "Gemini 3 Pro High",
|
|
1031
|
-
"options": {
|
|
1032
|
-
"generationConfig": {
|
|
1033
|
-
"thinkingConfig": {
|
|
1034
|
-
"includeThoughts": true,
|
|
1035
|
-
"thinkingLevel": "medium"
|
|
1036
|
-
}
|
|
1037
|
-
}
|
|
1038
|
-
},
|
|
1039
|
-
"reasoning": true,
|
|
1040
|
-
"variants": {
|
|
1041
|
-
"high": {
|
|
1042
|
-
"thinkingLevel": "high"
|
|
1043
|
-
},
|
|
1044
|
-
"low": {
|
|
1045
|
-
"thinkingLevel": "low"
|
|
1046
|
-
},
|
|
1047
|
-
"medium": {
|
|
1048
|
-
"thinkingLevel": "medium"
|
|
1049
|
-
}
|
|
1050
|
-
}
|
|
1051
|
-
},
|
|
1052
|
-
"gemini-3-pro-low": {
|
|
1053
|
-
"limit": {
|
|
1054
|
-
"context": 1000000,
|
|
1055
|
-
"output": 65536
|
|
1056
|
-
},
|
|
1057
|
-
"modalities": {
|
|
1058
|
-
"input": ["text", "image", "pdf"],
|
|
1059
|
-
"output": ["text"]
|
|
1060
|
-
},
|
|
1061
|
-
"name": "Gemini 3 Pro Low",
|
|
1062
|
-
"options": {
|
|
1063
|
-
"generationConfig": {
|
|
1064
|
-
"thinkingConfig": {
|
|
1065
|
-
"includeThoughts": true,
|
|
1066
|
-
"thinkingLevel": "medium"
|
|
1067
|
-
}
|
|
1068
|
-
}
|
|
1069
|
-
},
|
|
1070
|
-
"reasoning": true,
|
|
1071
|
-
"variants": {
|
|
1072
|
-
"high": {
|
|
1073
|
-
"thinkingLevel": "high"
|
|
1074
|
-
},
|
|
1075
|
-
"low": {
|
|
1076
|
-
"thinkingLevel": "low"
|
|
1077
|
-
},
|
|
1078
|
-
"medium": {
|
|
1079
|
-
"thinkingLevel": "medium"
|
|
1080
|
-
}
|
|
1081
|
-
}
|
|
1082
|
-
},
|
|
1083
|
-
"gemini-3-pro-preview": {
|
|
1084
|
-
"limit": {
|
|
1085
|
-
"context": 1000000,
|
|
1086
|
-
"output": 65536
|
|
1087
|
-
},
|
|
1088
|
-
"modalities": {
|
|
1089
|
-
"input": ["text", "image", "pdf"],
|
|
1090
|
-
"output": ["text"]
|
|
1091
|
-
},
|
|
1092
|
-
"name": "Gemini 3 Pro Preview",
|
|
1093
|
-
"options": {
|
|
1094
|
-
"generationConfig": {
|
|
1095
|
-
"thinkingConfig": {
|
|
1096
|
-
"includeThoughts": true,
|
|
1097
|
-
"thinkingLevel": "medium"
|
|
1098
|
-
}
|
|
1099
|
-
}
|
|
1100
|
-
},
|
|
1101
|
-
"reasoning": true,
|
|
1102
|
-
"variants": {
|
|
1103
|
-
"high": {
|
|
1104
|
-
"thinkingLevel": "high"
|
|
1105
|
-
},
|
|
1106
|
-
"low": {
|
|
1107
|
-
"thinkingLevel": "low"
|
|
1108
|
-
},
|
|
1109
|
-
"medium": {
|
|
1110
|
-
"thinkingLevel": "medium"
|
|
1111
|
-
}
|
|
1112
|
-
}
|
|
1113
|
-
},
|
|
1114
|
-
"gemini-3.1-flash-image": {
|
|
1115
|
-
"limit": {
|
|
1116
|
-
"context": 1000000,
|
|
1117
|
-
"output": 65536
|
|
1118
|
-
},
|
|
1119
|
-
"name": "Gemini 3 1 Flash Image"
|
|
1120
|
-
},
|
|
1121
|
-
"gemini-3.1-flash-lite-preview": {
|
|
1122
|
-
"limit": {
|
|
1123
|
-
"context": 1000000,
|
|
1124
|
-
"output": 65536
|
|
1125
|
-
},
|
|
1126
|
-
"modalities": {
|
|
1127
|
-
"input": ["text", "image", "pdf"],
|
|
1128
|
-
"output": ["text"]
|
|
1129
|
-
},
|
|
1130
|
-
"name": "Gemini 3 1 Flash Lite Preview",
|
|
1131
|
-
"options": {
|
|
1132
|
-
"generationConfig": {
|
|
1133
|
-
"thinkingConfig": {
|
|
1134
|
-
"includeThoughts": true,
|
|
1135
|
-
"thinkingLevel": "medium"
|
|
1136
|
-
}
|
|
1137
|
-
}
|
|
1138
|
-
},
|
|
1139
|
-
"reasoning": true,
|
|
1140
|
-
"variants": {
|
|
1141
|
-
"high": {
|
|
1142
|
-
"thinkingLevel": "high"
|
|
1143
|
-
},
|
|
1144
|
-
"low": {
|
|
1145
|
-
"thinkingLevel": "low"
|
|
1146
|
-
},
|
|
1147
|
-
"medium": {
|
|
1148
|
-
"thinkingLevel": "medium"
|
|
1149
|
-
}
|
|
1150
|
-
}
|
|
1151
|
-
},
|
|
1152
|
-
"gemini-3.1-pro-high": {
|
|
1153
|
-
"limit": {
|
|
1154
|
-
"context": 1000000,
|
|
1155
|
-
"output": 65536
|
|
1156
|
-
},
|
|
1157
|
-
"modalities": {
|
|
1158
|
-
"input": ["text", "image", "pdf"],
|
|
1159
|
-
"output": ["text"]
|
|
1160
|
-
},
|
|
1161
|
-
"name": "Gemini 3 1 Pro High",
|
|
1162
|
-
"options": {
|
|
1163
|
-
"generationConfig": {
|
|
1164
|
-
"thinkingConfig": {
|
|
1165
|
-
"includeThoughts": true,
|
|
1166
|
-
"thinkingLevel": "medium"
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
},
|
|
1170
|
-
"reasoning": true,
|
|
1171
|
-
"variants": {
|
|
1172
|
-
"high": {
|
|
1173
|
-
"thinkingLevel": "high"
|
|
1174
|
-
},
|
|
1175
|
-
"low": {
|
|
1176
|
-
"thinkingLevel": "low"
|
|
1177
|
-
},
|
|
1178
|
-
"medium": {
|
|
1179
|
-
"thinkingLevel": "medium"
|
|
1180
|
-
}
|
|
1181
|
-
}
|
|
1182
|
-
},
|
|
1183
|
-
"gemini-3.1-pro-low": {
|
|
1184
|
-
"limit": {
|
|
1185
|
-
"context": 1000000,
|
|
1186
|
-
"output": 65536
|
|
1187
|
-
},
|
|
1188
|
-
"modalities": {
|
|
1189
|
-
"input": ["text", "image", "pdf"],
|
|
1190
|
-
"output": ["text"]
|
|
1191
|
-
},
|
|
1192
|
-
"name": "Gemini 3 1 Pro Low",
|
|
1193
|
-
"options": {
|
|
1194
|
-
"generationConfig": {
|
|
1195
|
-
"thinkingConfig": {
|
|
1196
|
-
"includeThoughts": true,
|
|
1197
|
-
"thinkingLevel": "medium"
|
|
1198
|
-
}
|
|
1199
|
-
}
|
|
1200
|
-
},
|
|
1201
|
-
"reasoning": true,
|
|
1202
|
-
"variants": {
|
|
1203
|
-
"high": {
|
|
1204
|
-
"thinkingLevel": "high"
|
|
1205
|
-
},
|
|
1206
|
-
"low": {
|
|
1207
|
-
"thinkingLevel": "low"
|
|
1208
|
-
},
|
|
1209
|
-
"medium": {
|
|
1210
|
-
"thinkingLevel": "medium"
|
|
1211
|
-
}
|
|
1212
|
-
}
|
|
1213
|
-
},
|
|
1214
|
-
"gemini-3.1-pro-preview": {
|
|
833
|
+
"coder-model": {
|
|
1215
834
|
"limit": {
|
|
1216
|
-
"context":
|
|
835
|
+
"context": 262144,
|
|
1217
836
|
"output": 65536
|
|
1218
837
|
},
|
|
1219
|
-
"
|
|
1220
|
-
"input": ["text", "image", "pdf"],
|
|
1221
|
-
"output": ["text"]
|
|
1222
|
-
},
|
|
1223
|
-
"name": "Gemini 3 1 Pro Preview",
|
|
1224
|
-
"options": {
|
|
1225
|
-
"generationConfig": {
|
|
1226
|
-
"thinkingConfig": {
|
|
1227
|
-
"includeThoughts": true,
|
|
1228
|
-
"thinkingLevel": "medium"
|
|
1229
|
-
}
|
|
1230
|
-
}
|
|
1231
|
-
},
|
|
1232
|
-
"reasoning": true,
|
|
1233
|
-
"variants": {
|
|
1234
|
-
"high": {
|
|
1235
|
-
"thinkingLevel": "high"
|
|
1236
|
-
},
|
|
1237
|
-
"low": {
|
|
1238
|
-
"thinkingLevel": "low"
|
|
1239
|
-
},
|
|
1240
|
-
"medium": {
|
|
1241
|
-
"thinkingLevel": "medium"
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
838
|
+
"name": "Coder Model"
|
|
1244
839
|
},
|
|
1245
840
|
"glm-4.5": {
|
|
1246
841
|
"limit": {
|
|
@@ -1420,7 +1015,7 @@
|
|
|
1420
1015
|
},
|
|
1421
1016
|
"reasoning": true
|
|
1422
1017
|
},
|
|
1423
|
-
"gpt-5.
|
|
1018
|
+
"gpt-5.3-codex-spark": {
|
|
1424
1019
|
"limit": {
|
|
1425
1020
|
"context": 400000,
|
|
1426
1021
|
"output": 32768
|
|
@@ -1429,163 +1024,41 @@
|
|
|
1429
1024
|
"input": ["text", "image", "pdf"],
|
|
1430
1025
|
"output": ["text"]
|
|
1431
1026
|
},
|
|
1432
|
-
"name": "Gpt 5
|
|
1027
|
+
"name": "Gpt 5 3 Codex Spark",
|
|
1433
1028
|
"options": {
|
|
1434
1029
|
"reasoningEffort": "medium"
|
|
1435
1030
|
},
|
|
1436
1031
|
"reasoning": true
|
|
1437
1032
|
},
|
|
1438
|
-
"gpt-5.4
|
|
1033
|
+
"gpt-5.4": {
|
|
1439
1034
|
"limit": {
|
|
1440
1035
|
"context": 400000,
|
|
1441
|
-
"output":
|
|
1036
|
+
"output": 128000
|
|
1442
1037
|
},
|
|
1443
1038
|
"modalities": {
|
|
1444
1039
|
"input": ["text", "image", "pdf"],
|
|
1445
1040
|
"output": ["text"]
|
|
1446
1041
|
},
|
|
1447
|
-
"name": "Gpt 5 4
|
|
1042
|
+
"name": "Gpt 5 4",
|
|
1448
1043
|
"options": {
|
|
1449
1044
|
"reasoningEffort": "medium"
|
|
1450
1045
|
},
|
|
1451
1046
|
"reasoning": true
|
|
1452
1047
|
},
|
|
1453
|
-
"gpt-
|
|
1454
|
-
"limit": {
|
|
1455
|
-
"context": 128000,
|
|
1456
|
-
"output": 16384
|
|
1457
|
-
},
|
|
1458
|
-
"name": "Gpt Oss 120b Medium"
|
|
1459
|
-
},
|
|
1460
|
-
"kimi-k2": {
|
|
1048
|
+
"gpt-5.4-mini": {
|
|
1461
1049
|
"limit": {
|
|
1462
|
-
"context":
|
|
1463
|
-
"output":
|
|
1050
|
+
"context": 400000,
|
|
1051
|
+
"output": 32768
|
|
1464
1052
|
},
|
|
1465
|
-
"
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
"limit": {
|
|
1469
|
-
"context": 128000,
|
|
1470
|
-
"output": 16384
|
|
1053
|
+
"modalities": {
|
|
1054
|
+
"input": ["text", "image", "pdf"],
|
|
1055
|
+
"output": ["text"]
|
|
1471
1056
|
},
|
|
1472
|
-
"name": "
|
|
1057
|
+
"name": "Gpt 5 4 Mini",
|
|
1473
1058
|
"options": {
|
|
1474
|
-
"reasoningEffort": "
|
|
1059
|
+
"reasoningEffort": "medium"
|
|
1475
1060
|
},
|
|
1476
1061
|
"reasoning": true
|
|
1477
|
-
},
|
|
1478
|
-
"kimi-k2.5": {
|
|
1479
|
-
"limit": {
|
|
1480
|
-
"context": 128000,
|
|
1481
|
-
"output": 16384
|
|
1482
|
-
},
|
|
1483
|
-
"name": "Kimi K2 5"
|
|
1484
|
-
},
|
|
1485
|
-
"kiro-auto": {
|
|
1486
|
-
"limit": {
|
|
1487
|
-
"context": 128000,
|
|
1488
|
-
"output": 16384
|
|
1489
|
-
},
|
|
1490
|
-
"name": "Kiro Auto"
|
|
1491
|
-
},
|
|
1492
|
-
"kiro-claude-haiku-4-5": {
|
|
1493
|
-
"limit": {
|
|
1494
|
-
"context": 200000,
|
|
1495
|
-
"output": 64000
|
|
1496
|
-
},
|
|
1497
|
-
"name": "Kiro Claude Haiku 4 5"
|
|
1498
|
-
},
|
|
1499
|
-
"kiro-claude-haiku-4-5-agentic": {
|
|
1500
|
-
"limit": {
|
|
1501
|
-
"context": 200000,
|
|
1502
|
-
"output": 64000
|
|
1503
|
-
},
|
|
1504
|
-
"name": "Kiro Claude Haiku 4 5 Agentic"
|
|
1505
|
-
},
|
|
1506
|
-
"kiro-claude-sonnet-4": {
|
|
1507
|
-
"limit": {
|
|
1508
|
-
"context": 200000,
|
|
1509
|
-
"output": 64000
|
|
1510
|
-
},
|
|
1511
|
-
"name": "Kiro Claude Sonnet 4"
|
|
1512
|
-
},
|
|
1513
|
-
"kiro-claude-sonnet-4-5": {
|
|
1514
|
-
"limit": {
|
|
1515
|
-
"context": 200000,
|
|
1516
|
-
"output": 64000
|
|
1517
|
-
},
|
|
1518
|
-
"name": "Kiro Claude Sonnet 4 5"
|
|
1519
|
-
},
|
|
1520
|
-
"kiro-claude-sonnet-4-5-agentic": {
|
|
1521
|
-
"limit": {
|
|
1522
|
-
"context": 200000,
|
|
1523
|
-
"output": 64000
|
|
1524
|
-
},
|
|
1525
|
-
"name": "Kiro Claude Sonnet 4 5 Agentic"
|
|
1526
|
-
},
|
|
1527
|
-
"kiro-claude-sonnet-4-agentic": {
|
|
1528
|
-
"limit": {
|
|
1529
|
-
"context": 200000,
|
|
1530
|
-
"output": 64000
|
|
1531
|
-
},
|
|
1532
|
-
"name": "Kiro Claude Sonnet 4 Agentic"
|
|
1533
|
-
},
|
|
1534
|
-
"kiro-deepseek-3-2": {
|
|
1535
|
-
"limit": {
|
|
1536
|
-
"context": 128000,
|
|
1537
|
-
"output": 8192
|
|
1538
|
-
},
|
|
1539
|
-
"name": "Kiro Deepseek 3 2"
|
|
1540
|
-
},
|
|
1541
|
-
"kiro-deepseek-3-2-agentic": {
|
|
1542
|
-
"limit": {
|
|
1543
|
-
"context": 128000,
|
|
1544
|
-
"output": 8192
|
|
1545
|
-
},
|
|
1546
|
-
"name": "Kiro Deepseek 3 2 Agentic"
|
|
1547
|
-
},
|
|
1548
|
-
"kiro-minimax-m2-1": {
|
|
1549
|
-
"limit": {
|
|
1550
|
-
"context": 128000,
|
|
1551
|
-
"output": 16384
|
|
1552
|
-
},
|
|
1553
|
-
"name": "Kiro Minimax M2 1"
|
|
1554
|
-
},
|
|
1555
|
-
"kiro-minimax-m2-1-agentic": {
|
|
1556
|
-
"limit": {
|
|
1557
|
-
"context": 128000,
|
|
1558
|
-
"output": 16384
|
|
1559
|
-
},
|
|
1560
|
-
"name": "Kiro Minimax M2 1 Agentic"
|
|
1561
|
-
},
|
|
1562
|
-
"kiro-minimax-m2-5": {
|
|
1563
|
-
"limit": {
|
|
1564
|
-
"context": 128000,
|
|
1565
|
-
"output": 16384
|
|
1566
|
-
},
|
|
1567
|
-
"name": "Kiro Minimax M2 5"
|
|
1568
|
-
},
|
|
1569
|
-
"kiro-minimax-m2-5-agentic": {
|
|
1570
|
-
"limit": {
|
|
1571
|
-
"context": 128000,
|
|
1572
|
-
"output": 16384
|
|
1573
|
-
},
|
|
1574
|
-
"name": "Kiro Minimax M2 5 Agentic"
|
|
1575
|
-
},
|
|
1576
|
-
"kiro-qwen3-coder-next": {
|
|
1577
|
-
"limit": {
|
|
1578
|
-
"context": 1000000,
|
|
1579
|
-
"output": 65536
|
|
1580
|
-
},
|
|
1581
|
-
"name": "Kiro Qwen3 Coder Next"
|
|
1582
|
-
},
|
|
1583
|
-
"kiro-qwen3-coder-next-agentic": {
|
|
1584
|
-
"limit": {
|
|
1585
|
-
"context": 1000000,
|
|
1586
|
-
"output": 65536
|
|
1587
|
-
},
|
|
1588
|
-
"name": "Kiro Qwen3 Coder Next Agentic"
|
|
1589
1062
|
}
|
|
1590
1063
|
},
|
|
1591
1064
|
"name": "ProxyPal",
|
|
@@ -1659,9 +1132,5 @@
|
|
|
1659
1132
|
"*.log",
|
|
1660
1133
|
".DS_Store"
|
|
1661
1134
|
]
|
|
1662
|
-
},
|
|
1663
|
-
"compaction": {
|
|
1664
|
-
"auto": false,
|
|
1665
|
-
"reserved": 16000
|
|
1666
1135
|
}
|
|
1667
1136
|
}
|