/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/tool/builtins.ts
48 строк
2 KB
James Long
refactor(core): remove tool layer exports (#34622)
30 июн 2026, 18:18
Не верифицирован
30 июн 2026, 18:18
5691f36
Код
Авторство
О чём код?
export * as BuiltInTools from "./builtins" import { makeLocationNode } from "../effect/app-node" import { Layer } from "effect" import { BashTool } from "./bash" import { ApplyPatchTool } from "./apply-patch" import { EditTool } from "./edit" import { GlobTool } from "./glob" import { GrepTool } from "./grep" import { QuestionTool } from "./question" import { ReadTool } from "./read" import { SkillTool } from "./skill" import { TodoWriteTool } from "./todowrite" import { WebFetchTool } from "./webfetch" import { WebSearchTool } from "./websearch" import { WriteTool } from "./write" /** * Composes only the shipped Location-scoped built-in tool transforms. * Each tool retains its implementation and focused tests independently. Dynamic * MCP and plugin tools later use separate scoped canonical registrations, while * provider/model filtering belongs to a future materialization phase rather * than this static list. The caller intentionally supplies shared Location * services once to this merged set. * * TODO: Port the remaining launch-follow-up leaves deliberately: edit fuzzy * parity, task, LSP, * repo_clone, repo_overview, plan_exit, and Rune/code mode. Keep MCP and plugin * transforms separate from this static built-in list. */ export const node = makeLocationNode({ name: "built-in-tools", layer: Layer.empty, deps: [ ApplyPatchTool.node, BashTool.node, EditTool.node, GlobTool.node, GrepTool.node, QuestionTool.node, ReadTool.node, SkillTool.node, TodoWriteTool.node, WebFetchTool.node, WebSearchTool.node, WriteTool.node, ], })