@gravity-platform/flow 1.1.5 → 1.1.7
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 +28 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravity-platform/flow",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Flow control nodes for GravityWorkflow - Code, Loop, IfElse, Context, Relay, Note, UMAP",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
"clean": "rm -rf dist"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@gravity-platform/plugin-base": "*",
|
|
14
13
|
"umap-js": "^1.3.3"
|
|
15
14
|
},
|
|
16
15
|
"devDependencies": {
|
|
@@ -24,10 +23,35 @@
|
|
|
24
23
|
"access": "public"
|
|
25
24
|
},
|
|
26
25
|
"gravity": {
|
|
26
|
+
"displayName": "Flow Control",
|
|
27
|
+
"category": "flow",
|
|
27
28
|
"logoUrl": "https://res.cloudinary.com/sonik/image/upload/v1750052178/gravity/icons/6359572-200.png",
|
|
28
29
|
"nodes": [
|
|
29
|
-
|
|
30
|
-
|
|
30
|
+
{
|
|
31
|
+
"name": "MCP Service",
|
|
32
|
+
"type": "PromiseNode",
|
|
33
|
+
"description": "Expose workflow nodes as MCP tools for agent consumption",
|
|
34
|
+
"category": "Flow",
|
|
35
|
+
"mcp": true
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"name": "Send Object",
|
|
39
|
+
"type": "PromiseNode",
|
|
40
|
+
"description": "Route structured data objects between workflow nodes",
|
|
41
|
+
"category": "Flow",
|
|
42
|
+
"mcp": false
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"features": [
|
|
46
|
+
"MCP tool exposure",
|
|
47
|
+
"Object routing",
|
|
48
|
+
"Code execution",
|
|
49
|
+
"Loop iteration",
|
|
50
|
+
"Conditional branching",
|
|
51
|
+
"UMAP dimensionality reduction"
|
|
31
52
|
]
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"@gravity-platform/plugin-base": ">=1.0.0"
|
|
32
56
|
}
|
|
33
57
|
}
|