From 0556358560f065dec5e35fd5b0544b18ddcc4495 Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Fri, 2 May 2025 14:39:39 -0700 Subject: Cleanup low value comments. (#248) --- packages/server/src/tools/glob.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'packages/server/src/tools/glob.ts') diff --git a/packages/server/src/tools/glob.ts b/packages/server/src/tools/glob.ts index d9d91c7a..9e7df0e8 100644 --- a/packages/server/src/tools/glob.ts +++ b/packages/server/src/tools/glob.ts @@ -27,11 +27,10 @@ export interface GlobToolParams { } /** - * Implementation of the Glob tool logic (moved from CLI) + * Implementation of the Glob tool logic */ export class GlobTool extends BaseTool { - static readonly Name = 'glob'; // Keep static name - + static readonly Name = 'glob'; /** * Creates a new instance of the GlobLogic * @param rootDirectory Root directory to ground this tool in. @@ -39,8 +38,8 @@ export class GlobTool extends BaseTool { constructor(private rootDirectory: string) { super( GlobTool.Name, - 'FindFiles', // Display name handled by CLI wrapper - 'Efficiently finds files matching specific glob patterns (e.g., `src/**/*.ts`, `**/*.md`), returning absolute paths sorted by modification time (newest first). Ideal for quickly locating files based on their name or path structure, especially in large codebases.', // Description handled by CLI wrapper + 'FindFiles', + 'Efficiently finds files matching specific glob patterns (e.g., `src/**/*.ts`, `**/*.md`), returning absolute paths sorted by modification time (newest first). Ideal for quickly locating files based on their name or path structure, especially in large codebases.', { properties: { pattern: { -- cgit v1.2.3