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

66 lines 1.49 kB
/** * Design function prompts for SoloFlow MCP * Comprehensive design functions including UI, system, architecture, data, and API design */ export declare function designCreateUIPrompt(args: { component?: string; page?: string; designType?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function designSystemArchitecturePrompt(args: { systemType?: string; scale?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function designAPIInterfacePrompt(args: { apiType?: string; version?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function designDatabaseSchemaPrompt(args: { databaseType?: string; schemaType?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function designReviewPrompt(args: { reviewType?: string; designType?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; //# sourceMappingURL=design-prompts.d.ts.map