2025-04-19 19:45:42 +01:00
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import fs from 'fs' ;
import path from 'path' ;
import { BaseTool , ToolResult } from './tools.js' ;
import { SchemaValidator } from '../utils/schemaValidator.js' ;
import { makeRelative , shortenPath } from '../utils/paths.js' ;
2025-06-03 21:40:46 -07:00
import { Config } from '../config/config.js' ;
2025-04-19 19:45:42 +01:00
/**
* Parameters for the LS tool
*/
export interface LSToolParams {
/**
* The absolute path to the directory to list
*/
path : string ;
/**
2025-06-03 21:40:46 -07:00
* Array of glob patterns to ignore (optional)
2025-04-19 19:45:42 +01:00
*/
ignore? : string [ ] ;
2025-06-03 21:40:46 -07:00
/**
* Whether to respect .gitignore patterns (optional, defaults to true)
*/
respect_git_ignore? : boolean ;
2025-04-19 19:45:42 +01:00
}
/**
* File entry returned by LS tool
*/
export interface FileEntry {
/**
* Name of the file or directory
*/
name : string ;
/**
* Absolute path to the file or directory
*/
path : string ;
/**
* Whether this entry is a directory
*/
isDirectory : boolean ;
/**
* Size of the file in bytes (0 for directories)
*/
size : number ;
/**
* Last modified timestamp
*/
modifiedTime : Date ;
}
/**
* Implementation of the LS tool logic
*/
2025-04-21 10:53:11 -04:00
export class LSTool extends BaseTool < LSToolParams , ToolResult > {
2025-04-19 19:45:42 +01:00
static readonly Name = 'list_directory' ;
/**
* Creates a new instance of the LSLogic
* @param rootDirectory Root directory to ground this tool in. All operations will be restricted to this directory.
*/
2025-06-03 21:40:46 -07:00
constructor (
private rootDirectory : string ,
private config : Config ,
) {
2025-04-19 19:45:42 +01:00
super (
2025-04-21 10:53:11 -04:00
LSTool . Name ,
'ReadFolder' ,
'Lists the names of files and subdirectories directly within a specified directory path. Can optionally ignore entries matching provided glob patterns.' ,
2025-04-19 19:45:42 +01:00
{
properties : {
path : {
description :
'The absolute path to the directory to list (must be absolute, not relative)' ,
type : 'string' ,
} ,
ignore : {
description : 'List of glob patterns to ignore' ,
items : {
type : 'string' ,
} ,
type : 'array' ,
} ,
2025-06-03 21:40:46 -07:00
respect_git_ignore : {
description :
'Optional: Whether to respect .gitignore patterns when listing files. Only available in git repositories. Defaults to true.' ,
type : 'boolean' ,
} ,
2025-04-19 19:45:42 +01:00
} ,
required : [ 'path' ] ,
type : 'object' ,
} ,
) ;
// Set the root directory
this . rootDirectory = path . resolve ( rootDirectory ) ;
}
/**
* Checks if a path is within the root directory
* @param dirpath The path to check
* @returns True if the path is within the root directory, false otherwise
*/
private isWithinRoot ( dirpath : string ) : boolean {
const normalizedPath = path . normalize ( dirpath ) ;
const normalizedRoot = path . normalize ( this . rootDirectory ) ;
// Ensure the normalizedRoot ends with a path separator for proper path comparison
const rootWithSep = normalizedRoot . endsWith ( path . sep )
? normalizedRoot
: normalizedRoot + path . sep ;
return (
normalizedPath === normalizedRoot ||
normalizedPath . startsWith ( rootWithSep )
) ;
}
/**
* Validates the parameters for the tool
* @param params Parameters to validate
* @returns An error message string if invalid, null otherwise
*/
validateToolParams ( params : LSToolParams ) : string | null {
if (
this . schema . parameters &&
! SchemaValidator . validate (
this . schema . parameters as Record < string , unknown > ,
params ,
)
) {
return 'Parameters failed schema validation.' ;
}
if ( ! path . isAbsolute ( params . path ) ) {
return ` Path must be absolute: ${ params . path } ` ;
}
if ( ! this . isWithinRoot ( params . path ) ) {
return ` Path must be within the root directory ( ${ this . rootDirectory } ): ${ params . path } ` ;
}
return null ;
}
/**
* Checks if a filename matches any of the ignore patterns
* @param filename Filename to check
* @param patterns Array of glob patterns to check against
* @returns True if the filename should be ignored
*/
private shouldIgnore ( filename : string , patterns? : string [ ] ) : boolean {
if ( ! patterns || patterns . length === 0 ) {
return false ;
}
for ( const pattern of patterns ) {
// Convert glob pattern to RegExp
const regexPattern = pattern
. replace ( /[.+^${}()|[\]\\]/g , '\\$&' )
. replace ( /\*/g , '.*' )
. replace ( /\?/g , '.' ) ;
const regex = new RegExp ( ` ^ ${ regexPattern } $ ` ) ;
if ( regex . test ( filename ) ) {
return true ;
}
}
return false ;
}
/**
* Gets a description of the file reading operation
* @param params Parameters for the file reading
* @returns A string describing the file being read
*/
getDescription ( params : LSToolParams ) : string {
const relativePath = makeRelative ( params . path , this . rootDirectory ) ;
return shortenPath ( relativePath ) ;
}
// Helper for consistent error formatting
private errorResult ( llmContent : string , returnDisplay : string ) : ToolResult {
return {
llmContent ,
// Keep returnDisplay simpler in core logic
returnDisplay : ` Error: ${ returnDisplay } ` ,
} ;
}
/**
* Executes the LS operation with the given parameters
* @param params Parameters for the LS operation
* @returns Result of the LS operation
*/
2025-05-09 23:29:02 -07:00
async execute (
params : LSToolParams ,
_signal : AbortSignal ,
) : Promise < ToolResult > {
2025-04-19 19:45:42 +01:00
const validationError = this . validateToolParams ( params ) ;
if ( validationError ) {
return this . errorResult (
` Error: Invalid parameters provided. Reason: ${ validationError } ` ,
` Failed to execute tool. ` ,
) ;
}
try {
const stats = fs . statSync ( params . path ) ;
if ( ! stats ) {
// fs.statSync throws on non-existence, so this check might be redundant
// but keeping for clarity. Error message adjusted.
return this . errorResult (
` Error: Directory not found or inaccessible: ${ params . path } ` ,
` Directory not found or inaccessible. ` ,
) ;
}
if ( ! stats . isDirectory ( ) ) {
return this . errorResult (
` Error: Path is not a directory: ${ params . path } ` ,
` Path is not a directory. ` ,
) ;
}
const files = fs . readdirSync ( params . path ) ;
2025-06-03 21:40:46 -07:00
// Get centralized file discovery service
const respectGitIgnore =
params . respect_git_ignore ? ?
this . config . getFileFilteringRespectGitIgnore ( ) ;
const fileDiscovery = await this . config . getFileService ( ) ;
2025-04-19 19:45:42 +01:00
const entries : FileEntry [ ] = [ ] ;
2025-06-03 21:40:46 -07:00
let gitIgnoredCount = 0 ;
2025-04-19 19:45:42 +01:00
if ( files . length === 0 ) {
// Changed error message to be more neutral for LLM
return {
llmContent : ` Directory ${ params . path } is empty. ` ,
returnDisplay : ` Directory is empty. ` ,
} ;
}
for ( const file of files ) {
if ( this . shouldIgnore ( file , params . ignore ) ) {
continue ;
}
const fullPath = path . join ( params . path , file ) ;
2025-06-03 21:40:46 -07:00
const relativePath = path . relative ( this . rootDirectory , fullPath ) ;
// Check if this file should be git-ignored (only in git repositories)
if (
respectGitIgnore &&
fileDiscovery . isGitRepository ( ) &&
fileDiscovery . shouldIgnoreFile ( relativePath )
) {
gitIgnoredCount ++ ;
continue ;
}
2025-04-19 19:45:42 +01:00
try {
const stats = fs . statSync ( fullPath ) ;
const isDir = stats . isDirectory ( ) ;
entries . push ( {
name : file ,
path : fullPath ,
isDirectory : isDir ,
size : isDir ? 0 : stats.size ,
modifiedTime : stats.mtime ,
} ) ;
} catch ( error ) {
// Log error internally but don't fail the whole listing
console . error ( ` Error accessing ${ fullPath } : ${ error } ` ) ;
}
}
// Sort entries (directories first, then alphabetically)
entries . sort ( ( a , b ) = > {
if ( a . isDirectory && ! b . isDirectory ) return - 1 ;
if ( ! a . isDirectory && b . isDirectory ) return 1 ;
return a . name . localeCompare ( b . name ) ;
} ) ;
// Create formatted content for LLM
const directoryContent = entries
2025-04-24 15:42:18 -07:00
. map ( ( entry ) = > ` ${ entry . isDirectory ? '[DIR] ' : '' } ${ entry . name } ` )
2025-04-19 19:45:42 +01:00
. join ( '\n' ) ;
2025-06-03 21:40:46 -07:00
let resultMessage = ` Directory listing for ${ params . path } : \ n ${ directoryContent } ` ;
if ( gitIgnoredCount > 0 ) {
resultMessage += ` \ n \ n( ${ gitIgnoredCount } items were git-ignored) ` ;
}
let displayMessage = ` Listed ${ entries . length } item(s). ` ;
if ( gitIgnoredCount > 0 ) {
displayMessage += ` ( ${ gitIgnoredCount } git-ignored) ` ;
}
2025-04-19 19:45:42 +01:00
return {
2025-06-03 21:40:46 -07:00
llmContent : resultMessage ,
returnDisplay : displayMessage ,
2025-04-19 19:45:42 +01:00
} ;
} catch ( error ) {
const errorMsg = ` Error listing directory: ${ error instanceof Error ? error.message : String ( error ) } ` ;
return this . errorResult ( errorMsg , 'Failed to list directory.' ) ;
}
}
}