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

39 lines 936 B
/** * Requirements analysis function prompts for SoloFlow MCP * Requirements analysis and management functions */ export declare function requirementsAnalyzeRequirementsPrompt(args: { domain?: string; scope?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function requirementsValidateRequirementsPrompt(args: { validationType?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function requirementsPrioritizeRequirementsPrompt(args: { priorityMethod?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; //# sourceMappingURL=requirements-prompts.d.ts.map