@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 • 535 B
TypeScript
import { TunnelProvider, TunnelInstance, ProviderOptions } from './types';
export interface CloudflareConfig {
accountId?: string;
tunnelName?: string;
}
export declare class CloudflareProvider implements TunnelProvider {
private _config?;
name: string;
constructor(_config?: CloudflareConfig | undefined);
isAvailable(): Promise<boolean>;
validateConfig(): Promise<void>;
createTunnel(port: number, options: ProviderOptions): Promise<TunnelInstance>;
}
//# sourceMappingURL=cloudflare-provider.d.ts.map