UNPKG

hataraku

Version:

An autonomous coding agent for building AI-powered development tools. The name "Hataraku" (働く) means "to work" in Japanese.

16 lines (15 loc) 939 B
export function getListCodeDefinitionNamesDescription(cwd) { return `## list_code_definition_names Description: Request to list definition names (classes, functions, methods, etc.) used in source code files at the top level of the specified directory. This tool provides insights into the codebase structure and important constructs, encapsulating high-level concepts and relationships that are crucial for understanding the overall architecture. Parameters: - path: (required) The path of the directory (relative to the current working directory ${cwd.toPosix()}) to list top level source code definitions for. Usage: <list_code_definition_names> <path>Directory path here</path> </list_code_definition_names> Example: Requesting to list all top level source code definitions in the current directory <list_code_definition_names> <path>.</path> </list_code_definition_names>`; } //# sourceMappingURL=list-code-definition-names.js.map