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 519 B
import { TunnelProvider, TunnelInstance, ProviderOptions } from './types'; export interface NgrokConfig { authToken?: string; region?: string; } export declare class NgrokProvider implements TunnelProvider { private _config?; name: string; constructor(_config?: NgrokConfig | undefined); isAvailable(): Promise<boolean>; validateConfig(): Promise<void>; createTunnel(port: number, _options: ProviderOptions): Promise<TunnelInstance>; } //# sourceMappingURL=ngrok-provider-native.d.ts.map