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

32 lines (26 loc) 870 B
/** * Template for Business Analysis Planning & Monitoring (BABOK) * Returns a structured markdown outline for the document. */ export class BusinessAnalysisPlanningAndMonitoringTemplate { generateContent(context) { return `# Business Analysis Planning & Monitoring **Purpose:** Define the tasks used to organize and coordinate business analysis efforts. ## 1. Introduction - Purpose and scope of planning & monitoring - Key stakeholders ## 2. Planning Approach - Methodologies and deliverables - Roles and responsibilities ## 3. Monitoring & Reporting - Mechanisms for tracking progress - Reporting structure ## 4. Review & Validation - Stakeholder review process - Approval workflow ## 5. Revision History - Date, author, summary of changes `; } } //# sourceMappingURL=BusinessAnalysisPlanningAndMonitoringTemplate.js.map