UNPKG

@pimzino/claude-code-spec-workflow

Version:

Automated workflows for Claude Code. Includes spec-driven development (Requirements → Design → Tasks → Implementation) with intelligent orchestration, optional steering documents and streamlined bug fix workflow (Report → Analyze → Fix → Verify). We have

27 lines 811 B
export declare class SpecWorkflowSetup { private projectRoot; private claudeDir; private commandsDir; private specsDir; private templatesDir; private steeringDir; private bugsDir; private agentsDir; private createAgents; _updateChoices?: { updateItems: string[]; }; private markdownDir; private markdownCommandsDir; private markdownTemplatesDir; private markdownAgentsDir; constructor(projectRoot?: string, enableAgents?: boolean); claudeDirectoryExists(): Promise<boolean>; setupDirectories(): Promise<void>; createSlashCommands(): Promise<void>; createTemplates(): Promise<void>; setupAgents(): Promise<void>; createConfigFile(): Promise<void>; runSetup(): Promise<void>; } //# sourceMappingURL=setup.d.ts.map