UNPKG

@waltcow/claude-code-spec-workflow

Version:

Automated spec-driven workflow for Claude Code. Transforms feature ideas into complete implementations through Requirements → Design → Tasks → Implementation.

16 lines 783 B
/** * Platform-specific command generation scripts for Claude Code Spec Workflow * * These scripts replace the JavaScript version to avoid conflicts and ensure * cross-platform compatibility. The agent detects the OS and runs the appropriate script. */ export declare function getWindowsCommandGenerationScript(): string; export declare function getUnixCommandGenerationScript(): string; export declare function getOSDetectionScript(): string; /** * Get the appropriate command generation script based on the detected operating system * This function is used by the agent to determine which script to run */ export declare function getCommandGenerationInstructions(): string; export declare function getCommandGenerationScript(): string; //# sourceMappingURL=scripts.d.ts.map