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
40 lines • 1.37 kB
TypeScript
/**
* Stakeholder Analysis Commands
* Automated stakeholder analysis commands for Requirements Gathering Agent
*
* @version 1.0.0
* @author Requirements Gathering Agent Team
* @created 2025-01-27
*
* @filepath src/commands/stakeholder.ts
*/
export interface StakeholderAnalysisOptions {
outputDir?: string;
format?: 'markdown' | 'json';
verbose?: boolean;
includeRegister?: boolean;
includeEngagementPlan?: boolean;
stakeholderTypes?: string[];
analysisDepth?: 'basic' | 'detailed' | 'comprehensive';
}
/**
* Generate comprehensive stakeholder analysis
*/
export declare function handleStakeholderAnalysisCommand(options?: StakeholderAnalysisOptions): Promise<void>;
/**
* Generate stakeholder register only
*/
export declare function handleStakeholderRegisterCommand(options?: StakeholderAnalysisOptions): Promise<void>;
/**
* Generate stakeholder engagement plan
*/
export declare function handleStakeholderEngagementPlanCommand(options?: StakeholderAnalysisOptions): Promise<void>;
/**
* Generate all stakeholder documents (comprehensive automation)
*/
export declare function handleStakeholderAutomationCommand(options?: StakeholderAnalysisOptions): Promise<void>;
/**
* Display help for Stakeholder Analysis commands
*/
export declare function displayStakeholderHelp(): void;
//# sourceMappingURL=stakeholder.d.ts.map