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

22 lines 1.01 kB
import type { ProjectContext } from '../../ai/types.js'; import type { DocumentProcessor, DocumentOutput } from '../../documentGenerator/types.js'; /** * Stakeholder Needs Analysis Processor * * Specialized processor for analyzing stakeholder and sponsor needs to ensure * the Requirements Gathering Agent provides clear project charters and engagement plans. * * This processor focuses on: * - Identifying specific stakeholder requirements for project authorization * - Analyzing sponsor expectations for project charters * - Determining engagement plan requirements for different stakeholder groups * - Providing actionable insights for improving charter and engagement plan clarity */ export declare class StakeholderNeedsAnalysisProcessor implements DocumentProcessor { private aiProcessor; constructor(); process(context: ProjectContext): Promise<DocumentOutput>; private createPrompt; private validateOutput; } //# sourceMappingURL=StakeholderNeedsAnalysisProcessor.d.ts.map