@pimzino/claude-code-spec-workflow
Version:
Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent task execution, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have
14 lines • 540 B
TypeScript
import { TunnelProviderError } from './types';
export interface ErrorRecoveryStrategy {
canRecover(error: TunnelProviderError): boolean;
recover(error: TunnelProviderError): Promise<void>;
}
export declare class TunnelErrorHandler {
private recoveryStrategies;
constructor();
registerStrategy(strategy: ErrorRecoveryStrategy): void;
handleError(error: TunnelProviderError): Promise<TunnelProviderError>;
private enhanceErrorMessage;
private getErrorEnhancements;
}
//# sourceMappingURL=error-handler.d.ts.map