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

54 lines 1.23 kB
/** * Development function prompts for SoloFlow MCP * Code implementation and development functions */ export declare function developmentWriteCodePrompt(args: { feature?: string; language?: string; framework?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function developmentFixBugPrompt(args: { bugDescription?: string; severity?: string; component?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function developmentRefactorCodePrompt(args: { component?: string; reason?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function developmentCodeReviewChecklistPrompt(args: { codeLanguage?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; //# sourceMappingURL=development-prompts.d.ts.map