UNPKG

@benyue1978/soloflow-mcp

Version:

A Model Context Protocol (MCP) server for project document management with 32 comprehensive prompts covering the complete software development lifecycle

27 lines 637 B
/** * Quality assurance function prompts for SoloFlow MCP * Quality assurance and review functions */ export declare function qualityCodeReviewChecklistPrompt(args: { codeLanguage?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function qualityDeploymentChecklistPrompt(args: { environment?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; //# sourceMappingURL=quality-prompts.d.ts.map