opencodekit 0.17.4 → 0.17.6
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 +10 -10
- package/dist/template/.opencode/.version +1 -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 +1059 -1054
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugin/hashline.ts +757 -0
- package/dist/template/.opencode/plugin/sessions.ts +60 -0
- package/dist/template/.opencode/plugin/skill-mcp.ts +48 -0
- package/dist/template/.opencode/tool/action-queue.ts +9 -4
- package/dist/template/.opencode/tool/memory-search.ts +12 -7
- package/dist/template/.opencode/tool/observation.ts +65 -4
- package/dist/template/.opencode/tool/swarm.ts +14 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -759,7 +759,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
759
759
|
// package.json
|
|
760
760
|
var package_default = {
|
|
761
761
|
name: "opencodekit",
|
|
762
|
-
version: "0.17.
|
|
762
|
+
version: "0.17.6",
|
|
763
763
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
764
764
|
keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
|
|
765
765
|
license: "MIT",
|
|
@@ -9248,12 +9248,12 @@ var MODEL_PRESETS = {
|
|
|
9248
9248
|
agents: {
|
|
9249
9249
|
build: "opencode/kimi-k2.5-free",
|
|
9250
9250
|
plan: "opencode/kimi-k2.5-free",
|
|
9251
|
-
review: "opencode/minimax-m2.
|
|
9252
|
-
explore: "opencode/
|
|
9253
|
-
general: "opencode/
|
|
9251
|
+
review: "opencode/minimax-m2.5-free",
|
|
9252
|
+
explore: "opencode/minimax-m2.5-free",
|
|
9253
|
+
general: "opencode/minimax-m2.5-free",
|
|
9254
9254
|
looker: "opencode/kimi-k2.5-free",
|
|
9255
9255
|
vision: "opencode/kimi-k2.5-free",
|
|
9256
|
-
scout: "opencode/minimax-m2.
|
|
9256
|
+
scout: "opencode/minimax-m2.5-free",
|
|
9257
9257
|
painter: "opencode/kimi-k2.5-free"
|
|
9258
9258
|
}
|
|
9259
9259
|
},
|
|
@@ -9263,12 +9263,12 @@ var MODEL_PRESETS = {
|
|
|
9263
9263
|
build: "github-copilot/claude-opus-4.6",
|
|
9264
9264
|
plan: "openai/gpt-5.3-codex",
|
|
9265
9265
|
review: "openai/gpt-5.3-codex",
|
|
9266
|
-
explore: "
|
|
9266
|
+
explore: "opencode/minimax-m2.5-free",
|
|
9267
9267
|
general: "github-copilot/gpt-5.2-codex",
|
|
9268
|
-
looker: "
|
|
9269
|
-
vision: "
|
|
9270
|
-
scout: "
|
|
9271
|
-
painter: "
|
|
9268
|
+
looker: "github-copilot/gemini-3-flash",
|
|
9269
|
+
vision: "github-copilot/gemini-3-pro",
|
|
9270
|
+
scout: "opencode/minimax-m2.5-free",
|
|
9271
|
+
painter: "github-copilot/gemini-3-pro"
|
|
9272
9272
|
}
|
|
9273
9273
|
}
|
|
9274
9274
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.17.5
|
|
Binary file
|
|
Binary file
|