UNPKG

@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 543 B
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-native.d.ts.map