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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "10.0.1-dev.424",
3
+ "version": "10.0.1-dev.427",
4
4
  "name": "snow-flow",
5
5
  "description": "Snow-Flow - ServiceNow Multi-Agent Development Framework powered by AI",
6
6
  "license": "Elastic-2.0",
@@ -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 {