Skip to content

Commit 75539fd

Browse files
committed
set onIdle and pruneThinkingBlock strategies to disabled by default
1 parent 8227d64 commit 75539fd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ DCP uses its own config file (`~/.config/opencode/dcp.jsonc` or `.opencode/dcp.j
6868
},
6969
// Remove thinking/reasoning LLM blocks
7070
"pruneThinkingBlocks": {
71-
"enabled": true
71+
"enabled": false
7272
},
7373
// Run an LLM to analyze what tool calls are no longer relevant on idle
7474
"onIdle": {
75-
"enabled": true,
75+
"enabled": false,
7676
// Override model for analysis (format: "provider/model")
7777
// "model": "anthropic/claude-haiku-4-5",
7878
// Show toast notifications when model selection fails

lib/config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,10 +238,10 @@ const defaultConfig: PluginConfig = {
238238
protectedTools: [...DEFAULT_PROTECTED_TOOLS]
239239
},
240240
pruneThinkingBlocks: {
241-
enabled: true
241+
enabled: false
242242
},
243243
onIdle: {
244-
enabled: true,
244+
enabled: false,
245245
showModelErrorToasts: true,
246246
strictModelSelection: false,
247247
protectedTools: [...DEFAULT_PROTECTED_TOOLS]
@@ -324,11 +324,11 @@ function createDefaultConfig(): void {
324324
},
325325
// Remove thinking/reasoning LLM blocks
326326
"pruneThinkingBlocks": {
327-
"enabled": true
327+
"enabled": false
328328
},
329329
// Run an LLM to analyze what tool calls are no longer relevant on idle
330330
"onIdle": {
331-
"enabled": true,
331+
"enabled": false,
332332
// Override model for analysis (format: "provider/model")
333333
// "model": "anthropic/claude-haiku-4-5",
334334
// Show toast notifications when model selection fails

0 commit comments

Comments
 (0)