opencodekit 0.20.8 → 0.21.1

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