/** * AI Function Processors Index for Requirements Gathering Agent * * Central export hub for domain-specific AI processors organized by * functional area for better maintainability and modularity. * * @version 2.1.3 * @author Requirements Gathering Agent Team * @created 2024 * @updated June 2025 * * Key Features: * - Domain-separated AI processors for specialized functionality * - Organized exports by functional area (stakeholder, technical, etc.) * - Type-safe processor interfaces and implementations * - Modular architecture for easy extension * - Clean separation of concerns * * @filepath c:\Users\menno\Source\Repos\requirements-gathering-agent\src\modules\ai\processors\index.ts */ export { BaseAIProcessor } from "./BaseAIProcessor.js"; export { ProcessorFactory } from "./ProcessorFactory.js"; export declare const getAiSummaryAndGoals: (context: string) => Promise; export declare const getAiUserStories: (context: string) => Promise; export declare const getAiUserPersonas: (context: string) => Promise; export declare const getAiKeyRolesAndNeeds: (context: string) => Promise; export declare const getAiProjectStatementOfWork: (context: string) => Promise; export declare const getAiBusinessCase: (context: string) => Promise; export declare const getMissionVisionAndCoreValues: (context: string) => Promise; export declare const getProjectPurpose: (context: string) => Promise; export declare const getAiProjectCharter: (context: string) => Promise; export declare const getAiProjectManagementPlan: (context: string) => Promise; export declare const getAiDirectAndManageProjectWorkProcess: (context: string) => Promise; export declare const getAiPerformIntegratedChangeControlProcess: (context: string) => Promise; export declare const getAiCloseProjectOrPhaseProcess: (context: string) => Promise; export declare const getAiPlanScopeManagement: (context: string) => Promise; export declare const getAiRequirementsManagementPlan: (context: string) => Promise; export declare const getAiCollectRequirementsProcess: (context: string) => Promise; export declare const getAiRequirementsDocumentation: (context: string) => Promise; export declare const getAiRequirementsTraceabilityMatrix: (context: string) => Promise; export declare const getAiDefineScopeProcess: (context: string) => Promise; export declare const getAiProjectScopeStatement: (context: string) => Promise; export declare const getAiCreateWbsProcess: (context: string) => Promise; export declare const getAiScopeBaseline: (context: string) => Promise; export declare const getAiValidateScopeProcess: (context: string) => Promise; export declare const getAiControlScopeProcess: (context: string) => Promise; export declare const getAiWorkPerformanceInformationScope: (context: string) => Promise; export declare const getAiScopeManagementPlan: (context: string) => Promise; export declare const getAiRiskManagementPlan: (context: string) => Promise; export declare const getAiCostManagementPlan: (context: string) => Promise; export declare const getAiQualityManagementPlan: (context: string) => Promise; export declare const getAiResourceManagementPlan: (context: string) => Promise; export declare const getAiCommunicationManagementPlan: (context: string) => Promise; export declare const getAiProcurementManagementPlan: (context: string) => Promise; export declare const getAiStakeholderEngagementPlan: (context: string) => Promise; export declare const getAiStakeholderRegister: (context: string) => Promise; export declare const getAiStakeholderAnalysis: (context: string) => Promise; export declare const getAiWbs: (context: string) => Promise; export declare const getAiWbsDictionary: (context: string) => Promise; export declare const getAiActivityList: (context: string) => Promise; export declare const getAiActivityDurationEstimates: (context: string) => Promise; export declare const getAiActivityResourceEstimates: (context: string) => Promise; export declare const getAiScheduleNetworkDiagram: (context: string) => Promise; export declare const getAiMilestoneList: (context: string) => Promise; export declare const getAiDevelopScheduleInput: (context: string) => Promise; export declare const getAiDataModelSuggestions: (context: string) => Promise; export declare const getAiTechStackAnalysis: (context: string) => Promise; export declare const getAiRiskAnalysis: (context: string) => Promise; export declare const getAiAcceptanceCriteria: (context: string) => Promise; export declare const getAiComplianceConsiderations: (context: string) => Promise; export declare const getAiUiUxConsiderations: (context: string) => Promise; export declare const getAiTechnicalRecommendations: (context: string) => Promise; export declare const getAiTechnologySelectionCriteria: (context: string) => Promise; export declare const getAiTechnicalImplementationRoadmap: (context: string) => Promise; export declare const getAiTechnologyGovernanceFramework: (context: string) => Promise; export declare const getAiDmbokDataManagementStrategy: (context: string) => Promise; //# sourceMappingURL=index.d.ts.map