You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,9 @@ DCP uses its own config file:
75
75
"enabled":false,
76
76
"turns":4,
77
77
},
78
+
// Protect file operations from pruning via glob patterns
79
+
// Patterns match tool parameters.filePath (e.g. read/write/edit)
80
+
"protectedFilePatterns": [],
78
81
// LLM-driven context pruning tools
79
82
"tools": {
80
83
// Shared settings for all prune tools
@@ -141,6 +144,10 @@ Each level overrides the previous, so project settings take priority over config
141
144
142
145
Restart OpenCode after making config changes.
143
146
147
+
## Limitations
148
+
149
+
**Subagents** — DCP is disabled for subagents. Subagents are not designed to be token efficient; what matters is that the final message returned to the main agent is a concise summary of findings. DCP's pruning could interfere with this summarization behavior.
0 commit comments