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

19 lines 1.33 kB
/** * Commands Module Index * Exports all command handlers for the CLI */ export { handleStatusCommand } from './status.js'; export { handleAnalyzeCommand } from './analyze.js'; export { handleSetupCommand } from './setup.js'; export { handleGenerateCommand, handleGenerateCategoryCommand, handleGenerateAllCommand, handleGenerateCoreAnalysisCommand, handleListTemplatesCommand } from './generate.js'; export { handleValidateCommand } from './validate.js'; // Confluence commands export { handleConfluenceInitCommand, handleConfluenceTestCommand, handleConfluencePublishCommand, handleConfluenceStatusCommand, handleConfluenceOAuth2LoginCommand, handleConfluenceOAuth2StatusCommand, handleConfluenceOAuth2DebugCommand } from './confluence.js'; // SharePoint commands export { handleSharePointInitCommand, handleSharePointTestCommand, handleSharePointPublishCommand, handleSharePointStatusCommand, handleSharePointOAuth2LoginCommand, handleSharePointOAuth2StatusCommand, handleSharePointOAuth2DebugCommand } from './sharepoint.js'; // VCS commands export { handleVcsInitCommand, handleVcsStatusCommand, handleVcsCommitCommand, handleVcsPushCommand } from './vcs.js'; // Utility exports export { ValidationError } from './utils/validation.js'; export { SimpleSpinner } from './utils/common.js'; //# sourceMappingURL=index.js.map