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
36 lines (31 loc) • 1.27 kB
JavaScript
/**
* RequirementsLifeCycleManagementTemplate
* Template for BABOK Requirements Life Cycle Management document.
* Provides structure and default content for the document.
*/
export class RequirementsLifeCycleManagementTemplate {
/**
* Generate the default content for the Requirements Life Cycle Management document.
* @param context ProjectContext for dynamic content population
* @returns Markdown string for the document
*/
generateContent(context) {
return `
This document describes the processes and tasks for managing requirements throughout their life cycle, as defined in BABOK.
- Define how requirements are traced, maintained, prioritized, and approved.
- Ensure requirements are aligned with business objectives and stakeholder needs.
- Trace Requirements
- Maintain Requirements
- Prioritize Requirements
- Assess Requirements Changes
- Approve Requirements
Describe the approach for each of the above sections, referencing project context as needed.
---
*This document is generated based on the project context and BABOK best practices.*
`;
}
}
//# sourceMappingURL=RequirementsLifeCycleManagementTemplate.js.map