@tarquinen/opencode-dcp 1.4.2-beta.0 → 2.0.0
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 +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,7 +104,10 @@ DCP uses its own config file:
|
|
|
104
104
|
> // Nudge the LLM to use prune tools (every <nudgeFrequency> tool results)
|
|
105
105
|
> "nudgeEnabled": true,
|
|
106
106
|
> "nudgeFrequency": 10,
|
|
107
|
-
> //
|
|
107
|
+
> // Token limit at which the model begins actively
|
|
108
|
+
> // compressing session context. Best kept around 40% of
|
|
109
|
+
> // the model's context window to stay in the "smart zone".
|
|
110
|
+
> // Set to "model" to use the model's full context window.
|
|
108
111
|
> "contextLimit": 100000,
|
|
109
112
|
> // Additional tools to protect from pruning
|
|
110
113
|
> "protectedTools": [],
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@tarquinen/opencode-dcp",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "OpenCode plugin that optimizes token usage by pruning obsolete tool outputs from conversation context",
|
|
7
7
|
"main": "./dist/index.js",
|