Files
bigwo/dev-assistant-mcp/dist/tools/workflow.d.ts

34 lines
857 B
TypeScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
export declare const workflowTool: {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
project_path: {
type: string;
description: string;
};
preset: {
type: string;
description: string;
enum: string[];
};
steps: {
type: string;
description: string;
};
stop_on_error: {
type: string;
description: string;
};
};
required: string[];
};
};
export declare function executeWorkflow(args: {
project_path: string;
preset?: string;
steps?: string;
stop_on_error?: boolean;
}): Promise<string>;
//# sourceMappingURL=workflow.d.ts.map