From a930eb8489028a793718a9c24892817f4c9fc3cf Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 19 Dec 2025 04:52:05 +0100 Subject: [PATCH] Convert custom tool examples to subdirectory/index.ts structure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - hello.ts → hello/index.ts - question.ts → question/index.ts - todo.ts → todo/index.ts - subagent/subagent.ts → subagent/index.ts --- .../examples/custom-tools/{hello.ts => hello/index.ts} | 0 .../examples/custom-tools/{question.ts => question/index.ts} | 0 .../examples/custom-tools/subagent/{subagent.ts => index.ts} | 0 .../coding-agent/examples/custom-tools/{todo.ts => todo/index.ts} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename packages/coding-agent/examples/custom-tools/{hello.ts => hello/index.ts} (100%) rename packages/coding-agent/examples/custom-tools/{question.ts => question/index.ts} (100%) rename packages/coding-agent/examples/custom-tools/subagent/{subagent.ts => index.ts} (100%) rename packages/coding-agent/examples/custom-tools/{todo.ts => todo/index.ts} (100%) diff --git a/packages/coding-agent/examples/custom-tools/hello.ts b/packages/coding-agent/examples/custom-tools/hello/index.ts similarity index 100% rename from packages/coding-agent/examples/custom-tools/hello.ts rename to packages/coding-agent/examples/custom-tools/hello/index.ts diff --git a/packages/coding-agent/examples/custom-tools/question.ts b/packages/coding-agent/examples/custom-tools/question/index.ts similarity index 100% rename from packages/coding-agent/examples/custom-tools/question.ts rename to packages/coding-agent/examples/custom-tools/question/index.ts diff --git a/packages/coding-agent/examples/custom-tools/subagent/subagent.ts b/packages/coding-agent/examples/custom-tools/subagent/index.ts similarity index 100% rename from packages/coding-agent/examples/custom-tools/subagent/subagent.ts rename to packages/coding-agent/examples/custom-tools/subagent/index.ts diff --git a/packages/coding-agent/examples/custom-tools/todo.ts b/packages/coding-agent/examples/custom-tools/todo/index.ts similarity index 100% rename from packages/coding-agent/examples/custom-tools/todo.ts rename to packages/coding-agent/examples/custom-tools/todo/index.ts