opencodekit 0.17.13 → 0.18.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 (44) hide show
  1. package/dist/index.js +4 -6
  2. package/dist/template/.opencode/AGENTS.md +57 -0
  3. package/dist/template/.opencode/agent/scout.md +0 -37
  4. package/dist/template/.opencode/command/resume.md +1 -1
  5. package/dist/template/.opencode/command/status.md +7 -14
  6. package/dist/template/.opencode/dcp.jsonc +81 -81
  7. package/dist/template/.opencode/memory/memory.db +0 -0
  8. package/dist/template/.opencode/memory.db +0 -0
  9. package/dist/template/.opencode/memory.db-shm +0 -0
  10. package/dist/template/.opencode/memory.db-wal +0 -0
  11. package/dist/template/.opencode/opencode.json +199 -23
  12. package/dist/template/.opencode/opencode.json.tui-migration.bak +1380 -0
  13. package/dist/template/.opencode/package.json +1 -1
  14. package/dist/template/.opencode/plugin/README.md +37 -25
  15. package/dist/template/.opencode/plugin/lib/capture.ts +177 -0
  16. package/dist/template/.opencode/plugin/lib/context.ts +194 -0
  17. package/dist/template/.opencode/plugin/lib/curator.ts +234 -0
  18. package/dist/template/.opencode/plugin/lib/db/maintenance.ts +312 -0
  19. package/dist/template/.opencode/plugin/lib/db/observations.ts +299 -0
  20. package/dist/template/.opencode/plugin/lib/db/pipeline.ts +520 -0
  21. package/dist/template/.opencode/plugin/lib/db/schema.ts +356 -0
  22. package/dist/template/.opencode/plugin/lib/db/types.ts +211 -0
  23. package/dist/template/.opencode/plugin/lib/distill.ts +376 -0
  24. package/dist/template/.opencode/plugin/lib/inject.ts +126 -0
  25. package/dist/template/.opencode/plugin/lib/memory-admin-tools.ts +188 -0
  26. package/dist/template/.opencode/plugin/lib/memory-db.ts +54 -936
  27. package/dist/template/.opencode/plugin/lib/memory-helpers.ts +202 -0
  28. package/dist/template/.opencode/plugin/lib/memory-hooks.ts +240 -0
  29. package/dist/template/.opencode/plugin/lib/memory-tools.ts +341 -0
  30. package/dist/template/.opencode/plugin/memory.ts +56 -60
  31. package/dist/template/.opencode/plugin/sessions.ts +372 -93
  32. package/dist/template/.opencode/skill/memory-system/SKILL.md +103 -60
  33. package/dist/template/.opencode/skill/session-management/SKILL.md +22 -35
  34. package/dist/template/.opencode/tui.json +15 -0
  35. package/package.json +1 -1
  36. package/dist/template/.opencode/plugin/compaction.ts +0 -190
  37. package/dist/template/.opencode/tool/action-queue.ts +0 -313
  38. package/dist/template/.opencode/tool/memory-admin.ts +0 -445
  39. package/dist/template/.opencode/tool/memory-get.ts +0 -143
  40. package/dist/template/.opencode/tool/memory-read.ts +0 -45
  41. package/dist/template/.opencode/tool/memory-search.ts +0 -264
  42. package/dist/template/.opencode/tool/memory-timeline.ts +0 -105
  43. package/dist/template/.opencode/tool/memory-update.ts +0 -63
  44. package/dist/template/.opencode/tool/observation.ts +0 -357
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "painter": {
20
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-pro-image"
21
+ "model": "proxypal/gemini-3.1-flash-image"
22
22
  },
23
23
  "plan": {
24
24
  "description": "Primary planning agent for architecture and multi-phase execution",
@@ -124,13 +124,6 @@
124
124
  ".opencode/memory/project/roadmap.md",
125
125
  ".opencode/memory/project/state.md"
126
126
  ],
127
- "keybinds": {
128
- "command_list": ";",
129
- "leader": "`",
130
- "session_child_cycle": "ctrl+alt+right",
131
- "session_child_cycle_reverse": "ctrl+alt+left",
132
- "session_compact": "ctrl+k"
133
- },
134
127
  "mcp": {
135
128
  "stitch": {
136
129
  "enabled": false,
@@ -624,6 +617,16 @@
624
617
  "context": 200000,
625
618
  "output": 64000
626
619
  },
620
+ "modalities": {
621
+ "input": [
622
+ "text",
623
+ "image",
624
+ "pdf"
625
+ ],
626
+ "output": [
627
+ "text"
628
+ ]
629
+ },
627
630
  "name": "Claude Haiku 4 5"
628
631
  },
629
632
  "claude-haiku-4-5-20251001": {
@@ -631,6 +634,16 @@
631
634
  "context": 200000,
632
635
  "output": 64000
633
636
  },
637
+ "modalities": {
638
+ "input": [
639
+ "text",
640
+ "image",
641
+ "pdf"
642
+ ],
643
+ "output": [
644
+ "text"
645
+ ]
646
+ },
634
647
  "name": "Claude Haiku 4 5 20251001"
