UNPKG

adpa-enterprise-framework-automation

Version:

Modular, standards-compliant Node.js/TypeScript automation framework for enterprise requirements, project, and data management. Provides CLI and API for BABOK v3, PMBOK 7th Edition, and DMBOK 2.0 (in progress). Production-ready Express.js API with TypeSpe

16 lines 806 B
/** * Work Breakdown Structure (WBS) Document Template * Hierarchical decomposition of project deliverables and work packages. */ export class WBSTemplate { static buildPrompt(context) { const projectName = context.projectName || 'Project'; return `# Work Breakdown Structure (WBS)\n\n` + `**Project:** ${projectName}\n\n` + `## 1. Project Management\n- Define management deliverables and work packages\n\n` + `## 2. Requirements & Design\n- List requirements gathering and design work packages\n\n` + `## 3. Implementation\n- Detail implementation phases and work packages\n\n` + `## 4. Deployment & Training\n- Outline deployment, training, and transition work packages\n`; } } //# sourceMappingURL=WBSTemplate.js.map