snow-flow 2.9.9 → 3.0.0

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 (63) hide show
  1. package/.mcp.json +13 -141
  2. package/.mcp.json.template +11 -25
  3. package/README.md +18 -0
  4. package/claude-flow +81 -0
  5. package/claude-flow.bat +18 -0
  6. package/claude-flow.config.json +20 -0
  7. package/claude-flow.ps1 +24 -0
  8. package/dist/agents/index.d.ts +3 -10
  9. package/dist/agents/index.js +10 -50
  10. package/dist/agents/queen-agent.d.ts +0 -2
  11. package/dist/agents/queen-agent.js +25 -42
  12. package/dist/cli.js +1 -1
  13. package/dist/mcp/servicenow-automation-mcp.js +10 -10
  14. package/dist/mcp/servicenow-deployment-mcp.js +1050 -169
  15. package/dist/mcp/servicenow-development-assistant-mcp.js +13 -65
  16. package/dist/mcp/servicenow-integration-mcp.js +10 -10
  17. package/dist/mcp/servicenow-machine-learning-mcp.js +15 -15
  18. package/dist/mcp/servicenow-operations-mcp.js +23 -23
  19. package/dist/mcp/servicenow-platform-development-mcp.js +9 -9
  20. package/dist/mcp/servicenow-reporting-analytics-mcp.js +11 -11
  21. package/dist/mcp/servicenow-security-compliance-mcp.js +11 -11
  22. package/dist/mcp/servicenow-update-set-mcp.js +9 -9
  23. package/dist/mcp/shared/reliable-memory-manager.d.ts +78 -0
  24. package/dist/mcp/shared/reliable-memory-manager.js +268 -0
  25. package/dist/mcp/snow-flow-mcp.js +341 -87
  26. package/dist/queen/agent-factory.d.ts +4 -2
  27. package/dist/queen/agent-factory.js +72 -25
  28. package/dist/services/tensorflow-ml-service.d.ts +105 -0
  29. package/dist/services/tensorflow-ml-service.js +456 -0
  30. package/dist/services/widget-deployment-service.d.ts +107 -0
  31. package/dist/services/widget-deployment-service.js +332 -0
  32. package/dist/utils/file-storage-fallback.d.ts +62 -0
  33. package/dist/utils/file-storage-fallback.js +289 -0
  34. package/dist/utils/mcp-singleton-enforcer.d.ts +36 -0
  35. package/dist/utils/mcp-singleton-enforcer.js +201 -0
  36. package/dist/utils/mcp-timeout-fix.d.ts +53 -0
  37. package/dist/utils/mcp-timeout-fix.js +221 -0
  38. package/memory/agents/README.md +31 -0
  39. package/memory/claude-flow-data.json +1 -1
  40. package/memory/sessions/README.md +1 -1
  41. package/package.json +4 -2
  42. package/src/agents/README.md +192 -0
  43. package/src/health/README.md +161 -0
  44. package/src/memory/README.md +240 -0
  45. package/src/queen/README.md +403 -0
  46. package/src/schemas/deployment.schema.json +58 -0
  47. package/src/schemas/flow.schema.json +79 -0
  48. package/src/schemas/widget.schema.json +72 -0
  49. package/src/templates/base/application.template.json +45 -0
  50. package/src/templates/base/business_rule.template.json +33 -0
  51. package/src/templates/base/script_include.template.json +18 -0
  52. package/src/templates/base/table.template.json +64 -0
  53. package/src/templates/base/widget.template.json +25 -0
  54. package/src/templates/patterns/composite.incident-management.template.json +140 -0
  55. package/src/templates/patterns/widget.dashboard.template.json +238 -0
  56. package/src/templates/patterns/widget.datatable.template.json +292 -0
  57. package/dist/mcp/servicenow-graph-memory-mcp.js +0 -728
  58. package/servicenow/widgets/openai_incident_classifier/client_controller.js +0 -284
  59. package/servicenow/widgets/openai_incident_classifier/server_script.js +0 -314
  60. package/servicenow/widgets/openai_incident_classifier/style.css +0 -354
  61. package/servicenow/widgets/openai_incident_classifier/template.html +0 -167
  62. package/servicenow/widgets/openai_incident_classifier/widget.json +0 -86
  63. package/test-ml-improvements.sh +0 -76
