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

23 lines 995 B
/** * Generates the complete spec-create command markdown content. * This command handles the full spec workflow: Requirements → Design → Tasks → Implementation. * * @returns Markdown string containing the complete spec-create command * * @example * ```typescript * const command = getSpecCreateCommand(); * await fs.writeFile('.claude/commands/spec-create.md', command); * ``` */ export declare function getSpecCreateCommand(): string; export declare function getSpecExecuteCommand(): string; export declare function getSpecStatusCommand(): string; export declare function getSpecListCommand(): string; export declare function getSpecSteeringSetupCommand(): string; export declare function getBugCreateCommand(): string; export declare function getBugAnalyzeCommand(): string; export declare function getBugFixCommand(): string; export declare function getBugVerifyCommand(): string; export declare function getBugStatusCommand(): string; //# sourceMappingURL=commands.d.ts.map