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

13 lines 763 B
/** * Template definitions for spec-driven workflow * * NOTE: This file previously contained function-based template generation. * As of the markdown conversion, all template content has been moved to * individual markdown files in src/markdown/templates/ * * The setup system now reads directly from these markdown files instead * of calling functions from this module. */ export declare const AVAILABLE_TEMPLATES: readonly ["requirements-template.md", "design-template.md", "tasks-template.md", "product-template.md", "tech-template.md", "structure-template.md", "bug-report-template.md", "bug-analysis-template.md", "bug-verification-template.md"]; export type TemplateName = typeof AVAILABLE_TEMPLATES[number]; //# sourceMappingURL=templates.d.ts.map