Skip to content

Commit e278714

Browse files
committed
Merge branch 'dev' into feat/fuzzy-compress-matching
2 parents 77fa946 + 7883615 commit e278714

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ DCP uses its own config file:
121121
> },
122122
> // Collapses a range of conversation content into a single summary
123123
> "compress": {
124-
> // Permission mode: "ask" (prompt), "allow" (no prompt), "deny" (tool not registered)
125-
> "permission": "ask",
124+
> // Permission mode: "deny" (tool not registered), "ask" (prompt), "allow" (no prompt)
125+
> "permission": "deny",
126126
> // Show summary content as an ignored message notification
127127
> "showCompression": false,
128128
> },

lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ const defaultConfig: PluginConfig = {
511511
showDistillation: false,
512512
},
513513
compress: {
514-
permission: "ask",
514+
permission: "deny",
515515
showCompression: false,
516516
},
517517
prune: {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@tarquinen/opencode-dcp",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"type": "module",
66
"description": "OpenCode plugin that optimizes token usage by pruning obsolete tool outputs from conversation context",
77
"main": "./dist/index.js",

0 commit comments

Comments
 (0)