agentic-flow 2.0.0-alpha → 2.0.1-alpha

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.
Files changed (81) hide show
  1. package/README.md +320 -23
  2. package/agentic-flow/.claude/agents/base-template-generator.md +229 -3
  3. package/agentic-flow/.claude/agents/core/coder.md +212 -7
  4. package/agentic-flow/.claude/agents/core/planner.md +228 -7
  5. package/agentic-flow/.claude/agents/core/researcher.md +205 -10
  6. package/agentic-flow/.claude/agents/core/reviewer.md +216 -5
  7. package/agentic-flow/.claude/agents/core/tester.md +213 -3
  8. package/agentic-flow/.claude/agents/data/ml/data-ml-model.md +256 -5
  9. package/agentic-flow/.claude/agents/development/backend/dev-backend-api.md +209 -6
  10. package/agentic-flow/.claude/agents/documentation/api-docs/docs-api-openapi.md +185 -5
  11. package/agentic-flow/.claude/agents/github/code-review-swarm.md +307 -468
  12. package/agentic-flow/.claude/agents/github/issue-tracker.md +270 -13
  13. package/agentic-flow/.claude/agents/github/pr-manager.md +259 -12
  14. package/agentic-flow/.claude/agents/github/release-manager.md +253 -15
  15. package/agentic-flow/.claude/agents/github/workflow-automation.md +277 -9
  16. package/agentic-flow/.claude/agents/sona/sona-learning-optimizer.md +496 -0
  17. package/agentic-flow/.claude/agents/sparc/architecture.md +231 -4
  18. package/agentic-flow/.claude/agents/sparc/pseudocode.md +206 -4
  19. package/agentic-flow/.claude/agents/sparc/refinement.md +283 -6
  20. package/agentic-flow/.claude/agents/sparc/specification.md +205 -3
  21. package/agentic-flow/.claude/agents/swarm/adaptive-coordinator.md +731 -0
  22. package/agentic-flow/.claude/agents/swarm/hierarchical-coordinator.md +455 -1
  23. package/agentic-flow/.claude/agents/swarm/mesh-coordinator.md +571 -0
  24. package/agentic-flow/.claude/agents/templates/sparc-coordinator.md +336 -5
  25. package/agentic-flow/dist/cli/commands/sona-train.d.ts.map +1 -0
  26. package/agentic-flow/dist/cli/commands/sona-train.js +295 -0
  27. package/agentic-flow/dist/cli/commands/sona-train.js.map +1 -0
  28. package/agentic-flow/dist/cli/commands/sona.d.ts.map +1 -0
  29. package/agentic-flow/dist/cli/commands/sona.js +290 -0
  30. package/agentic-flow/dist/cli/commands/sona.js.map +1 -0
  31. package/agentic-flow/dist/core/agentdb-fast.d.ts.map +1 -0
  32. package/agentic-flow/dist/core/agentdb-fast.js +299 -0
  33. package/agentic-flow/dist/core/agentdb-fast.js.map +1 -0
  34. package/agentic-flow/dist/core/attention-fallbacks.d.ts.map +1 -0
  35. package/agentic-flow/dist/core/attention-fallbacks.js +321 -0
  36. package/agentic-flow/dist/core/attention-fallbacks.js.map +1 -0
  37. package/agentic-flow/dist/core/embedding-service.d.ts.map +1 -0
  38. package/agentic-flow/dist/core/embedding-service.js +370 -0
  39. package/agentic-flow/dist/core/embedding-service.js.map +1 -0
  40. package/agentic-flow/dist/core/gnn-wrapper.d.ts.map +1 -0
  41. package/agentic-flow/dist/core/gnn-wrapper.js +236 -0
  42. package/agentic-flow/dist/core/gnn-wrapper.js.map +1 -0
  43. package/agentic-flow/dist/core/index.d.ts.map +1 -1
  44. package/agentic-flow/dist/core/index.js +80 -3
  45. package/agentic-flow/dist/core/index.js.map +1 -1
  46. package/agentic-flow/dist/mcp/claudeFlowSdkServer.d.ts.map +1 -1
  47. package/agentic-flow/dist/mcp/claudeFlowSdkServer.js +109 -0
  48. package/agentic-flow/dist/mcp/claudeFlowSdkServer.js.map +1 -1
  49. package/agentic-flow/dist/mcp/tools/agent-booster-tools.d.ts.map +1 -0
  50. package/agentic-flow/dist/mcp/tools/agent-booster-tools.js +262 -0
  51. package/agentic-flow/dist/mcp/tools/agent-booster-tools.js.map +1 -0
  52. package/agentic-flow/dist/mcp/tools/sona-tools.d.ts.map +1 -0
  53. package/agentic-flow/dist/mcp/tools/sona-tools.js +560 -0
  54. package/agentic-flow/dist/mcp/tools/sona-tools.js.map +1 -0
  55. package/agentic-flow/dist/optimizations/agent-booster-migration.d.ts.map +1 -0
  56. package/agentic-flow/dist/optimizations/agent-booster-migration.js +323 -0
  57. package/agentic-flow/dist/optimizations/agent-booster-migration.js.map +1 -0
  58. package/agentic-flow/dist/optimizations/configuration-tuning.d.ts.map +1 -0
  59. package/agentic-flow/dist/optimizations/configuration-tuning.js +422 -0
  60. package/agentic-flow/dist/optimizations/configuration-tuning.js.map +1 -0
  61. package/agentic-flow/dist/optimizations/ruvector-backend.d.ts.map +1 -0
  62. package/agentic-flow/dist/optimizations/ruvector-backend.js +464 -0
  63. package/agentic-flow/dist/optimizations/ruvector-backend.js.map +1 -0
  64. package/agentic-flow/dist/services/embedding-service.d.ts.map +1 -0
  65. package/agentic-flow/dist/services/embedding-service.js +367 -0
  66. package/agentic-flow/dist/services/embedding-service.js.map +1 -0
  67. package/agentic-flow/dist/services/sona-agent-training.d.ts.map +1 -0
  68. package/agentic-flow/dist/services/sona-agent-training.js +382 -0
  69. package/agentic-flow/dist/services/sona-agent-training.js.map +1 -0
  70. package/agentic-flow/dist/services/sona-agentdb-integration.d.ts.map +1 -0
  71. package/agentic-flow/dist/services/sona-agentdb-integration.js +346 -0
  72. package/agentic-flow/dist/services/sona-agentdb-integration.js.map +1 -0
  73. package/agentic-flow/dist/services/sona-service.d.ts.map +1 -0
  74. package/agentic-flow/dist/services/sona-service.js +448 -0
  75. package/agentic-flow/dist/services/sona-service.js.map +1 -0
  76. package/agentic-flow/dist/services/sona-types.d.ts.map +1 -0
  77. package/agentic-flow/dist/services/sona-types.js +59 -0
  78. package/agentic-flow/dist/services/sona-types.js.map +1 -0
  79. package/docs/README.md +27 -2
  80. package/package.json +12 -2
  81. package/docs/AGENTIC_JUJUTSU_QUICKSTART.md +0 -491
