Skip to content

Commit e916cab

Browse files
committed
Set showCompression to false by default and sync schema
1 parent 4ea8591 commit e916cab

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ DCP uses its own config file:
119119
> "compress": {
120120
> "enabled": true,
121121
> // Show summary content as an ignored message notification
122-
> "showCompression": true,
122+
> "showCompression": false,
123123
> },
124124
> // Removes tool content from context without preservation (for completed tasks or noise)
125125
> "prune": {

dcp.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
},
154154
"showCompression": {
155155
"type": "boolean",
156-
"default": true,
156+
"default": false,
157157
"description": "Show summary output in the UI"
158158
}
159159
}
@@ -204,7 +204,7 @@
204204
"properties": {
205205
"enabled": {
206206
"type": "boolean",
207-
"default": false,
207+
"default": true,
208208
"description": "Enable supersede writes strategy"
209209
}
210210
}

lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ const defaultConfig: PluginConfig = {
504504
},
505505
compress: {
506506
enabled: true,
507-
showCompression: true,
507+
showCompression: false,
508508
},
509509
prune: {
510510
enabled: true,

0 commit comments

Comments
 (0)