635
648
  },
636
649
  "claude-opus-4-6-thinking": {
@@ -638,6 +651,16 @@
638
651
  "context": 200000,
639
652
  "output": 64000
640
653
  },
654
+ "modalities": {
655
+ "input": [
656
+ "text",
657
+ "image",
658
+ "pdf"
659
+ ],
660
+ "output": [
661
+ "text"
662
+ ]
663
+ },
641
664
  "name": "Claude Opus 4 6 Thinking",
642
665
  "options": {
643
666
  "thinking": {
@@ -664,6 +687,16 @@
664
687
  "context": 200000,
665
688
  "output": 64000
666
689
  },
690
+ "modalities": {
691
+ "input": [
692
+ "text",
693
+ "image",
694
+ "pdf"
695
+ ],
696
+ "output": [
697
+ "text"
698
+ ]
699
+ },
667
700
  "name": "Claude Sonnet 4"
668
701
  },
669
702
  "claude-sonnet-4-20250514": {
@@ -671,6 +704,16 @@
671
704
  "context": 200000,
672
705
  "output": 64000
673
706
  },
707
+ "modalities": {
708
+ "input": [
709
+ "text",
710
+ "image",
711
+ "pdf"
712
+ ],
713
+ "output": [
714
+ "text"
715
+ ]
716
+ },
674
717
  "name": "Claude Sonnet 4 20250514"
675
718
  },
676
719
  "claude-sonnet-4-5": {
@@ -678,6 +721,16 @@
678
721
  "context": 200000,
679
722
  "output": 64000
680
723
  },
724
+ "modalities": {
725
+ "input": [
726
+ "text",
727
+ "image",
728
+ "pdf"
729
+ ],
730
+ "output": [
731
+ "text"
732
+ ]
733
+ },
681
734
  "name": "Claude Sonnet 4 5"
682
735
  },
683
736
  "claude-sonnet-4-5-20250929": {
@@ -685,6 +738,16 @@
685
738
  "context": 200000,
686
739
  "output": 64000
687
740
  },
741
+ "modalities": {
742
+ "input": [
743
+ "text",
744
+ "image",
745
+ "pdf"
746
+ ],
747
+ "output": [
748
+ "text"
749
+ ]
750
+ },
688
751
  "name": "Claude Sonnet 4 5 20250929"
689
752
  },
690
753
  "claude-sonnet-4-6": {
@@ -692,6 +755,16 @@
692
755
  "context": 200000,
693
756
  "output": 64000
694
757
  },
758
+ "modalities": {
759
+ "input": [
760
+ "text",
761
+ "image",
762
+ "pdf"
763
+ ],
764
+ "output": [
765
+ "text"
766
+ ]
767
+ },
695
768
  "name": "Claude Sonnet 4 6"
696
769
  },
697
770
  "gemini-2.5-flash": {
@@ -856,13 +929,6 @@
856
929
  }
857
930
  }
858
931
  },
859
- "gemini-3-pro-image": {
860
- "limit": {
861
- "context": 1000000,
862
- "output": 65536
863
- },
864
- "name": "Gemini 3 Pro Image"
865
- },
866
932
  "gemini-3-pro-preview": {
867
933
  "limit": {
868
934
  "context": 1000000,
@@ -900,6 +966,13 @@
900
966
  }
901
967
  }
902
968
  },
