opencodekit 0.16.14 → 0.16.15
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/dcp.jsonc +10 -9
- 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.16.
|
|
762
|
+
version: "0.16.15",
|
|
763
763
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
764
764
|
keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
|
|
765
765
|
license: "MIT",
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"enabled": true,
|
|
4
4
|
"debug": false,
|
|
5
5
|
// "minimal" shows prune activity without noise; "detailed" shows token counts
|
|
6
|
-
"pruneNotification": "
|
|
6
|
+
"pruneNotification": "detailed",
|
|
7
7
|
// "chat" (in-conversation) or "toast" (system notification)
|
|
8
|
-
"pruneNotificationType": "
|
|
8
|
+
"pruneNotificationType": "toast",
|
|
9
9
|
// Commands: /dcp context, /dcp stats, /dcp sweep
|
|
10
10
|
"commands": {
|
|
11
11
|
"enabled": true,
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"settings": {
|
|
31
31
|
"nudgeEnabled": true,
|
|
32
32
|
"nudgeFrequency": 10,
|
|
33
|
-
|
|
34
|
-
|
|
33
|
+
// v2.0.1: percentage support - 90% of model's 128k context
|
|
34
|
+
"contextLimit": "90%",
|
|
35
35
|
// Protect state-modifying and critical workflow tools
|
|
36
36
|
// LSP excluded: ephemeral exploration, prune after understanding
|
|
37
37
|
"protectedTools": [
|
|
@@ -55,11 +55,12 @@
|
|
|
55
55
|
"permission": "allow",
|
|
56
56
|
"showDistillation": false
|
|
57
57
|
},
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
58
|
+
"compress": {
|
|
59
|
+
// v2.0.1: compress is experimental, deny by default
|
|
60
|
+
"permission": "deny",
|
|
61
|
+
"showCompression": false
|
|
62
|
+
}
|
|
63
|
+
},
|
|
63
64
|
"strategies": {
|
|
64
65
|
// Dedup = zero LLM cost, high impact - always enable
|
|
65
66
|
"deduplication": {
|
package/package.json
CHANGED