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

36 lines (31 loc) 1.26 kB
/** * Template for the BABOK Perspectives document. * Provides the structure and default content for the Perspectives section. */ export class PerspectivesTemplate { /** * Generates the content for the Perspectives document. * @param context ProjectContext containing relevant project information. * @returns The structured Perspectives document as a string. */ generateContent(context) { return `# Perspectives This section provides an overview of the various perspectives as defined in the BABOK Guide. Perspectives are used within business analysis work to provide focus to tasks and techniques specific to the context of the initiative. ## Typical Perspectives - Agile - Business Intelligence - Information Technology - Business Architecture - Business Process Management ## Perspective Details For each perspective, consider the following: - Key characteristics - Impact on business analysis work - Techniques and approaches - Stakeholder considerations --- *This template should be customized to reflect the specific perspectives relevant to your project or organization. Use the context provided to tailor the content as needed.* `; } } //# sourceMappingURL=PerspectivesTemplate.js.map