@girardmedia/bootspring 2.0.36 → 2.0.37
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.
- package/cli/plan.js +602 -2
- package/core/planning/adaptive-engine.js +958 -0
- package/core/planning/feature-decomposer.js +772 -0
- package/core/planning/index.js +49 -0
- package/core/planning/simulator.js +1328 -0
- package/core/planning/stage-planner.js +624 -0
- package/intelligence/agent-router.js +795 -0
- package/intelligence/index.js +10 -0
- package/mcp/contracts/mcp-contract.v1.json +1 -1
- package/package.json +1 -1
package/intelligence/index.js
CHANGED
|
@@ -18,6 +18,7 @@ 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');
|
|
21
22
|
|
|
22
23
|
module.exports = {
|
|
23
24
|
// Orchestrator functions
|
|
@@ -260,6 +261,15 @@ module.exports = {
|
|
|
260
261
|
agentCollab,
|
|
261
262
|
contentGen,
|
|
262
263
|
crossProject,
|
|
264
|
+
agentRouter,
|
|
265
|
+
|
|
266
|
+
// Agent Router - Intelligent task routing
|
|
267
|
+
routeTask: agentRouter.IntelligentAgentRouter.prototype.route,
|
|
268
|
+
createAgentRouter: (options) => new agentRouter.IntelligentAgentRouter(options),
|
|
269
|
+
IntelligentAgentRouter: agentRouter.IntelligentAgentRouter,
|
|
270
|
+
EXPERTISE_DOMAINS: agentRouter.EXPERTISE_DOMAINS,
|
|
271
|
+
COMPLEXITY_FACTORS: agentRouter.COMPLEXITY_FACTORS,
|
|
272
|
+
COLLABORATION_PATTERNS: agentRouter.COLLABORATION_PATTERNS,
|
|
263
273
|
|
|
264
274
|
// Constants
|
|
265
275
|
PHASE_AGENTS: orchestrator.PHASE_AGENTS,
|
package/package.json
CHANGED