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

25 lines 778 B
/** * Task command generation utilities * Parses tasks.md files and generates individual command files */ export interface ParsedTask { id: string; description: string; leverage?: string; requirements?: string; } /** * Parse tasks from a tasks.md markdown file * Handles various formats agents might produce: * - [ ] 1. Task description * - [ ] 2.1 Subtask description * - Details * - _Requirements: 1.1, 2.2_ * - _Leverage: existing component X_ */ export declare function parseTasksFromMarkdown(content: string): ParsedTask[]; /** * Generate a command file for a specific task */ export declare function generateTaskCommand(commandsDir: string, specName: string, task: ParsedTask): Promise<void>; //# sourceMappingURL=task-generator.d.ts.map