@girardmedia/bootspring 2.0.37 → 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/visualize.js +171 -1
- package/core/coherence/index.js +15 -1
- package/core/coherence/semantic-analyzer.js +836 -0
- package/generators/visual-doc-generator.js +910 -0
- package/intelligence/index.js +14 -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
|
@@ -19,6 +19,7 @@ const agentCollab = require('./agent-collab');
|
|
|
19
19
|
const contentGen = require('./content-gen');
|
|
20
20
|
const crossProject = require('./cross-project');
|
|
21
21
|
const agentRouter = require('./agent-router');
|
|
22
|
+
const modelContextOptimizer = require('./model-context-optimizer');
|
|
22
23
|
|
|
23
24
|
module.exports = {
|
|
24
25
|
// Orchestrator functions
|
|
@@ -274,5 +275,17 @@ module.exports = {
|
|
|
274
275
|
// Constants
|
|
275
276
|
PHASE_AGENTS: orchestrator.PHASE_AGENTS,
|
|
276
277
|
TECHNICAL_TRIGGERS: orchestrator.TECHNICAL_TRIGGERS,
|
|
277
|
-
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
|
|
278
291
|
};
|