diff --git a/lib/config.ts b/lib/config.ts index beabaa3f..f24e9680 100644 --- a/lib/config.ts +++ b/lib/config.ts @@ -450,7 +450,7 @@ const defaultConfig: PluginConfig = { strategies: { deduplication: { enabled: true, - protectedTools: [...DEFAULT_PROTECTED_TOOLS], + protectedTools: [], }, supersedeWrites: { enabled: false, @@ -458,7 +458,7 @@ const defaultConfig: PluginConfig = { purgeErrors: { enabled: true, turns: 4, - protectedTools: [...DEFAULT_PROTECTED_TOOLS], + protectedTools: [], }, }, } diff --git a/lib/ui/utils.ts b/lib/ui/utils.ts index b1e00ed9..9134a5cf 100644 --- a/lib/ui/utils.ts +++ b/lib/ui/utils.ts @@ -60,9 +60,6 @@ function shortenSinglePath(path: string, workingDirectory?: string): string { return path } -/** - * Formats a list of pruned items in the style: "→ tool: parameter" - */ export function formatPrunedItemsList( pruneToolIds: string[], toolMetadata: Map, @@ -95,9 +92,6 @@ export function formatPrunedItemsList( return lines } -/** - * Formats a PruningResult into a human-readable string for the prune tool output. - */ export function formatPruningResultForTool( prunedIds: string[], toolMetadata: Map,