@girardmedia/bootspring 2.0.36 → 2.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,8 @@ const workflowComposer = require('./workflow-composer');
18
18
  const agentCollab = require('./agent-collab');
19
19
  const contentGen = require('./content-gen');
20
20
  const crossProject = require('./cross-project');
21
+ const agentRouter = require('./agent-router');
22
+ const modelContextOptimizer = require('./model-context-optimizer');
21
23
 
22
24
  module.exports = {
23
25
  // Orchestrator functions
@@ -260,9 +262,30 @@ module.exports = {
260
262
  agentCollab,
261
263
  contentGen,
262
264
  crossProject,
265
+ agentRouter,
266
+
267
+ // Agent Router - Intelligent task routing
268
+ routeTask: agentRouter.IntelligentAgentRouter.prototype.route,
269
+ createAgentRouter: (options) => new agentRouter.IntelligentAgentRouter(options),
270
+ IntelligentAgentRouter: agentRouter.IntelligentAgentRouter,
271
+ EXPERTISE_DOMAINS: agentRouter.EXPERTISE_DOMAINS,
272
+ COMPLEXITY_FACTORS: agentRouter.COMPLEXITY_FACTORS,
273
+ COLLABORATION_PATTERNS: agentRouter.COLLABORATION_PATTERNS,
263
274
 
264
275
  // Constants
265
276
  PHASE_AGENTS: orchestrator.PHASE_AGENTS,
266
277
  TECHNICAL_TRIGGERS: orchestrator.TECHNICAL_TRIGGERS,
267
- WORKFLOWS: orchestrator.WORKFLOWS
278
+ WORKFLOWS: orchestrator.WORKFLOWS,
279
+
280
+ // Model Context Optimizer - Multi-model support
281
+ ModelContextOptimizer: modelContextOptimizer.ModelContextOptimizer,
282
+ createModelContextOptimizer: (options) => new modelContextOptimizer.ModelContextOptimizer(options),
283
+ listSupportedModels: modelContextOptimizer.listSupportedModels,
284
+ getModelConfig: modelContextOptimizer.getModelConfig,
285
+ MODEL_CONFIGS: modelContextOptimizer.MODEL_CONFIGS,
286
+ SECTION_PRIORITIES: modelContextOptimizer.SECTION_PRIORITIES,
287
+ TOKEN_RATIOS: modelContextOptimizer.TOKEN_RATIOS,
288
+
289
+ // Full module reference
290
+ modelContextOptimizer
268
291
  };