UNPKG

@pimzino/claude-code-spec-workflow

Version:

Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent orchestration, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have

17 lines 785 B
export declare function detectProjectType(projectPath: string): Promise<string[]>; export declare function validateClaudeCode(): Promise<boolean>; export declare function fileExists(filePath: string): Promise<boolean>; export declare function ensureDirectory(dirPath: string): Promise<void>; /** * Check if a port is available */ export declare function isPortAvailable(port: number): Promise<boolean>; /** * Find an available port starting from a given port number */ export declare function findAvailablePort(startPort?: number, maxAttempts?: number): Promise<number>; /** * Get the best available port from a list of preferred ports, with fallback */ export declare function getBestAvailablePort(preferredPorts?: number[]): Promise<number>; //# sourceMappingURL=utils.d.ts.map