ultravisor 1.0.3 → 1.0.8

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.
Files changed (248) hide show
  1. package/.claude/launch.json +11 -0
  2. package/.claude/ultravisor-dev-config.json +3 -0
  3. package/card-audit.json +1545 -0
  4. package/docs/_sidebar.md +17 -0
  5. package/docs/css/docuserve.css +73 -0
  6. package/docs/features/beacon-authentication.md +209 -0
  7. package/docs/features/beacon-providers.md +1299 -0
  8. package/docs/features/beacons.md +530 -0
  9. package/docs/features/capabilities.md +193 -0
  10. package/docs/features/llm-model-setup.md +505 -0
  11. package/docs/features/llm.md +262 -0
  12. package/docs/features/tasks-content-system.md +110 -0
  13. package/docs/features/tasks-data-transform.md +233 -0
  14. package/docs/features/tasks-extension.md +36 -0
  15. package/docs/features/tasks-file-system.md +203 -0
  16. package/docs/features/tasks-flow-control.md +125 -0
  17. package/docs/features/tasks-http-client.md +119 -0
  18. package/docs/features/tasks-llm.md +118 -0
  19. package/docs/features/tasks-meadow-api.md +163 -0
  20. package/docs/features/tasks-user-interaction.md +49 -0
  21. package/docs/features/tasks.md +14 -0
  22. package/docs/index.html +1 -1
  23. package/docs/retold-catalog.json +1 -1
  24. package/docs/retold-keyword-index.json +17374 -5
  25. package/operation-library/api-data-pipeline.json +143 -0
  26. package/operation-library/beacon-remote-command.json +72 -0
  27. package/operation-library/conditional-file-backup.json +143 -0
  28. package/operation-library/config-processor.json +136 -0
  29. package/operation-library/csv-data-analysis.json +228 -0
  30. package/operation-library/csv-to-json.json +160 -0
  31. package/operation-library/directory-inventory.json +128 -0
  32. package/operation-library/expression-calculator.json +114 -0
  33. package/operation-library/file-search-replace.json +175 -0
  34. package/operation-library/git-status-report.json +368 -0
  35. package/operation-library/health-check-ping.json +329 -0
  36. package/operation-library/json-config-merge.json +313 -0
  37. package/operation-library/llm-embedding-tool-use.json +314 -0
  38. package/operation-library/llm-multi-turn-analysis.json +322 -0
  39. package/operation-library/llm-summarize.json +264 -0
  40. package/operation-library/log-line-counter.json +185 -0
  41. package/operation-library/meadow-crud-lifecycle.json +264 -0
  42. package/operation-library/npm-project-validator.json +193 -0
  43. package/operation-library/rest-api-orchestrator.json +218 -0
  44. package/operation-library/shell-system-info.json +137 -0
  45. package/operation-library/simple-echo.json +95 -0
  46. package/operation-library/template-processor.json +299 -0
  47. package/operation-library/text-sanitizer.json +176 -0
  48. package/package.json +12 -8
  49. package/source/Ultravisor.cjs +30 -3
  50. package/source/beacon/Ultravisor-Beacon-CLI.cjs +143 -0
  51. package/source/beacon/Ultravisor-Beacon-CapabilityProvider.cjs +129 -0
  52. package/source/beacon/Ultravisor-Beacon-Client.cjs +568 -0
  53. package/source/beacon/Ultravisor-Beacon-Executor.cjs +500 -0
  54. package/source/beacon/Ultravisor-Beacon-ProviderRegistry.cjs +330 -0
  55. package/source/beacon/providers/Ultravisor-Beacon-Provider-FileSystem.cjs +331 -0
  56. package/source/beacon/providers/Ultravisor-Beacon-Provider-LLM.cjs +966 -0
  57. package/source/beacon/providers/Ultravisor-Beacon-Provider-Shell.cjs +95 -0
  58. package/source/cli/Ultravisor-CLIProgram.cjs +44 -22
  59. package/source/cli/commands/Ultravisor-Command-SingleOperation.cjs +29 -18
  60. package/source/cli/commands/Ultravisor-Command-SingleTask.cjs +62 -19
  61. package/source/cli/commands/Ultravisor-Command-UpdateTask.cjs +27 -15
  62. package/source/config/Ultravisor-Default-Command-Configuration.cjs +12 -3
  63. package/source/services/Ultravisor-Beacon-Coordinator.cjs +966 -0
  64. package/source/services/Ultravisor-ExecutionEngine.cjs +1093 -0
  65. package/source/services/Ultravisor-ExecutionManifest.cjs +629 -0
  66. package/source/services/Ultravisor-Hypervisor-State.cjs +270 -97
  67. package/source/services/Ultravisor-Hypervisor.cjs +185 -75
  68. package/source/services/Ultravisor-Schedule-Persistence-Base.cjs +45 -0
  69. package/source/services/Ultravisor-StateManager.cjs +253 -0
  70. package/source/services/Ultravisor-TaskTypeRegistry.cjs +213 -0
  71. package/source/services/persistence/Ultravisor-Schedule-Persistence-JSONFile.cjs +140 -0
  72. package/source/services/tasks/Ultravisor-BuiltIn-TaskConfigs.cjs +19 -0
  73. package/source/services/tasks/Ultravisor-TaskHelper-BeaconDispatch.cjs +107 -0
  74. package/source/services/tasks/Ultravisor-TaskType-Base.cjs +125 -0
  75. package/source/services/tasks/content-system/Ultravisor-TaskConfigs-ContentSystem.cjs +90 -0
  76. package/source/services/tasks/content-system/definitions/content-create-folder.json +24 -0
  77. package/source/services/tasks/content-system/definitions/content-list-files.json +27 -0
  78. package/source/services/tasks/content-system/definitions/content-read-file.json +26 -0
  79. package/source/services/tasks/content-system/definitions/content-save-file.json +26 -0
  80. package/source/services/tasks/data-transform/Ultravisor-TaskConfigs-DataTransform.cjs +577 -0
  81. package/source/services/tasks/data-transform/Ultravisor-TaskType-ReplaceString.cjs +80 -0
  82. package/source/services/tasks/data-transform/Ultravisor-TaskType-SetValues.cjs +74 -0
  83. package/source/services/tasks/data-transform/Ultravisor-TaskType-StringAppender.cjs +90 -0
  84. package/source/services/tasks/data-transform/definitions/comprehension-intersect.json +24 -0
  85. package/source/services/tasks/data-transform/definitions/csv-transform.json +24 -0
  86. package/source/services/tasks/data-transform/definitions/expression-solver.json +20 -0
  87. package/source/services/tasks/data-transform/definitions/histogram.json +23 -0
  88. package/source/services/tasks/data-transform/definitions/parse-csv.json +27 -0
  89. package/source/services/tasks/data-transform/definitions/replace-string.json +27 -0
  90. package/source/services/tasks/data-transform/definitions/set-values.json +17 -0
  91. package/source/services/tasks/data-transform/definitions/string-appender.json +22 -0
  92. package/source/services/tasks/data-transform/definitions/template-string.json +20 -0
  93. package/source/services/tasks/extension/Ultravisor-TaskConfigs-Extension.cjs +87 -0
  94. package/source/services/tasks/extension/definitions/beacon-dispatch.json +32 -0
  95. package/source/services/tasks/file-system/Ultravisor-TaskConfigs-FileSystem.cjs +509 -0
  96. package/source/services/tasks/file-system/Ultravisor-TaskType-ReadFile.cjs +96 -0
  97. package/source/services/tasks/file-system/Ultravisor-TaskType-ReadFileBuffered.cjs +123 -0
  98. package/source/services/tasks/file-system/Ultravisor-TaskType-WriteFile.cjs +106 -0
  99. package/source/services/tasks/file-system/definitions/copy-file.json +27 -0
  100. package/source/services/tasks/file-system/definitions/list-files.json +27 -0
  101. package/source/services/tasks/file-system/definitions/read-file-buffered.json +31 -0
  102. package/source/services/tasks/file-system/definitions/read-file.json +26 -0
  103. package/source/services/tasks/file-system/definitions/read-json.json +23 -0
  104. package/source/services/tasks/file-system/definitions/write-file.json +29 -0
  105. package/source/services/tasks/file-system/definitions/write-json.json +30 -0
  106. package/source/services/tasks/flow-control/Ultravisor-TaskConfigs-FlowControl.cjs +353 -0
  107. package/source/services/tasks/flow-control/Ultravisor-TaskType-IfConditional.cjs +125 -0
  108. package/source/services/tasks/flow-control/Ultravisor-TaskType-LaunchOperation.cjs +186 -0
  109. package/source/services/tasks/flow-control/Ultravisor-TaskType-SplitExecute.cjs +164 -0
  110. package/source/services/tasks/flow-control/definitions/if-conditional.json +25 -0
  111. package/source/services/tasks/flow-control/definitions/launch-operation.json +27 -0
  112. package/source/services/tasks/flow-control/definitions/split-execute.json +32 -0
  113. package/source/services/tasks/http-client/Ultravisor-TaskConfigs-HttpClient.cjs +281 -0
  114. package/source/services/tasks/http-client/definitions/get-json.json +26 -0
  115. package/source/services/tasks/http-client/definitions/get-text.json +26 -0
  116. package/source/services/tasks/http-client/definitions/rest-request.json +32 -0
  117. package/source/services/tasks/http-client/definitions/send-json.json +28 -0
  118. package/source/services/tasks/llm/Ultravisor-TaskConfigs-LLM.cjs +605 -0
  119. package/source/services/tasks/llm/definitions/llm-chat-completion.json +46 -0
  120. package/source/services/tasks/llm/definitions/llm-embedding.json +31 -0
  121. package/source/services/tasks/llm/definitions/llm-tool-use.json +42 -0
  122. package/source/services/tasks/meadow-api/Ultravisor-TaskConfigs-MeadowApi.cjs +341 -0
  123. package/source/services/tasks/meadow-api/definitions/meadow-count.json +26 -0
  124. package/source/services/tasks/meadow-api/definitions/meadow-create.json +26 -0
  125. package/source/services/tasks/meadow-api/definitions/meadow-delete.json +23 -0
  126. package/source/services/tasks/meadow-api/definitions/meadow-read.json +26 -0
  127. package/source/services/tasks/meadow-api/definitions/meadow-reads.json +29 -0
  128. package/source/services/tasks/meadow-api/definitions/meadow-update.json +26 -0
  129. package/source/services/tasks/shell/Ultravisor-TaskConfigs-Shell.cjs +63 -0
  130. package/source/services/tasks/shell/definitions/command.json +29 -0
  131. package/source/services/tasks/user-interaction/Ultravisor-TaskConfigs-UserInteraction.cjs +64 -0
  132. package/source/services/tasks/user-interaction/Ultravisor-TaskType-ErrorMessage.cjs +55 -0
  133. package/source/services/tasks/user-interaction/Ultravisor-TaskType-ValueInput.cjs +47 -0
  134. package/source/services/tasks/user-interaction/definitions/error-message.json +18 -0
  135. package/source/services/tasks/user-interaction/definitions/value-input.json +23 -0
  136. package/source/web_server/Ultravisor-API-Server.cjs +849 -124
  137. package/test/Ultravisor_browser_tests.js +2226 -0
  138. package/test/Ultravisor_operation_library_tests.js +894 -0
  139. package/test/Ultravisor_tests.js +4946 -5044
  140. package/test/workflows/test-content-concatenate-all.json +339 -0
  141. package/test/workflows/test-content-full-pipeline.json +159 -0
  142. package/test/workflows/test-content-list-files.json +76 -0
  143. package/test/workflows/test-content-save-and-read.json +106 -0
  144. package/webinterface/css/ultravisor-themes.css +668 -0
  145. package/webinterface/css/ultravisor.css +37 -14
  146. package/webinterface/docs/card-help/beacon-dispatch.md +30 -0
  147. package/webinterface/docs/card-help/command.md +27 -0
  148. package/webinterface/docs/card-help/comprehension-intersect.md +24 -0
  149. package/webinterface/docs/card-help/content-create-folder.md +22 -0
  150. package/webinterface/docs/card-help/content-list-files.md +25 -0
  151. package/webinterface/docs/card-help/content-read-file.md +24 -0
  152. package/webinterface/docs/card-help/content-save-file.md +24 -0
  153. package/webinterface/docs/card-help/copy-file.md +25 -0
  154. package/webinterface/docs/card-help/csv-transform.md +24 -0
  155. package/webinterface/docs/card-help/end.md +11 -0
  156. package/webinterface/docs/card-help/error-message.md +16 -0
  157. package/webinterface/docs/card-help/expression-solver.md +21 -0
  158. package/webinterface/docs/card-help/get-json.md +24 -0
  159. package/webinterface/docs/card-help/get-text.md +24 -0
  160. package/webinterface/docs/card-help/histogram.md +23 -0
  161. package/webinterface/docs/card-help/if-conditional.md +23 -0
  162. package/webinterface/docs/card-help/launch-operation.md +25 -0
  163. package/webinterface/docs/card-help/list-files.md +25 -0
  164. package/webinterface/docs/card-help/llm-chat-completion.md +43 -0
  165. package/webinterface/docs/card-help/llm-embedding.md +24 -0
  166. package/webinterface/docs/card-help/llm-tool-use.md +39 -0
  167. package/webinterface/docs/card-help/meadow-count.md +24 -0
  168. package/webinterface/docs/card-help/meadow-create.md +24 -0
  169. package/webinterface/docs/card-help/meadow-delete.md +19 -0
  170. package/webinterface/docs/card-help/meadow-read.md +24 -0
  171. package/webinterface/docs/card-help/meadow-reads.md +27 -0
  172. package/webinterface/docs/card-help/meadow-update.md +24 -0
  173. package/webinterface/docs/card-help/parse-csv.md +27 -0
  174. package/webinterface/docs/card-help/read-file-buffered.md +29 -0
  175. package/webinterface/docs/card-help/read-file.md +24 -0
  176. package/webinterface/docs/card-help/read-json.md +21 -0
  177. package/webinterface/docs/card-help/replace-string.md +25 -0
  178. package/webinterface/docs/card-help/rest-request.md +30 -0
  179. package/webinterface/docs/card-help/send-json.md +26 -0
  180. package/webinterface/docs/card-help/set-values.md +16 -0
  181. package/webinterface/docs/card-help/split-execute.md +35 -0
  182. package/webinterface/docs/card-help/start.md +11 -0
  183. package/webinterface/docs/card-help/string-appender.md +22 -0
  184. package/webinterface/docs/card-help/template-string.md +21 -0
  185. package/webinterface/docs/card-help/value-input.md +24 -0
  186. package/webinterface/docs/card-help/write-file.md +27 -0
  187. package/webinterface/docs/card-help/write-json.md +28 -0
  188. package/webinterface/html/index.html +5 -0
  189. package/webinterface/package.json +13 -4
  190. package/webinterface/source/Pict-Application-Ultravisor.js +564 -70
  191. package/webinterface/source/Ultravisor-TimingUtils.js +99 -0
  192. package/webinterface/source/card-help-content.js +46 -0
  193. package/webinterface/source/cards/Ultravisor-BuiltIn-CardConfigs.js +174 -0
  194. package/webinterface/source/cards/Ultravisor-CardConfigGenerator.js +431 -0
  195. package/webinterface/source/data/ExampleFlow-CSVPipeline.js +231 -0
  196. package/webinterface/source/data/ExampleFlow-FileProcessor.js +315 -0
  197. package/webinterface/source/data/ExampleFlow-MeadowPipeline.js +328 -0
  198. package/webinterface/source/panels/Ultravisor-CardSettingsPanel.js +902 -0
  199. package/webinterface/source/providers/PictRouter-Ultravisor-Configuration.json +20 -8
  200. package/webinterface/source/views/PictView-Ultravisor-BeaconList.js +817 -0
  201. package/webinterface/source/views/PictView-Ultravisor-BottomBar.js +5 -5
  202. package/webinterface/source/views/PictView-Ultravisor-Dashboard.js +25 -25
  203. package/webinterface/source/views/PictView-Ultravisor-Documentation.js +856 -0
  204. package/webinterface/source/views/PictView-Ultravisor-FlowEditor.js +777 -0
  205. package/webinterface/source/views/PictView-Ultravisor-ManifestList.js +321 -58
  206. package/webinterface/source/views/PictView-Ultravisor-OperationEdit.js +36 -91
  207. package/webinterface/source/views/PictView-Ultravisor-OperationList.js +388 -16
  208. package/webinterface/source/views/PictView-Ultravisor-PendingInput.js +314 -0
  209. package/webinterface/source/views/PictView-Ultravisor-Schedule.js +521 -65
  210. package/webinterface/source/views/PictView-Ultravisor-TimingView.js +333 -71
  211. package/webinterface/source/views/PictView-Ultravisor-TopBar.js +257 -21
  212. package/webinterface/theme-sampler.html +645 -0
  213. package/debug/Harness.js +0 -6
  214. package/source/services/Ultravisor-Operation-Manifest.cjs +0 -160
  215. package/source/services/Ultravisor-Operation.cjs +0 -200
  216. package/source/services/Ultravisor-Task.cjs +0 -349
  217. package/source/services/events/Ultravisor-Hypervisor-Event-Solver.cjs +0 -11
  218. package/source/services/tasks/Ultravisor-Task-Base.cjs +0 -264
  219. package/source/services/tasks/Ultravisor-Task-CollectValues.cjs +0 -188
  220. package/source/services/tasks/Ultravisor-Task-Command.cjs +0 -65
  221. package/source/services/tasks/Ultravisor-Task-CommandEach.cjs +0 -190
  222. package/source/services/tasks/Ultravisor-Task-Conditional.cjs +0 -104
  223. package/source/services/tasks/Ultravisor-Task-DateWindow.cjs +0 -72
  224. package/source/services/tasks/Ultravisor-Task-GeneratePagedOperation.cjs +0 -336
  225. package/source/services/tasks/Ultravisor-Task-LaunchOperation.cjs +0 -143
  226. package/source/services/tasks/Ultravisor-Task-LaunchTask.cjs +0 -146
  227. package/source/services/tasks/Ultravisor-Task-LineMatch.cjs +0 -158
  228. package/source/services/tasks/Ultravisor-Task-Request.cjs +0 -56
  229. package/source/services/tasks/Ultravisor-Task-Solver.cjs +0 -89
  230. package/source/services/tasks/Ultravisor-Task-TemplateString.cjs +0 -93
  231. package/source/services/tasks/rest/Ultravisor-Task-GetBinary.cjs +0 -127
  232. package/source/services/tasks/rest/Ultravisor-Task-GetJSON.cjs +0 -119
  233. package/source/services/tasks/rest/Ultravisor-Task-GetText.cjs +0 -109
  234. package/source/services/tasks/rest/Ultravisor-Task-GetXML.cjs +0 -112
  235. package/source/services/tasks/rest/Ultravisor-Task-RestRequest.cjs +0 -499
  236. package/source/services/tasks/rest/Ultravisor-Task-SendJSON.cjs +0 -150
  237. package/source/services/tasks/stagingfiles/Ultravisor-Task-CopyFile.cjs +0 -110
  238. package/source/services/tasks/stagingfiles/Ultravisor-Task-ListFiles.cjs +0 -89
  239. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadBinary.cjs +0 -87
  240. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadJSON.cjs +0 -67
  241. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadText.cjs +0 -66
  242. package/source/services/tasks/stagingfiles/Ultravisor-Task-ReadXML.cjs +0 -69
  243. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteBinary.cjs +0 -95
  244. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteJSON.cjs +0 -96
  245. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteText.cjs +0 -99
  246. package/source/services/tasks/stagingfiles/Ultravisor-Task-WriteXML.cjs +0 -102
  247. package/webinterface/source/views/PictView-Ultravisor-TaskEdit.js +0 -220
  248. package/webinterface/source/views/PictView-Ultravisor-TaskList.js +0 -248
