UNPKG

@jmkim85/dev-flow-mcp

Version:

MCP-based Dev Flow - AI-powered development workflow management with 13 essential tools for TDD and context management

12 lines 609 B
/** * Safety Guards Module * Provides path validation, file header management, and missing file feedback */ export declare function findStageOutputs(stage: string, taskId: string | undefined, projectRoot: string): Promise<string[]>; export declare function validateTaskPath(filePath: string, taskId: string): { valid: boolean; reason?: string; }; export declare function ensureFileHeader(content: string, filePath: string): string; export declare function generateMissingFilesFeedback(stage: string, taskId: string, projectRoot: string): Promise<string>; //# sourceMappingURL=safety-guards.d.ts.map