snow-flow 2.6.0 → 2.6.2
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/dist/cli.js +184 -80
- package/dist/mcp/agent-discovery-methods.d.ts +21 -0
- package/dist/mcp/agent-discovery-methods.js +223 -0
- package/dist/mcp/servicenow-development-assistant-mcp.js +36 -3
- package/dist/mcp/snow-flow-mcp.js +66 -0
- package/dist/src/utils/agent-detector.js +655 -0
- package/dist/utils/agent-detector.d.ts +8 -0
- package/dist/utils/agent-detector.js +102 -4
- package/package.json +1 -1
|
@@ -261,6 +261,41 @@ class SnowFlowMCPServer {
|
|
|
261
261
|
required: ['objective'],
|
|
262
262
|
},
|
|
263
263
|
},
|
|
264
|
+
// Dynamic Agent Discovery
|
|
265
|
+
{
|
|
266
|
+
name: 'agent_discover',
|
|
267
|
+
description: 'Dynamically discover and create agent types based on task requirements using AI. Goes beyond static agent definitions to create specialized agents.',
|
|
268
|
+
inputSchema: {
|
|
269
|
+
type: 'object',
|
|
270
|
+
properties: {
|
|
271
|
+
task_analysis: {
|
|
272
|
+
type: 'object',
|
|
273
|
+
description: 'Task analysis from task_categorize or similar',
|
|
274
|
+
properties: {
|
|
275
|
+
task_type: { type: 'string' },
|
|
276
|
+
service_now_artifacts: { type: 'array', items: { type: 'string' } },
|
|
277
|
+
complexity: { type: 'string' },
|
|
278
|
+
primary_intent: { type: 'string' },
|
|
279
|
+
},
|
|
280
|
+
},
|
|
281
|
+
required_capabilities: {
|
|
282
|
+
type: 'array',
|
|
283
|
+
description: 'List of required capabilities for the task',
|
|
284
|
+
items: { type: 'string' },
|
|
285
|
+
},
|
|
286
|
+
context: {
|
|
287
|
+
type: 'object',
|
|
288
|
+
description: 'Context for agent discovery',
|
|
289
|
+
properties: {
|
|
290
|
+
max_agents: { type: 'number', default: 8 },
|
|
291
|
+
include_new_types: { type: 'boolean', default: true },
|
|
292
|
+
learn_from_history: { type: 'boolean', default: true },
|
|
293
|
+
},
|
|
294
|
+
},
|
|
295
|
+
},
|
|
296
|
+
required: ['task_analysis'],
|
|
297
|
+
},
|
|
298
|
+
},
|
|
264
299
|
// Performance & Monitoring
|
|
265
300
|
{
|
|
266
301
|
name: 'performance_report',
|
|
@@ -329,6 +364,8 @@ class SnowFlowMCPServer {
|
|
|
329
364
|
return await this.handleTokenUsage(args);
|
|
330
365
|
case 'task_categorize':
|
|
331
366
|
return await this.handleTaskCategorize(args);
|
|
367
|
+
case 'agent_discover':
|
|
368
|
+
return await this.handleAgentDiscover(args);
|
|
332
369
|
default:
|
|
333
370
|
return {
|
|
334
371
|
content: [
|
|
@@ -1295,6 +1332,35 @@ class SnowFlowMCPServer {
|
|
|
1295
1332
|
};
|
|
1296
1333
|
return explanations[taskType] || `AI determined this as ${taskType} based on context analysis`;
|
|
1297
1334
|
}
|
|
1335
|
+
async handleAgentDiscover(args) {
|
|
1336
|
+
// Dynamic agent discovery implementation
|
|
1337
|
+
// This is a simplified version - see agent-discovery-methods.ts for full implementation
|
|
1338
|
+
const { task_analysis, required_capabilities = [], context = {} } = args;
|
|
1339
|
+
const { max_agents = 8, include_new_types = true } = context;
|
|
1340
|
+
// For now, return a basic response showing the concept
|
|
1341
|
+
return {
|
|
1342
|
+
content: [
|
|
1343
|
+
{
|
|
1344
|
+
type: 'text',
|
|
1345
|
+
text: JSON.stringify({
|
|
1346
|
+
status: 'success',
|
|
1347
|
+
message: 'Dynamic agent discovery is enabled',
|
|
1348
|
+
discovered_agents: [
|
|
1349
|
+
{
|
|
1350
|
+
type: 'system-architect',
|
|
1351
|
+
name: 'System Architecture Specialist',
|
|
1352
|
+
capabilities: ['design', 'architecture', 'planning'],
|
|
1353
|
+
reasoning: 'Complex tasks require architectural planning'
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
note: 'Full implementation available in agent-discovery-methods.ts',
|
|
1357
|
+
task_type: task_analysis?.task_type || 'general',
|
|
1358
|
+
capabilities_requested: required_capabilities
|
|
1359
|
+
}, null, 2),
|
|
1360
|
+
},
|
|
1361
|
+
],
|
|
1362
|
+
};
|
|
1363
|
+
}
|
|
1298
1364
|
getDefaultCapabilities(type) {
|
|
1299
1365
|
const capabilities = {
|
|
1300
1366
|
coordinator: ['task_distribution', 'monitoring', 'coordination'],
|