Skip to content

Commit 7f69401

Browse files
committed
remove write and edit from default protected tools
1 parent b810411 commit 7f69401

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ DCP uses its own config file:
102102
### Protected Tools
103103

104104
By default, these tools are always protected from pruning across all strategies:
105-
`task`, `todowrite`, `todoread`, `prune`, `batch`, `write`, `edit`
105+
`task`, `todowrite`, `todoread`, `prune`, `batch`
106106

107107
The `protectedTools` arrays in each strategy add to this default list.
108108

lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export interface PluginConfig {
4040
}
4141
}
4242

43-
const DEFAULT_PROTECTED_TOOLS = ['task', 'todowrite', 'todoread', 'prune', 'batch', 'write', 'edit']
43+
const DEFAULT_PROTECTED_TOOLS = ['task', 'todowrite', 'todoread', 'prune', 'batch']
4444

4545
// Valid config keys for validation against user config
4646
export const VALID_CONFIG_KEYS = new Set([

0 commit comments

Comments
 (0)