UNPKG

@al76/tools-and-spec-workflow-mcp

Version:

MCP server for spec-driven development workflow with real-time web dashboard

19 lines 1.12 kB
export declare class PathUtils { static getWorkflowRoot(projectPath: string): string; static getSpecPath(projectPath: string, specName: string): string; static getArchiveSpecPath(projectPath: string, specName: string): string; static getArchiveSpecsPath(projectPath: string): string; static getSteeringPath(projectPath: string): string; static getTemplatesPath(projectPath: string): string; static getAgentsPath(projectPath: string): string; static getCommandsPath(projectPath: string): string; static getApprovalsPath(projectPath: string): string; static getSpecApprovalPath(projectPath: string, specName: string): string; static toPlatformPath(path: string): string; static toUnixPath(path: string): string; static getRelativePath(projectPath: string, fullPath: string): string; } export declare function validateProjectPath(projectPath: string): Promise<string>; export declare function ensureDirectoryExists(dirPath: string): Promise<void>; export declare function ensureWorkflowDirectory(projectPath: string): Promise<string>; //# sourceMappingURL=path-utils.d.ts.map