snow-flow 10.0.1-dev.424 → 10.0.1-dev.427
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/package.json +1 -1
- package/src/project/agents-template.txt +6 -0
- package/src/servicenow/servicenow-mcp-unified/shared/tool-registry.ts +2 -0
- package/src/servicenow/servicenow-mcp-unified/tools/flow-designer/snow_manage_flow.ts +493 -1311
- package/src/servicenow/servicenow-mcp-unified/tools/index.ts +1 -1
- package/src/servicenow/servicenow-mcp-unified/tools/plugins/index.ts +1 -3
- package/src/servicenow/servicenow-mcp-unified/tools/plugins/snow_plugin_manage.ts +295 -0
- package/src/servicenow/servicenow-mcp-unified/tools/plugins/snow_activate_plugin.ts +0 -47
- package/src/servicenow/servicenow-mcp-unified/tools/plugins/snow_custom_plugin.ts +0 -46
- package/src/servicenow/servicenow-mcp-unified/tools/plugins/snow_list_plugins.ts +0 -52
package/package.json
CHANGED
|
@@ -135,6 +135,12 @@ await activity_start({
|
|
|
135
135
|
updateSetUrl: "https://instance.service-now.com/sys_update_set.do?sys_id=abc123..."
|
|
136
136
|
});
|
|
137
137
|
|
|
138
|
+
await activity_update({
|
|
139
|
+
activityId: activityId,
|
|
140
|
+
status: "in_progress", // or "review", "failed", "cancelled"
|
|
141
|
+
summary: "Progress update: completed widget creation, starting business rule"
|
|
142
|
+
});
|
|
143
|
+
|
|
138
144
|
await activity_add_artifact({
|
|
139
145
|
activityId: activityId,
|
|
140
146
|
artifactType: "widget",
|
|
@@ -83,6 +83,7 @@ import * as platformTools from '../tools/platform/index.js';
|
|
|
83
83
|
import * as devopsTools from '../tools/devops/index.js';
|
|
84
84
|
import * as virtualAgentTools from '../tools/virtual-agent/index.js';
|
|
85
85
|
import * as flowDesignerTools from '../tools/flow-designer/index.js';
|
|
86
|
+
import * as pluginsTools from '../tools/plugins/index.js';
|
|
86
87
|
|
|
87
88
|
// ES Module compatible __dirname
|
|
88
89
|
const __filename = fileURLToPath(import.meta.url);
|
|
@@ -150,6 +151,7 @@ const STATIC_TOOL_MODULES: Record<string, any> = {
|
|
|
150
151
|
'devops': devopsTools,
|
|
151
152
|
'virtual-agent': virtualAgentTools,
|
|
152
153
|
'flow-designer': flowDesignerTools,
|
|
154
|
+
'plugins': pluginsTools,
|
|
153
155
|
};
|
|
154
156
|
|
|
155
157
|
export class ToolRegistry {
|