@@ -0,0 +1,560 @@
1
+ /**
2
+ * SONA MCP Tools
3
+ *
4
+ * Model Context Protocol tools for SONA (Self-Optimizing Neural Architecture)
5
+ * Provides trajectory management, pattern discovery, and learning operations
6
+ */
7
+ import { sonaService, sonaServices } from '../../services/sona-service';
8
+ /**
9
+ * SONA MCP Tools
10
+ */
11
+ export const sonaMCPTools = [
12
+ // Trajectory Management
13
+ {
14
+ name: 'sona_trajectory_begin',
15
+ description: 'Begin a new SONA learning trajectory. Returns trajectory ID for subsequent operations.',
16
+ inputSchema: {
17
+ type: 'object',
18
+ properties: {
19
+ embedding: {
20
+ type: 'array',
21
+ items: { type: 'number' },
22
+ description: 'Embedding vector (1536D for OpenAI, 3072D for Phi-4)'
23
+ },
24
+ route: {
25
+ type: 'string',
26
+ description: 'LLM model route (e.g., claude-sonnet-4-5, gpt-4-turbo)'
27
+ },
28
+ profile: {
29
+ type: 'string',
30
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
31
+ description: 'SONA profile to use (default: balanced)'
32
+ }
33
+ },
34
+ required: ['embedding']
35
+ }
36
+ },
37
+ {
38
+ name: 'sona_trajectory_step',
39
+ description: 'Add a step to an active trajectory with activations, attention weights, and reward.',
40
+ inputSchema: {
41
+ type: 'object',
42
+ properties: {
43
+ trajectoryId: {
44
+ type: 'string',
45
+ description: 'Trajectory ID from sona_trajectory_begin'
46
+ },
47
+ activations: {
48
+ type: 'array',
49
+ items: { type: 'number' },
50
+ description: 'Layer activations (3072D for Phi-4)'
51
+ },
52
+ attentionWeights: {
53
+ type: 'array',
54
+ items: { type: 'number' },
55
+ description: 'Attention weights (40 layers for Phi-4)'
56
+ },
57
+ reward: {
58
+ type: 'number',
59
+ minimum: 0,
60
+ maximum: 1,
61
+ description: 'Reward score (0-1)'
62
+ }
63
+ },
64
+ required: ['trajectoryId', 'activations', 'attentionWeights', 'reward']
65
+ }
66
+ },
67
+ {
68
+ name: 'sona_trajectory_context',
69
+ description: 'Add context metadata to a trajectory (e.g., task type, domain).',
70
+ inputSchema: {
71
+ type: 'object',
72
+ properties: {
73
+ trajectoryId: {
74
+ type: 'string',
75
+ description: 'Trajectory ID'
76
+ },
77
+ contextId: {
78
+ type: 'string',
79
+ description: 'Context identifier (e.g., code-review, data-analysis)'
80
+ }
81
+ },
82
+ required: ['trajectoryId', 'contextId']
83
+ }
84
+ },
85
+ {
86
+ name: 'sona_trajectory_end',
87
+ description: 'End a trajectory with final quality score. Triggers learning if capacity threshold reached.',
88
+ inputSchema: {
89
+ type: 'object',
90
+ properties: {
91
+ trajectoryId: {
92
+ type: 'string',
93
+ description: 'Trajectory ID'
94
+ },
95
+ qualityScore: {
96
+ type: 'number',
97
+ minimum: 0,
98
+ maximum: 1,
99
+ description: 'Overall quality score (0-1)'
100
+ }
101
+ },
102
+ required: ['trajectoryId', 'qualityScore']
103
+ }
104
+ },
105
+ {
106
+ name: 'sona_trajectory_list',
107
+ description: 'List all active trajectories.',
108
+ inputSchema: {
109
+ type: 'object',
110
+ properties: {
111
+ profile: {
112
+ type: 'string',
113
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
114
+ description: 'Filter by profile (optional)'
115
+ }
116
+ }
117
+ }
118
+ },
119
+ // Pattern Discovery
120
+ {
121
+ name: 'sona_pattern_find',
122
+ description: 'Find similar patterns using k-NN search. Recommended k=3 for 761 decisions/sec throughput.',
123
+ inputSchema: {
124
+ type: 'object',
125
+ properties: {
126
+ query: {
127
+ type: 'array',
128
+ items: { type: 'number' },
129
+ description: 'Query embedding vector'
130
+ },
131
+ k: {
132
+ type: 'number',
133
+ default: 3,
134
+ minimum: 1,
135
+ maximum: 20,
136
+ description: 'Number of patterns to retrieve (default: 3)'
137
+ },
138
+ profile: {
139
+ type: 'string',
140
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
141
+ description: 'SONA profile (default: balanced)'
142
+ }
143
+ },
144
+ required: ['query']
145
+ }
146
+ },
147
+ // LoRA Application
148
+ {
149
+ name: 'sona_apply_micro_lora',
150
+ description: 'Apply Micro-LoRA adaptation to input vector. Sub-millisecond latency.',
151
+ inputSchema: {
152
+ type: 'object',
153
+ properties: {
154
+ input: {
155
+ type: 'array',
156
+ items: { type: 'number' },
157
+ description: 'Input vector (3072D for Phi-4)'
158
+ },
159
+ profile: {
160
+ type: 'string',
161
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
162
+ description: 'SONA profile (default: balanced)'
163
+ }
164
+ },
165
+ required: ['input']
166
+ }
167
+ },
168
+ {
169
+ name: 'sona_apply_base_lora',
170
+ description: 'Apply Base-LoRA adaptation to layer. 0.452ms per-layer cost.',
171
+ inputSchema: {
172
+ type: 'object',
173
+ properties: {
174
+ layerIndex: {
175
+ type: 'number',
176
+ minimum: 0,
177
+ maximum: 39,
178
+ description: 'Layer index (0-39 for Phi-4)'
179
+ },
180
+ input: {
181
+ type: 'array',
182
+ items: { type: 'number' },
183
+ description: 'Input vector (3072D for Phi-4)'
184
+ },
185
+ profile: {
186
+ type: 'string',
187
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
188
+ description: 'SONA profile (default: balanced)'
189
+ }
190
+ },
191
+ required: ['layerIndex', 'input']
192
+ }
193
+ },
194
+ // Learning Control
195
+ {
196
+ name: 'sona_force_learn',
197
+ description: 'Force learning cycle. Recommended when trajectory capacity reaches 80% utilization.',
198
+ inputSchema: {
199
+ type: 'object',
200
+ properties: {
201
+ profile: {
202
+ type: 'string',
203
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
204
+ description: 'SONA profile (default: balanced)'
205
+ }
206
+ }
207
+ }
208
+ },
209
+ // Statistics & Monitoring
210
+ {
211
+ name: 'sona_get_stats',
212
+ description: 'Get SONA service statistics including trajectories, performance, and configuration.',
213
+ inputSchema: {
214
+ type: 'object',
215
+ properties: {
216
+ profile: {
217
+ type: 'string',
218
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
219
+ description: 'SONA profile (default: balanced)'
220
+ },
221
+ engineStats: {
222
+ type: 'boolean',
223
+ default: false,
224
+ description: 'Include engine-level statistics'
225
+ }
226
+ }
227
+ }
228
+ },
229
+ // Profile Management
230
+ {
231
+ name: 'sona_get_profile',
232
+ description: 'Get SONA profile configuration details.',
233
+ inputSchema: {
234
+ type: 'object',
235
+ properties: {
236
+ profile: {
237
+ type: 'string',
238
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
239
+ description: 'Profile name'
240
+ }
241
+ },
242
+ required: ['profile']
243
+ }
244
+ },
245
+ {
246
+ name: 'sona_list_profiles',
247
+ description: 'List all available SONA profiles with their characteristics.',
248
+ inputSchema: {
249
+ type: 'object',
250
+ properties: {}
251
+ }
252
+ },
253
+ // Engine Control
254
+ {
255
+ name: 'sona_set_enabled',
256
+ description: 'Enable or disable SONA engine.',
257
+ inputSchema: {
258
+ type: 'object',
259
+ properties: {
260
+ enabled: {
261
+ type: 'boolean',
262
+ description: 'Enable (true) or disable (false)'
263
+ },
264
+ profile: {
265
+ type: 'string',
266
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
267
+ description: 'SONA profile (default: balanced)'
268
+ }
269
+ },
270
+ required: ['enabled']
271
+ }
272
+ },
273
+ // Benchmarking
274
+ {
275
+ name: 'sona_benchmark',
276
+ description: 'Run SONA performance benchmark. Expected: 2211 ops/sec, <0.5ms latency.',
277
+ inputSchema: {
278
+ type: 'object',
279
+ properties: {
280
+ iterations: {
281
+ type: 'number',
282
+ default: 1000,
283
+ minimum: 100,
284
+ maximum: 10000,
285
+ description: 'Number of benchmark iterations'
286
+ },
287
+ profile: {
288
+ type: 'string',
289
+ enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],
290
+ description: 'SONA profile (default: balanced)'
291
+ }
292
+ }
293
+ }
294
+ }
295
+ ];
296
+ /**
297
+ * MCP Tool Handlers
298
+ */
299
+ export const sonaMCPHandlers = {
300
+ sona_trajectory_begin: async (params) => {
301
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
302
+ const trajectoryId = service.beginTrajectory(params.embedding, params.route);
303
+ return {
304
+ success: true,
305
+ trajectoryId,
306
+ route: params.route,
307
+ profile: params.profile || 'balanced'
308
+ };
309
+ },
310
+ sona_trajectory_step: async (params) => {
311
+ sonaService.addTrajectoryStep(params.trajectoryId, params.activations, params.attentionWeights, params.reward);
312
+ return {
313
+ success: true,
314
+ trajectoryId: params.trajectoryId,
315
+ reward: params.reward
316
+ };
317
+ },
318
+ sona_trajectory_context: async (params) => {
319
+ sonaService.addTrajectoryContext(params.trajectoryId, params.contextId);
320
+ return {
321
+ success: true,
322
+ trajectoryId: params.trajectoryId,
323
+ contextId: params.contextId
324
+ };
325
+ },
326
+ sona_trajectory_end: async (params) => {
327
+ sonaService.endTrajectory(params.trajectoryId, params.qualityScore);
328
+ const stats = sonaService.getStats();
329
+ return {
330
+ success: true,
331
+ trajectoryId: params.trajectoryId,
332
+ qualityScore: params.qualityScore,
333
+ learningTriggered: stats.trajectoryUtilization >= 0.8
334
+ };
335
+ },
336
+ sona_trajectory_list: async (params) => {
337
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
338
+ const active = service.getActiveTrajectories();
339
+ return {
340
+ count: active.length,
341
+ trajectories: active.map(t => ({
342
+ id: t.id,
343
+ route: t.route,
344
+ steps: t.steps.length,
345
+ contexts: t.contexts.length,
346
+ durationMs: Date.now() - t.startTime
347
+ }))
348
+ };
349
+ },
350
+ sona_pattern_find: async (params) => {
351
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
352
+ const patterns = service.findPatterns(params.query, params.k || 3);
353
+ return {
354
+ count: patterns.length,
355
+ patterns: patterns.map(p => ({
356
+ id: p.id,
357
+ patternType: p.patternType,
358
+ clusterSize: p.clusterSize,
359
+ avgQuality: p.avgQuality,
360
+ similarity: p.similarity
361
+ }))
362
+ };
363
+ },
364
+ sona_apply_micro_lora: async (params) => {
365
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
366
+ const start = Date.now();
367
+ const output = service.applyMicroLora(params.input);
368
+ const latencyMs = Date.now() - start;
369
+ return {
370
+ output,
371
+ latencyMs,
372
+ inputDim: params.input.length,
373
+ outputDim: output.length
374
+ };
375
+ },
376
+ sona_apply_base_lora: async (params) => {
377
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
378
+ const start = Date.now();
379
+ const output = service.applyBaseLora(params.layerIndex, params.input);
380
+ const latencyMs = Date.now() - start;
381
+ return {
382
+ output,
383
+ latencyMs,
384
+ layerIndex: params.layerIndex,
385
+ inputDim: params.input.length,
386
+ outputDim: output.length
387
+ };
388
+ },
389
+ sona_force_learn: async (params) => {
390
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
391
+ const result = service.forceLearn();
392
+ return {
393
+ success: result.success,
394
+ patternsLearned: result.patternsLearned,
395
+ profile: params.profile || 'balanced'
396
+ };
397
+ },
398
+ sona_get_stats: async (params) => {
399
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
400
+ const stats = service.getStats();
401
+ const result = {
402
+ profile: params.profile || 'balanced',
403
+ trajectories: {
404
+ total: stats.totalTrajectories,
405
+ active: stats.activeTrajectories,
406
+ completed: stats.completedTrajectories,
407
+ utilization: stats.trajectoryUtilization
408
+ },
409
+ performance: {
410
+ avgQualityScore: stats.avgQualityScore,
411
+ totalOpsProcessed: stats.totalOpsProcessed,
412
+ opsPerSecond: stats.opsPerSecond,
413
+ learningCycles: stats.totalLearningCycles
414
+ },
415
+ configuration: stats.config
416
+ };
417
+ if (params.engineStats) {
418
+ result.engineStats = service.getEngineStats();
419
+ }
420
+ return result;
421
+ },
422
+ sona_get_profile: async (params) => {
423
+ const service = sonaServices[params.profile];
424
+ if (!service) {
425
+ throw new Error(`Unknown profile: ${params.profile}`);
426
+ }
427
+ const stats = service.getStats();
428
+ return {
429
+ profile: params.profile,
430
+ configuration: stats.config,
431
+ characteristics: getProfileCharacteristics(params.profile)
432
+ };
433
+ },
434
+ sona_list_profiles: async () => {
435
+ return {
436
+ profiles: [
437
+ {
438
+ name: 'real-time',
439
+ description: '2200 ops/sec, <0.5ms latency',
440
+ config: 'Rank-2, 25 clusters, 0.7 threshold',
441
+ useCase: 'Low-latency applications'
442
+ },
443
+ {
444
+ name: 'batch',
445
+ description: 'Balance throughput and adaptation',
446
+ config: 'Rank-2, rank-8, 5000 capacity',
447
+ useCase: 'Batch processing workflows'
448
+ },
449
+ {
450
+ name: 'research',
451
+ description: '+55% quality improvement',
452
+ config: 'Rank-16 base, LR 0.002, 0.2 threshold',
453
+ useCase: 'Maximum quality, research'
454
+ },
455
+ {
456
+ name: 'edge',
457
+ description: '<5MB memory footprint',
458
+ config: 'Rank-1, 200 capacity, 15 clusters',
459
+ useCase: 'Edge devices, mobile'
460
+ },
461
+ {
462
+ name: 'balanced',
463
+ description: '18ms overhead, +25% quality',
464
+ config: 'Rank-2, rank-8, 0.4 threshold',
465
+ useCase: 'General-purpose (default)'
466
+ }
467
+ ]
468
+ };
469
+ },
470
+ sona_set_enabled: async (params) => {
471
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
472
+ service.setEnabled(params.enabled);
473
+ return {
474
+ success: true,
475
+ enabled: params.enabled,
476
+ profile: params.profile || 'balanced'
477
+ };
478
+ },
479
+ sona_benchmark: async (params) => {
480
+ const service = params.profile ? sonaServices[params.profile] : sonaService;
481
+ const iterations = params.iterations || 1000;
482
+ // Benchmark Micro-LoRA
483
+ const input = Array.from({ length: 3072 }, () => Math.random());
484
+ const startMicro = Date.now();
485
+ for (let i = 0; i < iterations; i++) {
486
+ service.applyMicroLora(input);
487
+ }
488
+ const microTime = Date.now() - startMicro;
489
+ const microLatency = microTime / iterations;
490
+ const microOpsPerSec = (iterations / microTime) * 1000;
491
+ // Benchmark Base-LoRA
492
+ const startBase = Date.now();
493
+ for (let i = 0; i < iterations; i++) {
494
+ service.applyBaseLora(10, input);
495
+ }
496
+ const baseTime = Date.now() - startBase;
497
+ const baseLatency = baseTime / iterations;
498
+ const baseOpsPerSec = (iterations / baseTime) * 1000;
499
+ return {
500
+ iterations,
501
+ profile: params.profile || 'balanced',
502
+ microLora: {
503
+ totalTimeMs: microTime,
504
+ avgLatencyMs: microLatency,
505
+ opsPerSec: microOpsPerSec
506
+ },
507
+ baseLora: {
508
+ totalTimeMs: baseTime,
509
+ avgLatencyMs: baseLatency,
510
+ opsPerSec: baseOpsPerSec
511
+ },
512
+ expected: {
513
+ targetThroughput: 2211,
514
+ targetLatency: 0.5,
515
+ perLayerCost: 0.452
516
+ },
517
+ meetsTarget: microOpsPerSec >= 1000
518
+ };
519
+ }
520
+ };
521
+ /**
522
+ * Get profile characteristics
523
+ */
524
+ function getProfileCharacteristics(profile) {
525
+ const characteristics = {
526
+ 'real-time': {
527
+ throughput: '2200 ops/sec',
528
+ latency: '<0.5ms',
529
+ memory: '~20MB',
530
+ qualityGain: '+15%'
531
+ },
532
+ 'batch': {
533
+ throughput: '1800 ops/sec',
534
+ latency: '~1ms',
535
+ memory: '~50MB',
536
+ qualityGain: '+25%'
537
+ },
538
+ 'research': {
539
+ throughput: '1000 ops/sec',
540
+ latency: '~2ms',
541
+ memory: '~100MB',
542
+ qualityGain: '+55%'
543
+ },
544
+ 'edge': {
545
+ throughput: '500 ops/sec',
546
+ latency: '~2ms',
547
+ memory: '<5MB',
548
+ qualityGain: '+10%'
549
+ },
550
+ 'balanced': {
551
+ throughput: '1500 ops/sec',
552
+ latency: '~1ms',
553
+ memory: '~50MB',
554
+ qualityGain: '+25%'
555
+ }
556
+ };
557
+ return characteristics[profile];
558
+ }
559
+ export default sonaMCPTools;
560
+ //# sourceMappingURL=sona-tools.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sona-tools.js","sourceRoot":"","sources":["../../../src/mcp/tools/sona-tools.ts"],"names":[],"mappings":"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","sourcesContent":["/**\n * SONA MCP Tools\n *\n * Model Context Protocol tools for SONA (Self-Optimizing Neural Architecture)\n * Provides trajectory management, pattern discovery, and learning operations\n */\n\nimport {\n sonaService,\n sonaServices,\n createSONAService,\n SONAProfile\n} from '../../services/sona-service';\n\nexport interface MCPTool {\n name: string;\n description: string;\n inputSchema: {\n type: string;\n properties: Record<string, any>;\n required?: string[];\n };\n}\n\n/**\n * SONA MCP Tools\n */\nexport const sonaMCPTools: MCPTool[] = [\n // Trajectory Management\n {\n name: 'sona_trajectory_begin',\n description: 'Begin a new SONA learning trajectory. Returns trajectory ID for subsequent operations.',\n inputSchema: {\n type: 'object',\n properties: {\n embedding: {\n type: 'array',\n items: { type: 'number' },\n description: 'Embedding vector (1536D for OpenAI, 3072D for Phi-4)'\n },\n route: {\n type: 'string',\n description: 'LLM model route (e.g., claude-sonnet-4-5, gpt-4-turbo)'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile to use (default: balanced)'\n }\n },\n required: ['embedding']\n }\n },\n\n {\n name: 'sona_trajectory_step',\n description: 'Add a step to an active trajectory with activations, attention weights, and reward.',\n inputSchema: {\n type: 'object',\n properties: {\n trajectoryId: {\n type: 'string',\n description: 'Trajectory ID from sona_trajectory_begin'\n },\n activations: {\n type: 'array',\n items: { type: 'number' },\n description: 'Layer activations (3072D for Phi-4)'\n },\n attentionWeights: {\n type: 'array',\n items: { type: 'number' },\n description: 'Attention weights (40 layers for Phi-4)'\n },\n reward: {\n type: 'number',\n minimum: 0,\n maximum: 1,\n description: 'Reward score (0-1)'\n }\n },\n required: ['trajectoryId', 'activations', 'attentionWeights', 'reward']\n }\n },\n\n {\n name: 'sona_trajectory_context',\n description: 'Add context metadata to a trajectory (e.g., task type, domain).',\n inputSchema: {\n type: 'object',\n properties: {\n trajectoryId: {\n type: 'string',\n description: 'Trajectory ID'\n },\n contextId: {\n type: 'string',\n description: 'Context identifier (e.g., code-review, data-analysis)'\n }\n },\n required: ['trajectoryId', 'contextId']\n }\n },\n\n {\n name: 'sona_trajectory_end',\n description: 'End a trajectory with final quality score. Triggers learning if capacity threshold reached.',\n inputSchema: {\n type: 'object',\n properties: {\n trajectoryId: {\n type: 'string',\n description: 'Trajectory ID'\n },\n qualityScore: {\n type: 'number',\n minimum: 0,\n maximum: 1,\n description: 'Overall quality score (0-1)'\n }\n },\n required: ['trajectoryId', 'qualityScore']\n }\n },\n\n {\n name: 'sona_trajectory_list',\n description: 'List all active trajectories.',\n inputSchema: {\n type: 'object',\n properties: {\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'Filter by profile (optional)'\n }\n }\n }\n },\n\n // Pattern Discovery\n {\n name: 'sona_pattern_find',\n description: 'Find similar patterns using k-NN search. Recommended k=3 for 761 decisions/sec throughput.',\n inputSchema: {\n type: 'object',\n properties: {\n query: {\n type: 'array',\n items: { type: 'number' },\n description: 'Query embedding vector'\n },\n k: {\n type: 'number',\n default: 3,\n minimum: 1,\n maximum: 20,\n description: 'Number of patterns to retrieve (default: 3)'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n },\n required: ['query']\n }\n },\n\n // LoRA Application\n {\n name: 'sona_apply_micro_lora',\n description: 'Apply Micro-LoRA adaptation to input vector. Sub-millisecond latency.',\n inputSchema: {\n type: 'object',\n properties: {\n input: {\n type: 'array',\n items: { type: 'number' },\n description: 'Input vector (3072D for Phi-4)'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n },\n required: ['input']\n }\n },\n\n {\n name: 'sona_apply_base_lora',\n description: 'Apply Base-LoRA adaptation to layer. 0.452ms per-layer cost.',\n inputSchema: {\n type: 'object',\n properties: {\n layerIndex: {\n type: 'number',\n minimum: 0,\n maximum: 39,\n description: 'Layer index (0-39 for Phi-4)'\n },\n input: {\n type: 'array',\n items: { type: 'number' },\n description: 'Input vector (3072D for Phi-4)'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n },\n required: ['layerIndex', 'input']\n }\n },\n\n // Learning Control\n {\n name: 'sona_force_learn',\n description: 'Force learning cycle. Recommended when trajectory capacity reaches 80% utilization.',\n inputSchema: {\n type: 'object',\n properties: {\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n }\n }\n },\n\n // Statistics & Monitoring\n {\n name: 'sona_get_stats',\n description: 'Get SONA service statistics including trajectories, performance, and configuration.',\n inputSchema: {\n type: 'object',\n properties: {\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n },\n engineStats: {\n type: 'boolean',\n default: false,\n description: 'Include engine-level statistics'\n }\n }\n }\n },\n\n // Profile Management\n {\n name: 'sona_get_profile',\n description: 'Get SONA profile configuration details.',\n inputSchema: {\n type: 'object',\n properties: {\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'Profile name'\n }\n },\n required: ['profile']\n }\n },\n\n {\n name: 'sona_list_profiles',\n description: 'List all available SONA profiles with their characteristics.',\n inputSchema: {\n type: 'object',\n properties: {}\n }\n },\n\n // Engine Control\n {\n name: 'sona_set_enabled',\n description: 'Enable or disable SONA engine.',\n inputSchema: {\n type: 'object',\n properties: {\n enabled: {\n type: 'boolean',\n description: 'Enable (true) or disable (false)'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n },\n required: ['enabled']\n }\n },\n\n // Benchmarking\n {\n name: 'sona_benchmark',\n description: 'Run SONA performance benchmark. Expected: 2211 ops/sec, <0.5ms latency.',\n inputSchema: {\n type: 'object',\n properties: {\n iterations: {\n type: 'number',\n default: 1000,\n minimum: 100,\n maximum: 10000,\n description: 'Number of benchmark iterations'\n },\n profile: {\n type: 'string',\n enum: ['real-time', 'batch', 'research', 'edge', 'balanced'],\n description: 'SONA profile (default: balanced)'\n }\n }\n }\n }\n];\n\n/**\n * MCP Tool Handlers\n */\nexport const sonaMCPHandlers = {\n sona_trajectory_begin: async (params: {\n embedding: number[];\n route?: string;\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const trajectoryId = service.beginTrajectory(params.embedding, params.route);\n\n return {\n success: true,\n trajectoryId,\n route: params.route,\n profile: params.profile || 'balanced'\n };\n },\n\n sona_trajectory_step: async (params: {\n trajectoryId: string;\n activations: number[];\n attentionWeights: number[];\n reward: number;\n }) => {\n sonaService.addTrajectoryStep(\n params.trajectoryId,\n params.activations,\n params.attentionWeights,\n params.reward\n );\n\n return {\n success: true,\n trajectoryId: params.trajectoryId,\n reward: params.reward\n };\n },\n\n sona_trajectory_context: async (params: {\n trajectoryId: string;\n contextId: string;\n }) => {\n sonaService.addTrajectoryContext(params.trajectoryId, params.contextId);\n\n return {\n success: true,\n trajectoryId: params.trajectoryId,\n contextId: params.contextId\n };\n },\n\n sona_trajectory_end: async (params: {\n trajectoryId: string;\n qualityScore: number;\n }) => {\n sonaService.endTrajectory(params.trajectoryId, params.qualityScore);\n\n const stats = sonaService.getStats();\n\n return {\n success: true,\n trajectoryId: params.trajectoryId,\n qualityScore: params.qualityScore,\n learningTriggered: stats.trajectoryUtilization >= 0.8\n };\n },\n\n sona_trajectory_list: async (params: { profile?: SONAProfile }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const active = service.getActiveTrajectories();\n\n return {\n count: active.length,\n trajectories: active.map(t => ({\n id: t.id,\n route: t.route,\n steps: t.steps.length,\n contexts: t.contexts.length,\n durationMs: Date.now() - t.startTime\n }))\n };\n },\n\n sona_pattern_find: async (params: {\n query: number[];\n k?: number;\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const patterns = service.findPatterns(params.query, params.k || 3);\n\n return {\n count: patterns.length,\n patterns: patterns.map(p => ({\n id: p.id,\n patternType: p.patternType,\n clusterSize: p.clusterSize,\n avgQuality: p.avgQuality,\n similarity: p.similarity\n }))\n };\n },\n\n sona_apply_micro_lora: async (params: {\n input: number[];\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const start = Date.now();\n const output = service.applyMicroLora(params.input);\n const latencyMs = Date.now() - start;\n\n return {\n output,\n latencyMs,\n inputDim: params.input.length,\n outputDim: output.length\n };\n },\n\n sona_apply_base_lora: async (params: {\n layerIndex: number;\n input: number[];\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const start = Date.now();\n const output = service.applyBaseLora(params.layerIndex, params.input);\n const latencyMs = Date.now() - start;\n\n return {\n output,\n latencyMs,\n layerIndex: params.layerIndex,\n inputDim: params.input.length,\n outputDim: output.length\n };\n },\n\n sona_force_learn: async (params: { profile?: SONAProfile }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const result = service.forceLearn();\n\n return {\n success: result.success,\n patternsLearned: result.patternsLearned,\n profile: params.profile || 'balanced'\n };\n },\n\n sona_get_stats: async (params: {\n profile?: SONAProfile;\n engineStats?: boolean;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const stats = service.getStats();\n\n const result: any = {\n profile: params.profile || 'balanced',\n trajectories: {\n total: stats.totalTrajectories,\n active: stats.activeTrajectories,\n completed: stats.completedTrajectories,\n utilization: stats.trajectoryUtilization\n },\n performance: {\n avgQualityScore: stats.avgQualityScore,\n totalOpsProcessed: stats.totalOpsProcessed,\n opsPerSecond: stats.opsPerSecond,\n learningCycles: stats.totalLearningCycles\n },\n configuration: stats.config\n };\n\n if (params.engineStats) {\n result.engineStats = service.getEngineStats();\n }\n\n return result;\n },\n\n sona_get_profile: async (params: { profile: SONAProfile }) => {\n const service = sonaServices[params.profile];\n if (!service) {\n throw new Error(`Unknown profile: ${params.profile}`);\n }\n\n const stats = service.getStats();\n\n return {\n profile: params.profile,\n configuration: stats.config,\n characteristics: getProfileCharacteristics(params.profile)\n };\n },\n\n sona_list_profiles: async () => {\n return {\n profiles: [\n {\n name: 'real-time',\n description: '2200 ops/sec, <0.5ms latency',\n config: 'Rank-2, 25 clusters, 0.7 threshold',\n useCase: 'Low-latency applications'\n },\n {\n name: 'batch',\n description: 'Balance throughput and adaptation',\n config: 'Rank-2, rank-8, 5000 capacity',\n useCase: 'Batch processing workflows'\n },\n {\n name: 'research',\n description: '+55% quality improvement',\n config: 'Rank-16 base, LR 0.002, 0.2 threshold',\n useCase: 'Maximum quality, research'\n },\n {\n name: 'edge',\n description: '<5MB memory footprint',\n config: 'Rank-1, 200 capacity, 15 clusters',\n useCase: 'Edge devices, mobile'\n },\n {\n name: 'balanced',\n description: '18ms overhead, +25% quality',\n config: 'Rank-2, rank-8, 0.4 threshold',\n useCase: 'General-purpose (default)'\n }\n ]\n };\n },\n\n sona_set_enabled: async (params: {\n enabled: boolean;\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n service.setEnabled(params.enabled);\n\n return {\n success: true,\n enabled: params.enabled,\n profile: params.profile || 'balanced'\n };\n },\n\n sona_benchmark: async (params: {\n iterations?: number;\n profile?: SONAProfile;\n }) => {\n const service = params.profile ? sonaServices[params.profile] : sonaService;\n const iterations = params.iterations || 1000;\n\n // Benchmark Micro-LoRA\n const input = Array.from({ length: 3072 }, () => Math.random());\n const startMicro = Date.now();\n\n for (let i = 0; i < iterations; i++) {\n service.applyMicroLora(input);\n }\n\n const microTime = Date.now() - startMicro;\n const microLatency = microTime / iterations;\n const microOpsPerSec = (iterations / microTime) * 1000;\n\n // Benchmark Base-LoRA\n const startBase = Date.now();\n\n for (let i = 0; i < iterations; i++) {\n service.applyBaseLora(10, input);\n }\n\n const baseTime = Date.now() - startBase;\n const baseLatency = baseTime / iterations;\n const baseOpsPerSec = (iterations / baseTime) * 1000;\n\n return {\n iterations,\n profile: params.profile || 'balanced',\n microLora: {\n totalTimeMs: microTime,\n avgLatencyMs: microLatency,\n opsPerSec: microOpsPerSec\n },\n baseLora: {\n totalTimeMs: baseTime,\n avgLatencyMs: baseLatency,\n opsPerSec: baseOpsPerSec\n },\n expected: {\n targetThroughput: 2211,\n targetLatency: 0.5,\n perLayerCost: 0.452\n },\n meetsTarget: microOpsPerSec >= 1000\n };\n }\n};\n\n/**\n * Get profile characteristics\n */\nfunction getProfileCharacteristics(profile: SONAProfile): any {\n const characteristics: Record<SONAProfile, any> = {\n 'real-time': {\n throughput: '2200 ops/sec',\n latency: '<0.5ms',\n memory: '~20MB',\n qualityGain: '+15%'\n },\n 'batch': {\n throughput: '1800 ops/sec',\n latency: '~1ms',\n memory: '~50MB',\n qualityGain: '+25%'\n },\n 'research': {\n throughput: '1000 ops/sec',\n latency: '~2ms',\n memory: '~100MB',\n qualityGain: '+55%'\n },\n 'edge': {\n throughput: '500 ops/sec',\n latency: '~2ms',\n memory: '<5MB',\n qualityGain: '+10%'\n },\n 'balanced': {\n throughput: '1500 ops/sec',\n latency: '~1ms',\n memory: '~50MB',\n qualityGain: '+25%'\n }\n };\n\n return characteristics[profile];\n}\n\nexport default sonaMCPTools;\n"]}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"agent-booster-migration.d.ts","sourceRoot":"","sources":["../../src/optimizations/agent-booster-migration.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAMH,UAAU,kBAAkB;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,EAAE,OAAO,GAAG,QAAQ,CAAC;IAC/B,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,WAAW,EAAE;QACX,mBAAmB,EAAE,MAAM,CAAC;QAC5B,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;CACH;AAED,UAAU,QAAQ;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,UAAU,UAAU;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,eAAe,GAAG,aAAa,GAAG,UAAU,CAAC;IACrD,cAAc,EAAE,MAAM,CAAC;CACxB;AAED;;GAEG;AACH,qBAAa,qBAAqB;IAChC,OAAO,CAAC,MAAM,CAAqB;IACnC,OAAO,CAAC,aAAa,CAAqB;IAC1C,OAAO,CAAC,KAAK,CAMX;gBAEU,MAAM,GAAE,OAAO,CAAC,kBAAkB,CAAM;IAiCpD;;OAEG;IACG,QAAQ,CAAC,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC,UAAU,CAAC;IAcnD;;OAEG;IACH,OAAO,CAAC,kBAAkB;IAoB1B;;OAEG;YACW,oBAAoB;IA0ClC;;OAEG;YACW,eAAe;IAyB7B;;;;OAIG;IACH,OAAO,CAAC,oBAAoB;IAM5B;;OAEG;IACH,OAAO,CAAC,eAAe;IAevB;;OAEG;IACH,QAAQ;;;;oBAzLM,MAAM;sBACJ,MAAM;0BACF,MAAM;wBACR,MAAM;qBACT,MAAM;;IAsMrB;;OAEG;IACH,cAAc,IAAI,MAAM;IAqCxB;;OAEG;IACH,OAAO,CAAC,KAAK;IAIb;;OAEG;IACG,SAAS,CAAC,KAAK,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IASzD;;OAEG;IACG,eAAe,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;QAChD,cAAc,EAAE,MAAM,CAAC;QACvB,YAAY,EAAE,MAAM,CAAC;QACrB,uBAAuB,EAAE,MAAM,CAAC;KACjC,CAAC;CAWH;AAED;;GAEG;AACH,eAAO,MAAM,qBAAqB,uBAA8B,CAAC;AAEjE;;GAEG;AACH,wBAAsB,QAAQ,CAC5B,QAAQ,EAAE,MAAM,EAChB,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,EAClB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,UAAU,CAAC,CAOrB;AAED;;GAEG;AACH,wBAAsB,YAAY,kBAuDjC"}