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

38 lines 1.24 kB
"use strict"; /** * 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. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.AVAILABLE_TEMPLATES = void 0; // All template generation functions have been removed and replaced with // individual markdown files in src/markdown/templates/ // // Available template files: // - 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 exports.AVAILABLE_TEMPLATES = [ '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' ]; //# sourceMappingURL=templates.js.map