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

46 lines 1.8 kB
/** * Work Breakdown Structure Processor * Handles AI functions related to Work Breakdown Structure (WBS) and related elements * * @class WBSProcessor * @description Specialized processor for generating WBS, WBS Dictionary, and other * scope decomposition artifacts following PMBOK standards * * @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 WBSProcessor extends BaseAIProcessor { /** * Generates a Work Breakdown Structure following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Work Breakdown Structure or null if generation fails */ getWorkBreakdownStructure(context: string): Promise<string | null>; /** * Generates a WBS Dictionary following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} WBS Dictionary or null if generation fails */ getWBSDictionary(context: string): Promise<string | null>; /** * Generates a Scope Baseline document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Scope Baseline or null if generation fails */ getScopeBaseline(context: string): Promise<string | null>; /** * Generates a Create WBS Process document following PMBOK standards * * @param {string} context - Project context information * @returns {Promise<string|null>} Create WBS Process or null if generation fails */ getCreateWbsProcess(context: string): Promise<string | null>; } //# sourceMappingURL=WBSProcessor.d.ts.map