@bestdefense/bd-agent
Version:
An AI-powered coding assistant CLI that connects to AWS Bedrock
40 lines • 932 B
TypeScript
export declare const shellTools: {
name: string;
description: string;
input_schema: {
type: string;
properties: {
command: {
type: string;
description: string;
};
cwd: {
type: string;
description: string;
};
timeout: {
type: string;
description: string;
};
};
required: string[];
};
execute: ({ command, cwd, timeout }: {
command: string;
cwd?: string;
timeout?: number;
}) => Promise<{
success: boolean;
stdout: string;
stderr: string;
command: string;
error?: undefined;
} | {
success: boolean;
error: any;
stdout: any;
stderr: any;
command: string;
}>;
}[];
//# sourceMappingURL=shell.d.ts.map