@measey/mycoder-agent
Version:
Agent module for mycoder - an AI-powered software development assistant
39 lines • 1.23 kB
TypeScript
import { z } from 'zod';
import { Tool } from '../../core/types.js';
declare const parameterSchema: z.ZodObject<{
description: z.ZodString;
goal: z.ZodString;
projectContext: z.ZodString;
workingDirectory: z.ZodOptional<z.ZodString>;
relevantFilesDirectories: z.ZodOptional<z.ZodString>;
userPrompt: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
goal: string;
description: string;
projectContext: string;
workingDirectory?: string | undefined;
userPrompt?: boolean | undefined;
relevantFilesDirectories?: string | undefined;
}, {
goal: string;
description: string;
projectContext: string;
workingDirectory?: string | undefined;
userPrompt?: boolean | undefined;
relevantFilesDirectories?: string | undefined;
}>;
declare const returnSchema: z.ZodObject<{
agentId: z.ZodString;
status: z.ZodString;
}, "strip", z.ZodTypeAny, {
agentId: string;
status: string;
}, {
agentId: string;
status: string;
}>;
type Parameters = z.infer<typeof parameterSchema>;
type ReturnType = z.infer<typeof returnSchema>;
export declare const agentStartTool: Tool<Parameters, ReturnType>;
export {};
//# sourceMappingURL=agentStart.d.ts.map