/** * Frameworks barrel — registers all 11 unified framework facades with the FrameworkRouter. * * T-038 + T-039–T-045: Framework consolidation */ export { FrameworkRouter, frameworkRouter } from "./registry.js"; export type { FrameworkDefinition } from "./types.js"; import { agentOrchestrationFramework } from "./agent-orchestration/index.js"; import { codeQualityFramework } from "./code-quality/index.js"; import { designArchitectureFramework } from "./design-architecture/index.js"; import { documentationFramework } from "./documentation/index.js"; import { projectManagementFramework } from "./project-management/index.js"; import { promptEngineeringFramework } from "./prompt-engineering/index.js"; import { promptOptimizationFramework } from "./prompt-optimization/index.js"; import { securityFramework } from "./security/index.js"; import { strategicPlanningFramework } from "./strategic-planning/index.js"; import { testingFramework } from "./testing/index.js"; import { visualizationFramework } from "./visualization/index.js"; export { promptEngineeringFramework, codeQualityFramework, designArchitectureFramework, securityFramework, testingFramework, documentationFramework, strategicPlanningFramework, agentOrchestrationFramework, promptOptimizationFramework, visualizationFramework, projectManagementFramework, }; //# sourceMappingURL=index.d.ts.map