spec-workflow-mcp
Version:
MCP server for managing spec workflow (requirements, design, implementation)
22 lines • 860 B
TypeScript
/**
* Task guidance template extractor
* Reads task completion guidance text templates from OpenAPI specification
*/
export declare class TaskGuidanceExtractor {
private static _template;
private static get template();
/**
* Build task guidance text
* Read templates from OpenAPI spec and assemble them
*/
static buildGuidanceText(nextTaskContent: string, firstSubtask: string, taskNumber?: string, isFirstTask?: boolean): string;
/**
* Extract the first uncompleted task with its context
*/
static extractFirstSubtask(taskContent: string): string;
/**
* Get completion message
*/
static getCompletionMessage(type: 'taskCompleted' | 'allCompleted' | 'alreadyCompleted' | 'batchSucceeded' | 'batchCompleted', taskNumber?: string): string;
}
//# sourceMappingURL=taskGuidanceTemplate.d.ts.map