import type { AgentTool } from "@earendil-works/pi-agent-core"; import { type Static, Type } from "typebox"; import type { ToolDefinition } from "../extensions/types.js"; import { type TruncationResult } from "./truncate.js"; declare const findSchema: Type.TObject<{ pattern: Type.TString; path: Type.TOptional; limit: Type.TOptional; }>; export type FindToolInput = Static; export interface FindToolDetails { truncation?: TruncationResult; resultLimitReached?: number; } /** * Pluggable operations for the find tool. * Override these to delegate file search to remote systems (for example SSH). */ export interface FindOperations { /** Check if path exists */ exists: (absolutePath: string) => Promise | boolean; /** Find files matching glob pattern. Returns relative or absolute paths. */ glob: (pattern: string, cwd: string, options: { ignore: string[]; limit: number; }) => Promise | string[]; } export interface FindToolOptions { /** Custom operations for find. Default: local filesystem plus fd */ operations?: FindOperations; } export declare function createFindToolDefinition(cwd: string, options?: FindToolOptions): ToolDefinition; export declare function createFindTool(cwd: string, options?: FindToolOptions): AgentTool; export {}; //# sourceMappingURL=find.d.ts.map