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

64 lines 2.89 kB
/** * Scope Management Processor * Handles AI functions related to scope definition, validation, and control * * @class ScopeManagementProcessor * @description Specialized processor for scope management processes following PMBOK standards * * @version 1.0.0 * @since 3.1.0 */ import { BaseAIProcessor } from "./BaseAIProcessor.js"; export declare class ScopeManagementProcessor extends BaseAIProcessor { protected generateScopeOutput(documentType: string, context: string, additionalContext?: string[]): Promise<string | null>; /** * Generates a Scope Management Plan following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Scope Management Plan or null if generation fails */ getScopeManagementPlan(context: string): Promise<string | null>; /** * Generates a Project Scope Statement following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Project Scope Statement or null if generation fails */ getProjectScopeStatement(context: string): Promise<string | null>; /** * Generates Requirements Documentation following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Requirements Documentation or null if generation fails */ getRequirementsDocumentation(context: string): Promise<string | null>; /** * Generates a Requirements Traceability Matrix following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Requirements Traceability Matrix or null if generation fails */ getRequirementsTraceabilityMatrix(context: string): Promise<string | null>; /** * Generates a Plan Scope Management process document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Plan Scope Management process or null if generation fails */ getPlanScopeManagement(context: string): Promise<string | null>; /** * Generates a Define Scope Process document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Define Scope Process or null if generation fails */ getDefineScopeProcess(context: string): Promise<string | null>; /** * Generates Work Performance Information (Scope) document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Work Performance Information (Scope) or null if generation fails */ getWorkPerformanceInformationScope(context: string): Promise<string | null>; } //# sourceMappingURL=ScopeManagementProcessor.d.ts.map