@flowfuse/nr-assistant 0.6.1-f938e50-202512021006.0 → 0.6.1-fd37d56-202512091447.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/README.md +4 -27
- package/completions.html +1 -1
- package/index.html +166 -84
- package/index.js +19 -11
- package/lib/assistant.js +83 -43
- package/lib/auth/index.js +277 -0
- package/lib/auth/store.js +33 -0
- package/lib/settings.js +57 -20
- package/locales/en-US/index.json +14 -9
- package/package.json +4 -3
package/locales/en-US/index.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "FlowFuse
|
|
2
|
+
"name": "FlowFuse Expert",
|
|
3
3
|
"function-builder": {
|
|
4
4
|
"action": {
|
|
5
|
-
"label": "FlowFuse
|
|
5
|
+
"label": "FlowFuse Expert: Create a Function Node"
|
|
6
6
|
},
|
|
7
7
|
"menu": {
|
|
8
8
|
"label": "Function Builder",
|
|
9
9
|
"description": "Create a Function Node"
|
|
10
10
|
},
|
|
11
11
|
"dialog-input": {
|
|
12
|
-
"title": "FlowFuse
|
|
13
|
-
"explanation": "The FlowFuse
|
|
12
|
+
"title": "FlowFuse Expert: Create a Function Node",
|
|
13
|
+
"explanation": "The FlowFuse Expert can help you create a Function Node.",
|
|
14
14
|
"description": "Enter a short description of what you want it to do.",
|
|
15
|
-
"create-button": "Ask the FlowFuse
|
|
15
|
+
"create-button": "Ask the FlowFuse Expert 🪄"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"explain-flows": {
|
|
19
19
|
"action": {
|
|
20
|
-
"label": "FlowFuse
|
|
20
|
+
"label": "FlowFuse Expert: Explain Selected Nodes"
|
|
21
21
|
},
|
|
22
22
|
"menu": {
|
|
23
23
|
"label": "Explain Flows",
|
|
24
24
|
"description": "Explain the selected nodes"
|
|
25
25
|
},
|
|
26
26
|
"dialog-result": {
|
|
27
|
-
"title": "FlowFuse
|
|
27
|
+
"title": "FlowFuse Expert: Explain Flows",
|
|
28
28
|
"copy-button": "Copy",
|
|
29
29
|
"close-button": "Close",
|
|
30
30
|
"comment-node-button": "Comment Node",
|
|
31
|
-
"comment-node-name": "FlowFuse
|
|
31
|
+
"comment-node-name": "FlowFuse Expert Explanation"
|
|
32
32
|
},
|
|
33
33
|
"errors": {
|
|
34
34
|
"no-nodes-selected": "No nodes selected. Please select one or more nodes to explain.",
|
|
@@ -38,8 +38,13 @@
|
|
|
38
38
|
"notifications": {
|
|
39
39
|
"busy": "Busy processing your request. Please wait..."
|
|
40
40
|
},
|
|
41
|
+
"login": {
|
|
42
|
+
"menu": {
|
|
43
|
+
"label": "Log in to your FlowFuse account"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
41
46
|
"errors":{
|
|
42
|
-
"assistant-not-enabled": "The FlowFuse
|
|
47
|
+
"assistant-not-enabled": "The FlowFuse Expert is not enabled",
|
|
43
48
|
"copy-failed": "Failed to copy to clipboard",
|
|
44
49
|
"something-went-wrong": "Something went wrong. Please try again later."
|
|
45
50
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowfuse/nr-assistant",
|
|
3
|
-
"version": "0.6.1-
|
|
4
|
-
"description": "FlowFuse Node-RED
|
|
3
|
+
"version": "0.6.1-fd37d56-202512091447.0",
|
|
4
|
+
"description": "FlowFuse Node-RED Expert plugin",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "mocha --exit \"test/**/*.test.js\"",
|
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
"node": ">=16.x"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
40
|
+
"@modelcontextprotocol/sdk": "^1.24.2",
|
|
41
|
+
"base64url": "^3.0.1",
|
|
41
42
|
"got": "^11.8.6",
|
|
42
43
|
"onnxruntime-web": "^1.22.0",
|
|
43
44
|
"semver": "^7.7.2",
|