969
+ "gemini-3.1-flash-image": {
970
+ "limit": {
971
+ "context": 1000000,
972
+ "output": 65536
973
+ },
974
+ "name": "Gemini 3 1 Flash Image"
975
+ },
903
976
  "gemini-3.1-pro-high": {
904
977
  "limit": {
905
978
  "context": 1000000,
@@ -1044,6 +1117,16 @@
1044
1117
  "context": 400000,
1045
1118
  "output": 32768
1046
1119
  },
1120
+ "modalities": {
1121
+ "input": [
1122
+ "text",
1123
+ "image",
1124
+ "pdf"
1125
+ ],
1126
+ "output": [
1127
+ "text"
1128
+ ]
1129
+ },
1047
1130
  "name": "Gpt 5",
1048
1131
  "options": {
1049
1132
  "reasoningEffort": "medium"
@@ -1055,6 +1138,16 @@
1055
1138
  "context": 400000,
1056
1139
  "output": 32768
1057
1140
  },
1141
+ "modalities": {
1142
+ "input": [
1143
+ "text",
1144
+ "image",
1145
+ "pdf"
1146
+ ],
1147
+ "output": [
1148
+ "text"
1149
+ ]
1150
+ },
1058
1151
  "name": "Gpt 5 Codex",
1059
1152
  "options": {
1060
1153
  "reasoningEffort": "medium"
@@ -1066,6 +1159,16 @@
1066
1159
  "context": 400000,
1067
1160
  "output": 32768
1068
1161
  },
1162
+ "modalities": {
1163
+ "input": [
1164
+ "text",
1165
+ "image",
1166
+ "pdf"
1167
+ ],
1168
+ "output": [
1169
+ "text"
1170
+ ]
1171
+ },
1069
1172
  "name": "Gpt 5 Codex Mini",
1070
1173
  "options": {
1071
1174
  "reasoningEffort": "medium"
@@ -1077,6 +1180,16 @@
1077
1180
  "context": 400000,
1078
1181
  "output": 32768
1079
1182
  },
1183
+ "modalities": {
1184
+ "input": [
1185
+ "text",
1186
+ "image",
1187
+ "pdf"
1188
+ ],
1189
+ "output": [
1190
+ "text"
1191
+ ]
1192
+ },
1080
1193
  "name": "Gpt 5 1",
1081
1194
  "options": {
1082
1195
  "reasoningEffort": "medium"
@@ -1088,6 +1201,16 @@
1088
1201
  "context": 400000,
1089
1202
  "output": 32768
1090
1203
  },
1204
+ "modalities": {
1205
+ "input": [
1206
+ "text",
1207
+ "image",
1208
+ "pdf"
1209
+ ],
1210
+ "output": [
1211
+ "text"
1212
+ ]
1213
+ },
1091
1214
  "name": "Gpt 5 1 Codex",
1092
1215
  "options": {
1093
1216
  "reasoningEffort": "medium"
@@ -1099,6 +1222,16 @@
1099
1222
  "context": 400000,
1100
1223
  "output": 32768
1101
1224
  },
1225
+ "modalities": {
1226
+ "input": [
1227
+ "text",
1228
+ "image",
1229
+ "pdf"
1230
+ ],
1231
+ "output": [
1232
+ "text"
1233
+ ]
1234
+ },
1102
1235
  "name": "Gpt 5 1 Codex Max",
1103
1236
  "options": {
1104
1237
  "reasoningEffort": "medium"
@@ -1110,6 +1243,16 @@
1110
1243
  "context": 400000,
1111
1244
  "output": 32768
1112
1245
  },
1246
+ "modalities": {
1247
+ "input": [
1248
+ "text",
1249
+ "image",
1250
+ "pdf"
1251
+ ],
1252
+ "output": [
1253
+ "text"
1254
+ ]
1255
+ },
1113
1256
  "name": "Gpt 5 1 Codex Mini",
1114
1257
  "options": {
1115
1258
  "reasoningEffort": "medium"
@@ -1121,6 +1264,16 @@
1121
1264
  "context": 400000,
1122
1265
  "output": 32768
1123
1266
  },
1267
+ "modalities": {
1268
+ "input": [
1269
+ "text",
1270
+ "image",
1271
+ "pdf"
1272
+ ],
1273
+ "output": [
1274
+ "text"
1275
+ ]
1276
+ },
1124
1277
  "name": "Gpt 5 2",
1125
1278
  "options": {
1126
1279
  "reasoningEffort": "medium"
@@ -1132,6 +1285,16 @@
1132
1285
  "context": 400000,
1133
1286
  "output": 32768
1134
1287
  },
1288
+ "modalities": {
1289
+ "input": [
1290
+ "text",
1291
+ "image",
1292
+ "pdf"
1293
+ ],
1294
+ "output": [
1295
+ "text"
1296
+ ]
1297
+ },
1135
1298
  "name": "Gpt 5 2 Codex",
1136
1299
  "options": {
1137
1300
  "reasoningEffort": "medium"
@@ -1143,6 +1306,16 @@
1143
1306
  "context": 400000,
1144
1307
  "output": 32768
1145
1308
  },
1309
+ "modalities": {
1310
+ "input": [
1311
+ "text",
1312
+ "image",
1313
+ "pdf"
1314
+ ],
1315
+ "output": [
1316
+ "text"
1317
+ ]
1318
+ },
1146
1319
  "name": "Gpt 5 3 Codex",
1147
1320
  "options": {
1148
1321
  "reasoningEffort": "medium"
@@ -1154,6 +1327,16 @@
1154
1327
  "context": 400000,
1155
1328
  "output": 32768
1156
1329
  },
1330
+ "modalities": {
1331
+ "input": [
1332
+ "text",
1333
+ "image",
1334
+ "pdf"
1335
+ ],
1336
+ "output": [
1337
+ "text"
1338
+ ]
1339
+ },
1157
1340
  "name": "Gpt 5 3 Codex Spark",
1158
1341
  "options": {
1159
1342
  "reasoningEffort": "medium"
@@ -1360,13 +1543,6 @@
1360
1543
  },
1361
1544
  "share": "manual",
1362
1545
  "small_model": "opencode/gpt-5-nano",
1363
- "tui": {
1364
- "diff_style": "auto",
1365
- "scroll_acceleration": {
1366
- "enabled": true
1367
- },
1368
- "scroll_speed": 3
1369
- },
1370
1546
  "watcher": {
1371
1547
  "ignore": [
1372
1548
  "node_modules/**",
@@ -1377,4 +1553,4 @@
1377
1553
  ".DS_Store"
1378
1554
  ]
1379
1555
  }
1380
- }
1556
+ }