diff --git a/src/plugin/hooks/create-tool-guard-hooks.ts b/src/plugin/hooks/create-tool-guard-hooks.ts index b762dfde..6982376f 100644 --- a/src/plugin/hooks/create-tool-guard-hooks.ts +++ b/src/plugin/hooks/create-tool-guard-hooks.ts @@ -96,7 +96,7 @@ export function createToolGuardHooks(args: { : null const hashlineReadEnhancer = isHookEnabled("hashline-read-enhancer") - ? safeHook("hashline-read-enhancer", () => createHashlineReadEnhancerHook(ctx, { hashline_edit: { enabled: pluginConfig.experimental?.hashline_edit ?? false } })) + ? safeHook("hashline-read-enhancer", () => createHashlineReadEnhancerHook(ctx, { hashline_edit: { enabled: pluginConfig.experimental?.hashline_edit ?? true } })) : null return { diff --git a/src/plugin/tool-registry.ts b/src/plugin/tool-registry.ts index 6ffbabfe..01c6fe3e 100644 --- a/src/plugin/tool-registry.ts +++ b/src/plugin/tool-registry.ts @@ -119,7 +119,7 @@ export function createToolRegistry(args: { } : {} - const hashlineEnabled = pluginConfig.experimental?.hashline_edit ?? false + const hashlineEnabled = pluginConfig.experimental?.hashline_edit ?? true const hashlineToolsRecord: Record = hashlineEnabled ? { edit: createHashlineEditTool() } : {}