@benyue1978/soloflow-mcp
Version:
A Model Context Protocol (MCP) server for project document management with 32 comprehensive prompts covering the complete software development lifecycle
50 lines • 1.19 kB
TypeScript
/**
* Role-based function prompts for SoloFlow MCP
* Specialized functions for different development roles
*/
export declare function roleAnalystModePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function roleArchitectModePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function roleDeveloperModePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function roleTesterModePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function roleProjectManagerModePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
//# sourceMappingURL=role-prompts.d.ts.map