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

58 lines 1.8 kB
/** * Project Management Processor * Handles top-level project management functions and integration * * @class ProjectManagementProcessor * @description Manages core project management document generation including * summaries, user stories, and risk analysis. * * @version 2.1.3 * @author Requirements Gathering Agent Team * @created 2024 * @updated June 2025 * @since 3.1.0 */ import { BaseAIProcessor } from "./BaseAIProcessor.js"; export declare class ProjectManagementProcessor extends BaseAIProcessor { getSummaryAndGoals(context: string): Promise<string | null>; /** * Gets user stories */ getUserStories(context: string): Promise<string | null>; /** * Gets risk analysis */ getRiskAnalysis(context: string): Promise<string | null>; /** * Gets core values for the project */ getCoreValues(context: string): Promise<string | null>; /** * Gets project purpose statement */ getProjectPurpose(context: string): Promise<string | null>; /** * Gets mission, vision and core values */ getMissionVisionAndCoreValues(context: string): Promise<string | null>; /** * Gets schedule network diagram */ getScheduleNetworkDiagram(context: string): Promise<string | null>; /** * Gets milestone list */ getMilestoneList(context: string): Promise<string | null>; /** * Gets schedule development input */ getDevelopScheduleInput(context: string): Promise<string | null>; /** * Gets project statement of work */ getProjectStatementOfWork(context: string): Promise<string | null>; /** * Gets business case */ getBusinessCase(context: string): Promise<string | null>; } //# sourceMappingURL=ProjectManagementProcessor.d.ts.map