@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.
- package/cli/analyze.js +312 -0
- package/cli/generate.js +182 -1
- package/cli/plan.js +602 -2
- package/cli/visualize.js +171 -1
- package/core/coherence/index.js +15 -1
- package/core/coherence/semantic-analyzer.js +836 -0
- 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/generators/visual-doc-generator.js +910 -0
- package/intelligence/agent-router.js +795 -0
- package/intelligence/index.js +24 -1
- package/intelligence/model-context-optimizer.js +704 -0
- package/mcp/contracts/mcp-contract.v1.json +1 -1
- package/package.json +1 -1
package/intelligence/index.js
CHANGED
|
@@ -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
|
};
|