From f78bdf6f67be5dd0eb048ab2af4604b9cfc4cba5 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 4 Dec 2025 22:40:40 +0900 Subject: [PATCH] feat(tools): wire up new LSP and ast-grep tools in builtin exports --- src/tools/index.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/tools/index.ts b/src/tools/index.ts index 4fca1e3..3b98687 100644 --- a/src/tools/index.ts +++ b/src/tools/index.ts @@ -6,8 +6,20 @@ import { lsp_workspace_symbols, lsp_diagnostics, lsp_servers, + lsp_prepare_rename, + lsp_rename, + lsp_code_actions, + lsp_code_action_resolve, } from "./lsp" +import { + ast_grep_search, + ast_grep_replace, + ast_grep_languages, + ast_grep_analyze, + ast_grep_transform, +} from "./ast-grep" + export const builtinTools = { lsp_hover, lsp_goto_definition, @@ -16,4 +28,13 @@ export const builtinTools = { lsp_workspace_symbols, lsp_diagnostics, lsp_servers, + lsp_prepare_rename, + lsp_rename, + lsp_code_actions, + lsp_code_action_resolve, + ast_grep_search, + ast_grep_replace, + ast_grep_languages, + ast_grep_analyze, + ast_grep_transform, }