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

64 lines 1.44 kB
/** * Release management function prompts for SoloFlow MCP * Complete release and deployment lifecycle management */ export declare function releaseCommitChangesPrompt(args: { commitType?: string; scope?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function releaseCreateReleasePrompt(args: { version?: string; releaseType?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function releaseDeploymentChecklistPrompt(args: { environment?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function releaseRollbackPlanPrompt(args: { version?: string; reason?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; export declare function releaseMonitorDeploymentPrompt(args: { environment?: string; duration?: string; }): Promise<{ messages: Array<{ role: "user"; content: { type: "text"; text: string; }; }>; }>; //# sourceMappingURL=release-prompts.d.ts.map