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.
- package/.mcp.json +13 -141
- package/.mcp.json.template +11 -25
- package/README.md +18 -0
- package/claude-flow +81 -0
- package/claude-flow.bat +18 -0
- package/claude-flow.config.json +20 -0
- package/claude-flow.ps1 +24 -0
- package/dist/agents/index.d.ts +3 -10
- package/dist/agents/index.js +10 -50
- package/dist/agents/queen-agent.d.ts +0 -2
- package/dist/agents/queen-agent.js +25 -42
- package/dist/cli.js +1 -1
- package/dist/mcp/servicenow-automation-mcp.js +10 -10
- package/dist/mcp/servicenow-deployment-mcp.js +1050 -169
- package/dist/mcp/servicenow-development-assistant-mcp.js +13 -65
- package/dist/mcp/servicenow-integration-mcp.js +10 -10
- package/dist/mcp/servicenow-machine-learning-mcp.js +15 -15
- package/dist/mcp/servicenow-operations-mcp.js +23 -23
- package/dist/mcp/servicenow-platform-development-mcp.js +9 -9
- package/dist/mcp/servicenow-reporting-analytics-mcp.js +11 -11
- package/dist/mcp/servicenow-security-compliance-mcp.js +11 -11
- package/dist/mcp/servicenow-update-set-mcp.js +9 -9
- package/dist/mcp/shared/reliable-memory-manager.d.ts +78 -0
- package/dist/mcp/shared/reliable-memory-manager.js +268 -0
- package/dist/mcp/snow-flow-mcp.js +341 -87
- package/dist/queen/agent-factory.d.ts +4 -2
- package/dist/queen/agent-factory.js +72 -25
- package/dist/services/tensorflow-ml-service.d.ts +105 -0
- package/dist/services/tensorflow-ml-service.js +456 -0
- package/dist/services/widget-deployment-service.d.ts +107 -0
- package/dist/services/widget-deployment-service.js +332 -0
- package/dist/utils/file-storage-fallback.d.ts +62 -0
- package/dist/utils/file-storage-fallback.js +289 -0
- package/dist/utils/mcp-singleton-enforcer.d.ts +36 -0
- package/dist/utils/mcp-singleton-enforcer.js +201 -0
- package/dist/utils/mcp-timeout-fix.d.ts +53 -0
- package/dist/utils/mcp-timeout-fix.js +221 -0
- package/memory/agents/README.md +31 -0
- package/memory/claude-flow-data.json +1 -1
- package/memory/sessions/README.md +1 -1
- package/package.json +4 -2
- package/src/agents/README.md +192 -0
- package/src/health/README.md +161 -0
- package/src/memory/README.md +240 -0
- package/src/queen/README.md +403 -0
- package/src/schemas/deployment.schema.json +58 -0
- package/src/schemas/flow.schema.json +79 -0
- package/src/schemas/widget.schema.json +72 -0
- package/src/templates/base/application.template.json +45 -0
- package/src/templates/base/business_rule.template.json +33 -0
- package/src/templates/base/script_include.template.json +18 -0
- package/src/templates/base/table.template.json +64 -0
- package/src/templates/base/widget.template.json +25 -0
- package/src/templates/patterns/composite.incident-management.template.json +140 -0
- package/src/templates/patterns/widget.dashboard.template.json +238 -0
- package/src/templates/patterns/widget.datatable.template.json +292 -0
- package/dist/mcp/servicenow-graph-memory-mcp.js +0 -728
- package/servicenow/widgets/openai_incident_classifier/client_controller.js +0 -284
- package/servicenow/widgets/openai_incident_classifier/server_script.js +0 -314
- package/servicenow/widgets/openai_incident_classifier/style.css +0 -354
- package/servicenow/widgets/openai_incident_classifier/template.html +0 -167
- package/servicenow/widgets/openai_incident_classifier/widget.json +0 -86
- 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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: '
|
|
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: {
|