@@ -0,0 +1,143 @@
1
+ {
2
+ "Name": "API Data Pipeline",
3
+ "Description": "Fetches JSON from an API endpoint, extracts a field with template-string, conditionally saves the result. Demonstrates get-json, template-string, if-conditional, and write-json together.",
4
+ "Tags": ["http", "json", "data-pipeline"],
5
+ "Author": "Ultravisor",
6
+ "Version": "1.0.0",
7
+ "Graph": {
8
+ "Nodes": [
9
+ {
10
+ "Hash": "ap-start",
11
+ "Type": "start",
12
+ "X": 50,
13
+ "Y": 200,
14
+ "Width": 140,
15
+ "Height": 80,
16
+ "Title": "Start",
17
+ "Ports": [
18
+ { "Hash": "ap-start-out", "Direction": "output", "Side": "right-bottom", "Label": "Out" }
19
+ ],
20
+ "Data": {}
21
+ },
22
+ {
23
+ "Hash": "ap-seturl",
24
+ "Type": "set-values",
25
+ "X": 260,
26
+ "Y": 180,
27
+ "Width": 200,
28
+ "Height": 80,
29
+ "Title": "Configure Endpoint",
30
+ "Ports": [
31
+ { "Hash": "ap-su-in", "Direction": "input", "Side": "left-bottom", "Label": "Execute" },
32
+ { "Hash": "ap-su-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
33
+ ],
34
+ "Data": { "Mappings": [{ "Address": "Operation.APIEndpoint", "Value": "http://localhost:54321/Operation" }] }
35
+ },
36
+ {
37
+ "Hash": "ap-fetch",
38
+ "Type": "get-json",
39
+ "X": 530,
40
+ "Y": 180,
41
+ "Width": 200,
42
+ "Height": 100,
43
+ "Title": "Fetch API Data",
44
+ "Ports": [
45
+ { "Hash": "ap-ft-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
46
+ { "Hash": "ap-ft-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" },
47
+ { "Hash": "ap-ft-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
48
+ { "Hash": "ap-ft-so-Data", "Direction": "output", "Side": "right-top", "Label": "Data" }
49
+ ],
50
+ "Data": { "URL": "{~D:Record.Operation.APIEndpoint~}", "Destination": "Operation.APIResponse" }
51
+ },
52
+ {
53
+ "Hash": "ap-check",
54
+ "Type": "if-conditional",
55
+ "X": 800,
56
+ "Y": 160,
57
+ "Width": 220,
58
+ "Height": 100,
59
+ "Title": "Has Data?",
60
+ "Ports": [
61
+ { "Hash": "ap-chk-in", "Direction": "input", "Side": "left-bottom", "Label": "Evaluate" },
62
+ { "Hash": "ap-chk-true", "Direction": "output", "Side": "right-bottom", "Label": "True" },
63
+ { "Hash": "ap-chk-false", "Direction": "output", "Side": "bottom", "Label": "False" },
64
+ { "Hash": "ap-chk-so-Result", "Direction": "output", "Side": "right-top", "Label": "Result" }
65
+ ],
66
+ "Data": { "DataAddress": "Operation.APIResponse", "Operator": "truthy" }
67
+ },
68
+ {
69
+ "Hash": "ap-save",
70
+ "Type": "write-json",
71
+ "X": 1090,
72
+ "Y": 140,
73
+ "Width": 200,
74
+ "Height": 100,
75
+ "Title": "Save Snapshot",
76
+ "Ports": [
77
+ { "Hash": "ap-sv-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
78
+ { "Hash": "ap-sv-done", "Direction": "output", "Side": "right-bottom", "Label": "Done" },
79
+ { "Hash": "ap-sv-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
80
+ { "Hash": "ap-sv-so-BytesWritten", "Direction": "output", "Side": "right-top", "Label": "BytesWritten" }
81
+ ],
82
+ "Data": { "File": "api-snapshot.json", "Address": "Operation.APIResponse" }
83
+ },
84
+ {
85
+ "Hash": "ap-nodata",
86
+ "Type": "error-message",
87
+ "X": 800,
88
+ "Y": 370,
89
+ "Width": 240,
90
+ "Height": 80,
91
+ "Title": "No Data",
92
+ "Ports": [
93
+ { "Hash": "ap-nd-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
94
+ { "Hash": "ap-nd-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
95
+ ],
96
+ "Data": { "MessageTemplate": "API returned empty response from {~D:Record.Operation.APIEndpoint~}" }
97
+ },
98
+ {
99
+ "Hash": "ap-neterr",
100
+ "Type": "error-message",
101
+ "X": 530,
102
+ "Y": 370,
103
+ "Width": 220,
104
+ "Height": 80,
105
+ "Title": "Fetch Error",
106
+ "Ports": [
107
+ { "Hash": "ap-ne-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
108
+ { "Hash": "ap-ne-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
109
+ ],
110
+ "Data": { "MessageTemplate": "Failed to fetch from API: {~D:Record.Operation.APIEndpoint~}" }
111
+ },
112
+ {
113
+ "Hash": "ap-end",
114
+ "Type": "end",
115
+ "X": 1360,
116
+ "Y": 260,
117
+ "Width": 140,
118
+ "Height": 80,
119
+ "Title": "End",
120
+ "Ports": [
121
+ { "Hash": "ap-end-in", "Direction": "input", "Side": "left-bottom", "Label": "In" }
122
+ ],
123
+ "Data": {}
124
+ }
125
+ ],
126
+ "Connections": [
127
+ { "Hash": "ap-c1", "SourceNodeHash": "ap-start", "SourcePortHash": "ap-start-out", "TargetNodeHash": "ap-seturl", "TargetPortHash": "ap-su-in", "Data": {} },
128
+ { "Hash": "ap-c2", "SourceNodeHash": "ap-seturl", "SourcePortHash": "ap-su-done", "TargetNodeHash": "ap-fetch", "TargetPortHash": "ap-ft-in", "Data": {} },
129
+ { "Hash": "ap-c3", "SourceNodeHash": "ap-fetch", "SourcePortHash": "ap-ft-done", "TargetNodeHash": "ap-check", "TargetPortHash": "ap-chk-in", "Data": {} },
130
+ { "Hash": "ap-c4", "SourceNodeHash": "ap-check", "SourcePortHash": "ap-chk-true", "TargetNodeHash": "ap-save", "TargetPortHash": "ap-sv-in", "Data": {} },
131
+ { "Hash": "ap-c5", "SourceNodeHash": "ap-save", "SourcePortHash": "ap-sv-done", "TargetNodeHash": "ap-end", "TargetPortHash": "ap-end-in", "Data": {} },
132
+ { "Hash": "ap-c6", "SourceNodeHash": "ap-check", "SourcePortHash": "ap-chk-false", "TargetNodeHash": "ap-nodata", "TargetPortHash": "ap-nd-in", "Data": {} },
133
+ { "Hash": "ap-c7", "SourceNodeHash": "ap-nodata", "SourcePortHash": "ap-nd-done", "TargetNodeHash": "ap-end", "TargetPortHash": "ap-end-in", "Data": {} },
134
+ { "Hash": "ap-c8", "SourceNodeHash": "ap-fetch", "SourcePortHash": "ap-ft-err", "TargetNodeHash": "ap-neterr", "TargetPortHash": "ap-ne-in", "Data": {} },
135
+ { "Hash": "ap-c9", "SourceNodeHash": "ap-neterr", "SourcePortHash": "ap-ne-done", "TargetNodeHash": "ap-end", "TargetPortHash": "ap-end-in", "Data": {} },
136
+ { "Hash": "ap-c10", "SourceNodeHash": "ap-save", "SourcePortHash": "ap-sv-err", "TargetNodeHash": "ap-end", "TargetPortHash": "ap-end-in", "Data": {} }
137
+ ],
138
+ "ViewState": { "PanX": 0, "PanY": 0, "Zoom": 1, "SelectedNodeHash": null, "SelectedConnectionHash": null }
139
+ },
140
+ "SavedLayouts": [],
141
+ "InitialGlobalState": {},
142
+ "InitialOperationState": {}
143
+ }
@@ -0,0 +1,72 @@
1
+ {
2
+ "Name": "Beacon Remote Command",
3
+ "Description": "Dispatches a shell command to a remote Beacon worker node and collects the output. Demonstrates the beacon-dispatch task type for remote execution.",
4
+ "Tags": ["beacon", "remote", "command"],
5
+ "Author": "Ultravisor",
6
+ "Version": "1.0.0",
7
+ "Graph": {
8
+ "Nodes": [
9
+ {
10
+ "Hash": "brc-start",
11
+ "Type": "start",
12
+ "X": 50,
13
+ "Y": 200,
14
+ "Width": 140,
15
+ "Height": 80,
16
+ "Title": "Start",
17
+ "Ports": [
18
+ { "Hash": "brc-start-out", "Direction": "output", "Side": "right-bottom", "Label": "Out" }
19
+ ],
20
+ "Data": {}
21
+ },
22
+ {
23
+ "Hash": "brc-dispatch",
24
+ "Type": "beacon-dispatch",
25
+ "X": 260,
26
+ "Y": 180,
27
+ "Width": 240,
28
+ "Height": 140,
29
+ "Title": "Remote System Info",
30
+ "Ports": [
31
+ { "Hash": "brc-disp-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
32
+ { "Hash": "brc-disp-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" },
33
+ { "Hash": "brc-disp-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
34
+ { "Hash": "brc-disp-so-StdOut", "Direction": "output", "Side": "right-top", "Label": "StdOut" },
35
+ { "Hash": "brc-disp-so-Result", "Direction": "output", "Side": "right-top", "Label": "Result" },
36
+ { "Hash": "brc-disp-so-ExitCode", "Direction": "output", "Side": "right-top", "Label": "ExitCode" },
37
+ { "Hash": "brc-disp-so-BeaconID", "Direction": "output", "Side": "right-top", "Label": "BeaconID" }
38
+ ],
39
+ "Data": {
40
+ "RemoteCapability": "Shell",
41
+ "RemoteAction": "Execute",
42
+ "Command": "uname -a",
43
+ "Parameters": "",
44
+ "AffinityKey": "",
45
+ "TimeoutMs": 30000
46
+ }
47
+ },
48
+ {
49
+ "Hash": "brc-end",
50
+ "Type": "end",
51
+ "X": 580,
52
+ "Y": 260,
53
+ "Width": 140,
54
+ "Height": 80,
55
+ "Title": "End",
56
+ "Ports": [
57
+ { "Hash": "brc-end-in", "Direction": "input", "Side": "left-bottom", "Label": "In" }
58
+ ],
59
+ "Data": {}
60
+ }
61
+ ],
62
+ "Connections": [
63
+ { "Hash": "brc-c1", "SourceNodeHash": "brc-start", "SourcePortHash": "brc-start-out", "TargetNodeHash": "brc-dispatch", "TargetPortHash": "brc-disp-in", "Data": {} },
64
+ { "Hash": "brc-c2", "SourceNodeHash": "brc-dispatch", "SourcePortHash": "brc-disp-done", "TargetNodeHash": "brc-end", "TargetPortHash": "brc-end-in", "Data": {} },
65
+ { "Hash": "brc-c3", "SourceNodeHash": "brc-dispatch", "SourcePortHash": "brc-disp-err", "TargetNodeHash": "brc-end", "TargetPortHash": "brc-end-in", "Data": {} }
66
+ ],
67
+ "ViewState": { "PanX": 0, "PanY": 0, "Zoom": 1, "SelectedNodeHash": null, "SelectedConnectionHash": null }
68
+ },
69
+ "SavedLayouts": [],
70
+ "InitialGlobalState": {},
71
+ "InitialOperationState": {}
72
+ }
@@ -0,0 +1,143 @@
1
+ {
2
+ "Name": "Conditional File Backup",
3
+ "Description": "Reads a file, checks if it contains important markers, and conditionally backs it up. Demonstrates if-conditional branching with copy-file and error paths.",
4
+ "Tags": ["file-io", "branching", "backup"],
5
+ "Author": "Ultravisor",
6
+ "Version": "1.0.0",
7
+ "Graph": {
8
+ "Nodes": [
9
+ {
10
+ "Hash": "bk-start",
11
+ "Type": "start",
12
+ "X": 50,
13
+ "Y": 200,
14
+ "Width": 140,
15
+ "Height": 80,
16
+ "Title": "Start",
17
+ "Ports": [
18
+ { "Hash": "bk-start-out", "Direction": "output", "Side": "right-bottom", "Label": "Out" }
19
+ ],
20
+ "Data": {}
21
+ },
22
+ {
23
+ "Hash": "bk-setpath",
24
+ "Type": "set-values",
25
+ "X": 260,
26
+ "Y": 180,
27
+ "Width": 200,
28
+ "Height": 80,
29
+ "Title": "Set File Path",
30
+ "Ports": [
31
+ { "Hash": "bk-sp-in", "Direction": "input", "Side": "left-bottom", "Label": "Execute" },
32
+ { "Hash": "bk-sp-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
33
+ ],
34
+ "Data": { "Mappings": [{ "Address": "Operation.SourceFile", "Value": "package.json" }] }
35
+ },
36
+ {
37
+ "Hash": "bk-read",
38
+ "Type": "read-file",
39
+ "X": 530,
40
+ "Y": 180,
41
+ "Width": 200,
42
+ "Height": 120,
43
+ "Title": "Read Source",
44
+ "Ports": [
45
+ { "Hash": "bk-rd-in", "Direction": "input", "Side": "left-bottom", "Label": "BeginRead" },
46
+ { "Hash": "bk-rd-done", "Direction": "output", "Side": "right-bottom", "Label": "ReadComplete" },
47
+ { "Hash": "bk-rd-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
48
+ { "Hash": "bk-rd-so-FileContent", "Direction": "output", "Side": "right-top", "Label": "FileContent" },
49
+ { "Hash": "bk-rd-so-BytesRead", "Direction": "output", "Side": "right-top", "Label": "BytesRead" }
50
+ ],
51
+ "Data": { "FilePath": "{~D:Record.Operation.SourceFile~}", "Encoding": "utf8" }
52
+ },
53
+ {
54
+ "Hash": "bk-check",
55
+ "Type": "if-conditional",
56
+ "X": 800,
57
+ "Y": 160,
58
+ "Width": 220,
59
+ "Height": 100,
60
+ "Title": "Has Version Field?",
61
+ "Ports": [
62
+ { "Hash": "bk-chk-in", "Direction": "input", "Side": "left-bottom", "Label": "Evaluate" },
63
+ { "Hash": "bk-chk-true", "Direction": "output", "Side": "right-bottom", "Label": "True" },
64
+ { "Hash": "bk-chk-false", "Direction": "output", "Side": "bottom", "Label": "False" },
65
+ { "Hash": "bk-chk-so-Result", "Direction": "output", "Side": "right-top", "Label": "Result" }
66
+ ],
67
+ "Data": { "DataAddress": "TaskOutput.bk-read.FileContent", "CompareValue": "version", "Operator": "contains" }
68
+ },
69
+ {
70
+ "Hash": "bk-copy",
71
+ "Type": "copy-file",
72
+ "X": 1100,
73
+ "Y": 140,
74
+ "Width": 200,
75
+ "Height": 80,
76
+ "Title": "Create Backup",
77
+ "Ports": [
78
+ { "Hash": "bk-cp-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
79
+ { "Hash": "bk-cp-done", "Direction": "output", "Side": "right-bottom", "Label": "Done" },
80
+ { "Hash": "bk-cp-err", "Direction": "output", "Side": "bottom", "Label": "Error" }
81
+ ],
82
+ "Data": { "Source": "{~D:Record.Operation.SourceFile~}", "TargetFile": "{~D:Record.Operation.SourceFile~}.backup" }
83
+ },
84
+ {
85
+ "Hash": "bk-skip",
86
+ "Type": "error-message",
87
+ "X": 800,
88
+ "Y": 370,
89
+ "Width": 240,
90
+ "Height": 80,
91
+ "Title": "Skip - No Version",
92
+ "Ports": [
93
+ { "Hash": "bk-sk-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
94
+ { "Hash": "bk-sk-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
95
+ ],
96
+ "Data": { "MessageTemplate": "Skipping backup: file does not contain a version field" }
97
+ },
98
+ {
99
+ "Hash": "bk-rderr",
100
+ "Type": "error-message",
101
+ "X": 530,
102
+ "Y": 370,
103
+ "Width": 200,
104
+ "Height": 80,
105
+ "Title": "Read Error",
106
+ "Ports": [
107
+ { "Hash": "bk-rde-in", "Direction": "input", "Side": "left-bottom", "Label": "Trigger" },
108
+ { "Hash": "bk-rde-done", "Direction": "output", "Side": "right-bottom", "Label": "Complete" }
109
+ ],
110
+ "Data": { "MessageTemplate": "Could not read source file: {~D:Record.Operation.SourceFile~}" }
111
+ },
112
+ {
113
+ "Hash": "bk-end",
114
+ "Type": "end",
115
+ "X": 1370,
116
+ "Y": 260,
117
+ "Width": 140,
118
+ "Height": 80,
119
+ "Title": "End",
120
+ "Ports": [
121
+ { "Hash": "bk-end-in", "Direction": "input", "Side": "left-bottom", "Label": "In" }
122
+ ],
123
+ "Data": {}
124
+ }
125
+ ],
126
+ "Connections": [
127
+ { "Hash": "bk-c1", "SourceNodeHash": "bk-start", "SourcePortHash": "bk-start-out", "TargetNodeHash": "bk-setpath", "TargetPortHash": "bk-sp-in", "Data": {} },
128
+ { "Hash": "bk-c2", "SourceNodeHash": "bk-setpath", "SourcePortHash": "bk-sp-done", "TargetNodeHash": "bk-read", "TargetPortHash": "bk-rd-in", "Data": {} },
129
+ { "Hash": "bk-c3", "SourceNodeHash": "bk-read", "SourcePortHash": "bk-rd-done", "TargetNodeHash": "bk-check", "TargetPortHash": "bk-chk-in", "Data": {} },
130
+ { "Hash": "bk-c4", "SourceNodeHash": "bk-check", "SourcePortHash": "bk-chk-true", "TargetNodeHash": "bk-copy", "TargetPortHash": "bk-cp-in", "Data": {} },
131
+ { "Hash": "bk-c5", "SourceNodeHash": "bk-copy", "SourcePortHash": "bk-cp-done", "TargetNodeHash": "bk-end", "TargetPortHash": "bk-end-in", "Data": {} },
132
+ { "Hash": "bk-c6", "SourceNodeHash": "bk-check", "SourcePortHash": "bk-chk-false", "TargetNodeHash": "bk-skip", "TargetPortHash": "bk-sk-in", "Data": {} },
133
+ { "Hash": "bk-c7", "SourceNodeHash": "bk-skip", "SourcePortHash": "bk-sk-done", "TargetNodeHash": "bk-end", "TargetPortHash": "bk-end-in", "Data": {} },
134
+ { "Hash": "bk-c8", "SourceNodeHash": "bk-read", "SourcePortHash": "bk-rd-err", "TargetNodeHash": "bk-rderr", "TargetPortHash": "bk-rde-in", "Data": {} },
135
+ { "Hash": "bk-c9", "SourceNodeHash": "bk-rderr", "SourcePortHash": "bk-rde-done", "TargetNodeHash": "bk-end", "TargetPortHash": "bk-end-in", "Data": {} },
136
+ { "Hash": "bk-c10", "SourceNodeHash": "bk-copy", "SourcePortHash": "bk-cp-err", "TargetNodeHash": "bk-end", "TargetPortHash": "bk-end-in", "Data": {} }
137
+ ],
138
+ "ViewState": { "PanX": 0, "PanY": 0, "Zoom": 1, "SelectedNodeHash": null, "SelectedConnectionHash": null }
139
+ },
140
+ "SavedLayouts": [],
141
+ "InitialGlobalState": {},
142
+ "InitialOperationState": {}
143
+ }
@@ -0,0 +1,136 @@
1
+ {
2
+ "Name": "Config File Processor",
3
+ "Description": "File-based config processing pipeline. Reads a config template, checks for a placeholder, replaces it with a value, and writes the output. Demonstrates branching, error handling, and file I/O.",
4
+ "Tags": ["file-io", "config", "branching"],
5
+ "Author": "Ultravisor",
6
+ "Version": "1.0.0",
7
+ "Graph": {
8
+ "Nodes": [
9
+ {
10
+ "Hash": "cfg-start",
11
+ "Type": "start",
12
+ "X": 50,
13
+ "Y": 200,
14
+ "Width": 140,
15
+ "Height": 80,
16
+ "Title": "Start",
17
+ "Ports": [
18
+ { "Hash": "cfg-start-out", "Direction": "output", "Side": "right", "Label": "Out" }
19
+ ],
20
+ "Data": {}
21
+ },
22
+ {
23
+ "Hash": "cfg-read",
24
+ "Type": "read-file",
25
+ "X": 270,
26
+ "Y": 180,
27
+ "Width": 200,
28
+ "Height": 120,
29
+ "Title": "Read Config Template",
30
+ "Ports": [
31
+ { "Hash": "cfg-read-in", "Direction": "input", "Side": "left", "Label": "BeginRead" },
32
+ { "Hash": "cfg-read-done", "Direction": "output", "Side": "right", "Label": "ReadComplete" },
33
+ { "Hash": "cfg-read-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
34
+ { "Hash": "cfg-read-so-FileContent", "Direction": "output", "Side": "right-top", "Label": "FileContent" },
35
+ { "Hash": "cfg-read-so-BytesRead", "Direction": "output", "Side": "right-top", "Label": "BytesRead" }
36
+ ],
37
+ "Data": {"FilePath": "config.template.json", "Encoding": "utf8"}
38
+ },
39
+ {
40
+ "Hash": "cfg-check",
41
+ "Type": "if-conditional",
42
+ "X": 550,
43
+ "Y": 160,
44
+ "Width": 220,
45
+ "Height": 100,
46
+ "Title": "Has Placeholder?",
47
+ "Ports": [
48
+ { "Hash": "cfg-check-in", "Direction": "input", "Side": "left", "Label": "Evaluate" },
49
+ { "Hash": "cfg-check-true", "Direction": "output", "Side": "right", "Label": "True" },
50
+ { "Hash": "cfg-check-false", "Direction": "output", "Side": "bottom", "Label": "False" },
51
+ { "Hash": "cfg-check-so-Result", "Direction": "output", "Side": "right-top", "Label": "Result" }
52
+ ],
53
+ "Data": {"DataAddress": "TaskOutput.cfg-read.FileContent", "CompareValue": "{{API_KEY}}", "Operator": "contains"}
54
+ },
55
+ {
56
+ "Hash": "cfg-replace",
57
+ "Type": "replace-string",
58
+ "X": 850,
59
+ "Y": 140,
60
+ "Width": 220,
61
+ "Height": 120,
62
+ "Title": "Fill In API Key",
63
+ "Ports": [
64
+ { "Hash": "cfg-replace-in", "Direction": "input", "Side": "left", "Label": "Replace" },
65
+ { "Hash": "cfg-replace-done", "Direction": "output", "Side": "right", "Label": "ReplaceComplete" },
66
+ { "Hash": "cfg-replace-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
67
+ { "Hash": "cfg-replace-si-InputString", "Direction": "input", "Side": "left-top", "Label": "InputString" },
68
+ { "Hash": "cfg-replace-so-ReplacedString", "Direction": "output", "Side": "right-top", "Label": "ReplacedString" }
69
+ ],
70
+ "Data": {"InputString": "{~D:Record.TaskOutput.cfg-read.FileContent~}", "SearchString": "{{API_KEY}}", "ReplaceString": "sk-live-abc123def456"}
71
+ },
72
+ {
73
+ "Hash": "cfg-write",
74
+ "Type": "write-file",
75
+ "X": 1150,
76
+ "Y": 140,
77
+ "Width": 200,
78
+ "Height": 120,
79
+ "Title": "Write Config",
80
+ "Ports": [
81
+ { "Hash": "cfg-write-in", "Direction": "input", "Side": "left", "Label": "BeginWrite" },
82
+ { "Hash": "cfg-write-done", "Direction": "output", "Side": "right", "Label": "WriteComplete" },
83
+ { "Hash": "cfg-write-err", "Direction": "output", "Side": "bottom", "Label": "Error" },
84
+ { "Hash": "cfg-write-si-Content", "Direction": "input", "Side": "left-top", "Label": "Content" },
85
+ { "Hash": "cfg-write-so-BytesWritten", "Direction": "output", "Side": "right-top", "Label": "BytesWritten" }
86
+ ],
87
+ "Data": {"FilePath": "config.json", "Content": "{~D:Record.TaskOutput.cfg-replace.ReplacedString~}", "Encoding": "utf8"}
88
+ },
89
+ {
90
+ "Hash": "cfg-error",
91
+ "Type": "error-message",
92
+ "X": 850,
93
+ "Y": 340,
94
+ "Width": 220,
95
+ "Height": 80,
96
+ "Title": "Missing Placeholder",
97
+ "Ports": [
98
+ { "Hash": "cfg-error-in", "Direction": "input", "Side": "left", "Label": "Trigger" },
99
+ { "Hash": "cfg-error-done", "Direction": "output", "Side": "right", "Label": "Complete" }
100
+ ],
101
+ "Data": {"MessageTemplate": "Config template does not contain the {{API_KEY}} placeholder"}
102
+ },
103
+ {
104
+ "Hash": "cfg-end",
105
+ "Type": "end",
106
+ "X": 1430,
107
+ "Y": 220,
108
+ "Width": 140,
109
+ "Height": 80,
110
+ "Title": "End",
111
+ "Ports": [
112
+ { "Hash": "cfg-end-in", "Direction": "input", "Side": "left", "Label": "In" }
113
+ ],
114
+ "Data": {}
115
+ }
116
+ ],
117
+ "Connections": [
118
+ { "Hash": "cfg-c1", "SourceNodeHash": "cfg-start", "SourcePortHash": "cfg-start-out", "TargetNodeHash": "cfg-read", "TargetPortHash": "cfg-read-in", "Data": {} },
119
+ { "Hash": "cfg-c2", "SourceNodeHash": "cfg-read", "SourcePortHash": "cfg-read-done", "TargetNodeHash": "cfg-check", "TargetPortHash": "cfg-check-in", "Data": {} },
120
+ { "Hash": "cfg-c3", "SourceNodeHash": "cfg-check", "SourcePortHash": "cfg-check-true", "TargetNodeHash": "cfg-replace", "TargetPortHash": "cfg-replace-in", "Data": {} },
121
+ { "Hash": "cfg-c4", "SourceNodeHash": "cfg-replace", "SourcePortHash": "cfg-replace-done", "TargetNodeHash": "cfg-write", "TargetPortHash": "cfg-write-in", "Data": {} },
122
+ { "Hash": "cfg-c5", "SourceNodeHash": "cfg-write", "SourcePortHash": "cfg-write-done", "TargetNodeHash": "cfg-end", "TargetPortHash": "cfg-end-in", "Data": {} },
123
+ { "Hash": "cfg-c6", "SourceNodeHash": "cfg-check", "SourcePortHash": "cfg-check-false", "TargetNodeHash": "cfg-error", "TargetPortHash": "cfg-error-in", "Data": {} },
124
+ { "Hash": "cfg-c7", "SourceNodeHash": "cfg-error", "SourcePortHash": "cfg-error-done", "TargetNodeHash": "cfg-end", "TargetPortHash": "cfg-end-in", "Data": {} },
125
+ { "Hash": "cfg-c8", "SourceNodeHash": "cfg-read", "SourcePortHash": "cfg-read-err", "TargetNodeHash": "cfg-end", "TargetPortHash": "cfg-end-in", "Data": {} },
126
+ { "Hash": "cfg-c9", "SourceNodeHash": "cfg-replace", "SourcePortHash": "cfg-replace-err", "TargetNodeHash": "cfg-end", "TargetPortHash": "cfg-end-in", "Data": {} },
127
+ { "Hash": "cfg-c10", "SourceNodeHash": "cfg-write", "SourcePortHash": "cfg-write-err", "TargetNodeHash": "cfg-end", "TargetPortHash": "cfg-end-in", "Data": {} },
128
+ { "Hash": "cfg-sc1", "SourceNodeHash": "cfg-read", "SourcePortHash": "cfg-read-so-FileContent", "TargetNodeHash": "cfg-replace", "TargetPortHash": "cfg-replace-si-InputString", "Data": {} },
129
+ { "Hash": "cfg-sc2", "SourceNodeHash": "cfg-replace", "SourcePortHash": "cfg-replace-so-ReplacedString", "TargetNodeHash": "cfg-write", "TargetPortHash": "cfg-write-si-Content", "Data": {} }
130
+ ],
131
+ "ViewState": {"PanX": 0, "PanY": 0, "Zoom": 1, "SelectedNodeHash": null, "SelectedConnectionHash": null}
132
+ },
133
+ "SavedLayouts": [],
134
+ "InitialGlobalState": {},
135
+ "InitialOperationState": {}
136
+ }