snow-flow 4.5.28 → 4.5.30

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.
@@ -490,6 +490,8 @@ class SnowFlowMCPServer {
490
490
  task.assignedAgent = availableAgent.id;
491
491
  availableAgent.status = 'busy';
492
492
  }
493
+ // Fix: Handle dependencies parameter safely
494
+ const dependencies = args.dependencies || [];
493
495
  return {
494
496
  content: [
495
497
  {
@@ -499,9 +501,11 @@ class SnowFlowMCPServer {
499
501
  task: task.description,
500
502
  strategy: args.strategy || 'adaptive',
501
503
  priority: args.priority || 'medium',
504
+ dependencies: dependencies,
505
+ dependency_count: dependencies.length,
502
506
  status: 'orchestrating',
503
507
  assignedAgent: task.assignedAgent,
504
- message: 'Task orchestration initiated',
508
+ message: 'Task orchestration initiated with safe dependency handling',
505
509
  }),
506
510
  },
507
511
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "4.5.28",
3
+ "version": "4.5.30",
4
4
  "description": "Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",