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

37 lines (30 loc) 1.09 kB
/** * Template for Elicitation & Collaboration (BABOK) * Returns a structured markdown outline for the document. */ export class ElicitationAndCollaborationTemplate { generateContent(context) { return `# Elicitation & Collaboration **Purpose:** Define the tasks and techniques used to elicit requirements and foster collaboration among stakeholders. ## 1. Introduction - Purpose and scope of elicitation & collaboration - Key stakeholders ## 2. Elicitation Preparation - Identify stakeholders and sources - Select elicitation techniques - Prepare materials and logistics ## 3. Conduct Elicitation - Execute elicitation activities (workshops, interviews, surveys, etc.) - Capture and document information ## 4. Confirm Elicitation Results - Validate findings with stakeholders - Address gaps and ambiguities ## 5. Collaboration & Communication - Ongoing stakeholder engagement - Communication methods and frequency ## 6. Revision History - Date, author, summary of changes `; } } //# sourceMappingURL=ElicitationAndCollaborationTemplate.js.map