@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 • 873 B
TypeScript
export interface TaskInfo {
id: string;
description: string;
leverage?: string;
requirements?: string;
completed: boolean;
details?: string[];
}
/**
* Parse tasks from a tasks.md markdown file, including both completed and pending tasks
* Handles various formats agents might produce:
* - [ ] 1. Task description (pending)
* - [x] 2. Task description (completed)
* - [ ] 2.1 Subtask description
* - Details
* - _Requirements: 1.1, 2.2_
* - _Leverage: existing component X_
*/
export declare function parseAllTasksFromMarkdown(content: string): TaskInfo[];
/**
* Get tasks from a specification's tasks.md file
*/
export declare function getTasks(specName: string, taskId?: string, mode?: 'all' | 'single' | 'next-pending' | 'complete', projectPath?: string): Promise<void>;
//# sourceMappingURL=get-tasks.d.ts.map