@benyue1978/soloflow-mcp
Version:
A Model Context Protocol (MCP) server for project document management with 32 comprehensive prompts covering the complete software development lifecycle
23 lines • 713 B
TypeScript
/**
* Supported document types for SoloFlow MCP service
* All documents are stored in .soloflow/ directory with .md extension
*/
export declare const DOC_TYPES: readonly ["overview", "requirements", "system_architecture", "test_strategy", "ui_design", "tasks", "deployment", "notes"];
export type DocType = typeof DOC_TYPES[number];
/**
* Validation result for project root and document type validation
*/
export interface ValidationResult {
isValid: boolean;
error?: string;
}
/**
* Document summary information returned by list operation
*/
export interface DocumentSummary {
type: DocType;
name: string;
title?: string;
lastUpdated: Date;
}
//# sourceMappingURL=docTypes.d.ts.map