@@ -33,7 +33,7 @@ class ServiceNowAutomationMCP {
33
33
  tools: [
34
34
  {
35
35
  name: 'snow_create_scheduled_job',
36
- description: 'Create Scheduled Job with dynamic schedule discovery - NO hardcoded values',
36
+ description: 'Creates scheduled jobs for automated task execution. Supports cron patterns, time zones, and run-as user configuration.',
37
37
  inputSchema: {
38
38
  type: 'object',
39
39
  properties: {
@@ -50,7 +50,7 @@ class ServiceNowAutomationMCP {
50
50
  },
51
51
  {
52
52
  name: 'snow_create_event_rule',
53
- description: 'Create Event Rule with dynamic event discovery - NO hardcoded values',
53
+ description: 'Creates event-driven automation rules. Triggers scripts based on system events with conditional logic.',
54
54
  inputSchema: {
55
55
  type: 'object',
56
56
  properties: {
@@ -67,7 +67,7 @@ class ServiceNowAutomationMCP {
67
67
  },
68
68
  {
69
69
  name: 'snow_create_notification',
70
- description: 'Create Notification with dynamic template discovery - NO hardcoded values',
70
+ description: 'Creates email notifications for record changes. Configures triggers, recipients, and message templates.',
71
71
  inputSchema: {
72
72
  type: 'object',
73
73
  properties: {
@@ -85,7 +85,7 @@ class ServiceNowAutomationMCP {
85
85
  },
86
86
  {
87
87
  name: 'snow_create_sla_definition',
88
- description: 'Create SLA Definition with dynamic field discovery - NO hardcoded values',
88
+ description: 'Creates Service Level Agreement definitions. Sets duration targets, business schedules, and breach conditions.',
89
89
  inputSchema: {
90
90
  type: 'object',
91
91
  properties: {
@@ -103,7 +103,7 @@ class ServiceNowAutomationMCP {
103
103
  },
104
104
  {
105
105
  name: 'snow_create_escalation_rule',
106
- description: 'Create Escalation Rule with dynamic escalation discovery - NO hardcoded values',
106
+ description: 'Creates escalation rules for time-based actions. Defines escalation timing, conditions, and automated responses.',
107
107
  inputSchema: {
108
108
  type: 'object',
109
109
  properties: {
@@ -121,7 +121,7 @@ class ServiceNowAutomationMCP {
121
121
  },
122
122
  {
123
123
  name: 'snow_create_workflow_activity',
124
- description: 'Create Workflow Activity with dynamic workflow discovery - NO hardcoded values',
124
+ description: 'Creates workflow activities within existing workflows. Configures activity types, conditions, and execution order.',
125
125
  inputSchema: {
126
126
  type: 'object',
127
127
  properties: {
@@ -138,7 +138,7 @@ class ServiceNowAutomationMCP {
138
138
  },
139
139
  {
140
140
  name: 'snow_discover_schedules',
141
- description: 'Discover all available schedules dynamically',
141
+ description: 'Discovers available schedules in the instance for business hours, maintenance windows, and SLA calculations.',
142
142
  inputSchema: {
143
143
  type: 'object',
144
144
  properties: {
@@ -148,7 +148,7 @@ class ServiceNowAutomationMCP {
148
148
  },
149
149
  {
150
150
  name: 'snow_discover_events',
151
- description: 'Discover all available events dynamically',
151
+ description: 'Discovers system events available for automation triggers. Filters by table and event type.',
152
152
  inputSchema: {
153
153
  type: 'object',
154
154
  properties: {
@@ -158,7 +158,7 @@ class ServiceNowAutomationMCP {
158
158
  },
159
159
  {
160
160
  name: 'snow_discover_automation_jobs',
161
- description: 'Discover all automation jobs dynamically',
161
+ description: 'Lists all automation jobs in the instance with status filtering for active, inactive, or all jobs.',
162
162
  inputSchema: {
163
163
  type: 'object',
164
164
  properties: {
@@ -168,7 +168,7 @@ class ServiceNowAutomationMCP {
168
168
  },
169
169
  {
170
170
  name: 'snow_test_scheduled_job',
171
- description: 'Test scheduled job execution',
171
+ description: 'Tests scheduled job execution without waiting for the schedule. Validates script logic and permissions.',
172
172
  inputSchema: {
173
173
  type: 'object',
174
174
  properties: {