From 31dc6e206d43c5b37dfc958a51e5a62f3903786e Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 19 Feb 2026 03:38:12 +0900 Subject: [PATCH] feat(hashline): enable hashline-edit by default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/plugin/hooks/create-tool-guard-hooks.ts | 2 +- src/plugin/tool-registry.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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() } : {}