From 1e2e001955c847873135685a2bd54d3467cb9e93 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 11 Apr 2026 22:29:03 +0900 Subject: [PATCH] refactor(create-tools): keep result type internal Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/create-tools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create-tools.ts b/src/create-tools.ts index 880e0a427..5ac5a7e2f 100644 --- a/src/create-tools.ts +++ b/src/create-tools.ts @@ -9,7 +9,7 @@ import { createAvailableCategories } from "./plugin/available-categories" import { createSkillContext } from "./plugin/skill-context" import { createToolRegistry } from "./plugin/tool-registry" -export type CreateToolsResult = { +type CreateToolsResult = { filteredTools: ToolsRecord mergedSkills: LoadedSkill[] availableSkills: AvailableSkill[]