@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.5 kB
TypeScript
/**
* Task management function prompts for SoloFlow MCP
* Advanced task management and breakdown functions
*/
export declare function taskAddTaskPrompt(args: {
taskTitle?: string;
priority?: string;
category?: string;
estimatedTime?: string;
}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function taskBreakdownRequirementsPrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function taskBreakdownArchitecturePrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function taskCreateEpicPrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function taskCreateStoryPrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
export declare function taskEstimateTasksPrompt(args: {}): Promise<{
messages: Array<{
role: "user";
content: {
type: "text";
text: string;
};
}>;
}>;
//# sourceMappingURL=task-prompts.d.ts.map