opencodekit 0.13.1 → 0.13.2
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/README.md
CHANGED
|
@@ -251,10 +251,10 @@ You've successfully set up OpenCodeKit when:
|
|
|
251
251
|
|
|
252
252
|
---
|
|
253
253
|
|
|
254
|
-
**OpenCodeKit v0.13.
|
|
254
|
+
**OpenCodeKit v0.13.2**
|
|
255
255
|
**Architecture**: Two-layer (Memory + Beads + Git)
|
|
256
256
|
**Package**: `npx opencodekit` to scaffold new projects
|
|
257
|
-
**New in v0.13.
|
|
257
|
+
**New in v0.13.2**: Multimodal support for gemini-claude models (image, PDF input)
|
|
258
258
|
**Ready for**: Daily production use
|
|
259
259
|
|
|
260
260
|
Enjoy your streamlined agent system with clean phase transitions!
|
package/dist/index.js
CHANGED
|
@@ -750,7 +750,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
750
750
|
// package.json
|
|
751
751
|
var package_default = {
|
|
752
752
|
name: "opencodekit",
|
|
753
|
-
version: "0.13.
|
|
753
|
+
version: "0.13.2",
|
|
754
754
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
755
755
|
type: "module",
|
|
756
756
|
repository: {
|
|
@@ -330,8 +330,8 @@ fi
|
|
|
330
330
|
|
|
331
331
|
---
|
|
332
332
|
|
|
333
|
-
**OpenCodeKit v0.13.
|
|
333
|
+
**OpenCodeKit v0.13.2**
|
|
334
334
|
**Architecture:** Two-Layer (Memory + Beads + Git)
|
|
335
|
-
**New in v0.13.
|
|
335
|
+
**New in v0.13.2:** Multimodal support for gemini-claude models (image, PDF input)
|
|
336
336
|
**Package:** `npx opencodekit` to scaffold new projects
|
|
337
337
|
**Last Updated:** January 8, 2026
|
|
@@ -288,14 +288,22 @@
|
|
|
288
288
|
"type": "enabled"
|
|
289
289
|
}
|
|
290
290
|
},
|
|
291
|
-
"reasoning": true
|
|
291
|
+
"reasoning": true,
|
|
292
|
+
"modalities": {
|
|
293
|
+
"input": ["text", "image", "pdf"],
|
|
294
|
+
"output": ["text"]
|
|
295
|
+
}
|
|
292
296
|
},
|
|
293
297
|
"gemini-claude-sonnet-4-5": {
|
|
294
298
|
"limit": {
|
|
295
299
|
"context": 168000,
|
|
296
300
|
"output": 64000
|
|
297
301
|
},
|
|
298
|
-
"name": "Gemini Claude Sonnet 4 5"
|
|
302
|
+
"name": "Gemini Claude Sonnet 4 5",
|
|
303
|
+
"modalities": {
|
|
304
|
+
"input": ["text", "image", "pdf"],
|
|
305
|
+
"output": ["text"]
|
|
306
|
+
}
|
|
299
307
|
},
|
|
300
308
|
"gemini-claude-sonnet-4-5-thinking": {
|
|
301
309
|
"limit": {
|
|
@@ -309,7 +317,11 @@
|
|
|
309
317
|
"type": "enabled"
|
|
310
318
|
}
|
|
311
319
|
},
|
|
312
|
-
"reasoning": true
|
|
320
|
+
"reasoning": true,
|
|
321
|
+
"modalities": {
|
|
322
|
+
"input": ["text", "image", "pdf"],
|
|
323
|
+
"output": ["text"]
|
|
324
|
+
}
|
|
313
325
|
},
|
|
314
326
|
"glm-4.5": {
|
|
315
327
|
"limit": {
|