@synergenius/flow-weaver-pack-weaver 0.9.97 → 0.9.98

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 (52) hide show
  1. package/dist/node-types/bot-report.d.ts +1 -1
  2. package/dist/node-types/bot-report.js +1 -1
  3. package/dist/node-types/exec-validate-retry.d.ts +1 -1
  4. package/dist/node-types/exec-validate-retry.js +1 -1
  5. package/dist/node-types/execute-plan.d.ts +1 -1
  6. package/dist/node-types/execute-plan.js +1 -1
  7. package/dist/node-types/execute-target.d.ts +1 -1
  8. package/dist/node-types/execute-target.js +1 -1
  9. package/dist/node-types/genesis-approve.d.ts +1 -1
  10. package/dist/node-types/genesis-approve.js +1 -1
  11. package/dist/node-types/genesis-check-stabilize.d.ts +1 -1
  12. package/dist/node-types/genesis-check-stabilize.js +1 -1
  13. package/dist/node-types/genesis-check-threshold.d.ts +1 -1
  14. package/dist/node-types/genesis-check-threshold.js +1 -1
  15. package/dist/node-types/genesis-compile-validate.d.ts +1 -1
  16. package/dist/node-types/genesis-compile-validate.js +1 -1
  17. package/dist/node-types/genesis-escrow-grace.d.ts +1 -1
  18. package/dist/node-types/genesis-escrow-grace.js +1 -1
  19. package/dist/node-types/genesis-escrow-validate.d.ts +1 -1
  20. package/dist/node-types/genesis-escrow-validate.js +1 -1
  21. package/dist/node-types/genesis-report.d.ts +1 -1
  22. package/dist/node-types/genesis-report.js +1 -1
  23. package/dist/node-types/genesis-snapshot.d.ts +1 -1
  24. package/dist/node-types/genesis-snapshot.js +1 -1
  25. package/dist/node-types/genesis-validate-proposal.d.ts +1 -1
  26. package/dist/node-types/genesis-validate-proposal.js +1 -1
  27. package/dist/node-types/plan-task.d.ts +1 -1
  28. package/dist/node-types/plan-task.js +1 -1
  29. package/dist/node-types/report.d.ts +1 -1
  30. package/dist/node-types/report.js +1 -1
  31. package/dist/node-types/validate-gate.d.ts +1 -1
  32. package/dist/node-types/validate-gate.js +1 -1
  33. package/dist/node-types/validate-result.d.ts +1 -1
  34. package/dist/node-types/validate-result.js +1 -1
  35. package/package.json +1 -1
  36. package/src/node-types/bot-report.ts +1 -1
  37. package/src/node-types/exec-validate-retry.ts +1 -1
  38. package/src/node-types/execute-plan.ts +1 -1
  39. package/src/node-types/execute-target.ts +1 -1
  40. package/src/node-types/genesis-approve.ts +1 -1
  41. package/src/node-types/genesis-check-stabilize.ts +1 -1
  42. package/src/node-types/genesis-check-threshold.ts +1 -1
  43. package/src/node-types/genesis-compile-validate.ts +1 -1
  44. package/src/node-types/genesis-escrow-grace.ts +1 -1
  45. package/src/node-types/genesis-escrow-validate.ts +1 -1
  46. package/src/node-types/genesis-report.ts +1 -1
  47. package/src/node-types/genesis-snapshot.ts +1 -1
  48. package/src/node-types/genesis-validate-proposal.ts +1 -1
  49. package/src/node-types/plan-task.ts +1 -1
  50. package/src/node-types/report.ts +1 -1
  51. package/src/node-types/validate-gate.ts +1 -1
  52. package/src/node-types/validate-result.ts +1 -1
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * @flowWeaver nodeType
7
7
  * @label Bot Report
8
- * @icon list
8
+ * @icon summarize
9
9
  * @color cyan
10
10
  * @executeWhen DISJUNCTION
11
11
  * @input [mainCtx] [order:0] - Context from main path (JSON, optional)
@@ -6,7 +6,7 @@ import { TaskStore } from '../bot/task-store.js';
6
6
  *
7
7
  * @flowWeaver nodeType
8
8
  * @label Bot Report
9
- * @icon list
9
+ * @icon summarize
10
10
  * @color cyan
11
11
  * @executeWhen DISJUNCTION
12
12
  * @input [mainCtx] [order:0] - Context from main path (JSON, optional)
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * @flowWeaver nodeType
6
6
  * @label Execute & Validate
7
- * @icon engineering
7
+ * @icon build
8
8
  * @color purple
9
9
  * @input ctx [order:0] - Weaver context (JSON)
10
10
  * @output ctx [order:0] - Weaver context with results (JSON)
@@ -11,7 +11,7 @@ import { auditEmit } from '../bot/audit-logger.js';
11
11
  *
12
12
  * @flowWeaver nodeType
13
13
  * @label Execute & Validate
14
- * @icon engineering
14
+ * @icon build
15
15
  * @color purple
16
16
  * @input ctx [order:0] - Weaver context (JSON)
17
17
  * @output ctx [order:0] - Weaver context with results (JSON)
@@ -5,7 +5,7 @@ import type { WeaverEnv } from '../bot/types.js';
5
5
  *
6
6
  * @flowWeaver nodeType
7
7
  * @label Execute Plan
8
- * @icon engineering
8
+ * @icon build
9
9
  * @color purple
10
10
  * @input env [order:0] - Weaver environment bundle
11
11
  * @input planJson [order:1] - Plan (JSON)
@@ -8,7 +8,7 @@ import { executeStep, resetPlanFileCounter } from '../bot/step-executor.js';
8
8
  *
9
9
  * @flowWeaver nodeType
10
10
  * @label Execute Plan
11
- * @icon engineering
11
+ * @icon build
12
12
  * @color purple
13
13
  * @input env [order:0] - Weaver environment bundle
14
14
  * @input planJson [order:1] - Plan (JSON)
@@ -3,7 +3,7 @@
3
3
  *
4
4
  * @flowWeaver nodeType
5
5
  * @label Execute Target
6
- * @icon engineering
6
+ * @icon build
7
7
  * @color orange
8
8
  * @input ctx [order:0] - Weaver context (JSON)
9
9
  * @output ctx [order:0] - Weaver context with resultJson (JSON)
@@ -144,7 +144,7 @@ Return ONLY valid JSON. No markdown, no code fences, no explanation outside the
144
144
  *
145
145
  * @flowWeaver nodeType
146
146
  * @label Execute Target
147
- * @icon engineering
147
+ * @icon build
148
148
  * @color orange
149
149
  * @input ctx [order:0] - Weaver context (JSON)
150
150
  * @output ctx [order:0] - Weaver context with resultJson (JSON)
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * @flowWeaver nodeType
8
8
  * @label Genesis Approve
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color pink
11
11
  * @input ctx [order:0] - Genesis context (JSON)
12
12
  * @output ctx [order:0] - Genesis context with approved (JSON)
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * @flowWeaver nodeType
8
8
  * @label Genesis Approve
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color pink
11
11
  * @input ctx [order:0] - Genesis context (JSON)
12
12
  * @output ctx [order:0] - Genesis context with approved (JSON)
@@ -6,7 +6,7 @@
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Genesis Check Stabilize
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color pink
11
11
  * @input ctx [order:0] - Genesis context (JSON)
12
12
  * @output ctx [order:0] - Genesis context with stabilized (JSON)
@@ -7,7 +7,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
7
7
  * @flowWeaver nodeType
8
8
  * @expression
9
9
  * @label Genesis Check Stabilize
10
- * @icon check
10
+ * @icon checkCircle
11
11
  * @color pink
12
12
  * @input ctx [order:0] - Genesis context (JSON)
13
13
  * @output ctx [order:0] - Genesis context with stabilized (JSON)
@@ -5,7 +5,7 @@
5
5
  * @flowWeaver nodeType
6
6
  * @expression
7
7
  * @label Genesis Check Threshold
8
- * @icon check
8
+ * @icon checkCircle
9
9
  * @color pink
10
10
  * @input ctx [order:0] - Genesis context (JSON)
11
11
  * @output ctx [order:0] - Genesis context with approvalRequired (JSON)
@@ -11,7 +11,7 @@ const IMPACT_ORDER = {
11
11
  * @flowWeaver nodeType
12
12
  * @expression
13
13
  * @label Genesis Check Threshold
14
- * @icon check
14
+ * @icon checkCircle
15
15
  * @color pink
16
16
  * @input ctx [order:0] - Genesis context (JSON)
17
17
  * @output ctx [order:0] - Genesis context with approvalRequired (JSON)
@@ -6,7 +6,7 @@ import type { WeaverEnv } from '../bot/types.js';
6
6
  *
7
7
  * @flowWeaver nodeType
8
8
  * @label Genesis Compile & Validate
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color pink
11
11
  * @input env [order:0] - Weaver environment bundle
12
12
  * @input genesisConfigJson [order:1] - Genesis configuration (JSON)
@@ -9,7 +9,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
9
9
  *
10
10
  * @flowWeaver nodeType
11
11
  * @label Genesis Compile & Validate
12
- * @icon check
12
+ * @icon checkCircle
13
13
  * @color pink
14
14
  * @input env [order:0] - Weaver environment bundle
15
15
  * @input genesisConfigJson [order:1] - Genesis configuration (JSON)
@@ -6,7 +6,7 @@
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Genesis Escrow Grace
9
- * @icon pending
9
+ * @icon pendingActions
10
10
  * @color pink
11
11
  * @input ctx [order:0] - Genesis context (JSON)
12
12
  * @output ctx [order:0] - Genesis context (JSON)
@@ -9,7 +9,7 @@ import { rollbackFromBackup } from './genesis-escrow-migrate.js';
9
9
  * @flowWeaver nodeType
10
10
  * @expression
11
11
  * @label Genesis Escrow Grace
12
- * @icon pending
12
+ * @icon pendingActions
13
13
  * @color pink
14
14
  * @input ctx [order:0] - Genesis context (JSON)
15
15
  * @output ctx [order:0] - Genesis context (JSON)
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * @flowWeaver nodeType
6
6
  * @label Genesis Escrow Validate
7
- * @icon check
7
+ * @icon checkCircle
8
8
  * @color pink
9
9
  * @input ctx [order:0] - Genesis context (JSON)
10
10
  * @output ctx [order:0] - Genesis context with escrow validation result (JSON)
@@ -9,7 +9,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
9
9
  *
10
10
  * @flowWeaver nodeType
11
11
  * @label Genesis Escrow Validate
12
- * @icon check
12
+ * @icon checkCircle
13
13
  * @color pink
14
14
  * @input ctx [order:0] - Genesis context (JSON)
15
15
  * @output ctx [order:0] - Genesis context with escrow validation result (JSON)
@@ -6,7 +6,7 @@
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Genesis Report
9
- * @icon list
9
+ * @icon summarize
10
10
  * @color pink
11
11
  * @executeWhen DISJUNCTION
12
12
  * @input [successCtx] [order:0] - Genesis context from success path (JSON)
@@ -6,7 +6,7 @@
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Genesis Report
9
- * @icon list
9
+ * @icon summarize
10
10
  * @color pink
11
11
  * @executeWhen DISJUNCTION
12
12
  * @input [successCtx] [order:0] - Genesis context from success path (JSON)
@@ -5,7 +5,7 @@
5
5
  * @flowWeaver nodeType
6
6
  * @expression
7
7
  * @label Genesis Snapshot
8
- * @icon wandStars
8
+ * @icon autoAwesome
9
9
  * @color pink
10
10
  * @input ctx [order:0] - Genesis context (JSON)
11
11
  * @output ctx [order:0] - Genesis context with snapshotPath (JSON)
@@ -8,7 +8,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
8
8
  * @flowWeaver nodeType
9
9
  * @expression
10
10
  * @label Genesis Snapshot
11
- * @icon wandStars
11
+ * @icon autoAwesome
12
12
  * @color pink
13
13
  * @input ctx [order:0] - Genesis context (JSON)
14
14
  * @output ctx [order:0] - Genesis context with snapshotPath (JSON)
@@ -6,7 +6,7 @@
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Genesis Validate Proposal
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color pink
11
11
  * @input ctx [order:0] - Genesis context (JSON)
12
12
  * @output ctx [order:0] - Genesis context with validated proposalJson (JSON)
@@ -19,7 +19,7 @@ const SELF_MODIFY_TYPES = new Set(['selfModifyWorkflow', 'selfModifyNodeType', '
19
19
  * @flowWeaver nodeType
20
20
  * @expression
21
21
  * @label Genesis Validate Proposal
22
- * @icon check
22
+ * @icon checkCircle
23
23
  * @color pink
24
24
  * @input ctx [order:0] - Genesis context (JSON)
25
25
  * @output ctx [order:0] - Genesis context with validated proposalJson (JSON)
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * @flowWeaver nodeType
6
6
  * @label Plan Task
7
- * @icon checklist
7
+ * @icon task
8
8
  * @color blue
9
9
  * @input ctx [order:0] - Weaver context (JSON)
10
10
  * @output ctx [order:0] - Weaver context with planJson (JSON)
@@ -6,7 +6,7 @@ import { auditEmit } from '../bot/audit-logger.js';
6
6
  *
7
7
  * @flowWeaver nodeType
8
8
  * @label Plan Task
9
- * @icon checklist
9
+ * @icon task
10
10
  * @color blue
11
11
  * @input ctx [order:0] - Weaver context (JSON)
12
12
  * @output ctx [order:0] - Weaver context with planJson (JSON)
@@ -4,7 +4,7 @@
4
4
  * @flowWeaver nodeType
5
5
  * @expression
6
6
  * @label Report
7
- * @icon list
7
+ * @icon summarize
8
8
  * @color cyan
9
9
  * @input ctx [order:0] - Weaver context (JSON)
10
10
  * @output summary [order:0] - Summary string
@@ -5,7 +5,7 @@ import * as path from 'node:path';
5
5
  * @flowWeaver nodeType
6
6
  * @expression
7
7
  * @label Report
8
- * @icon list
8
+ * @icon summarize
9
9
  * @color cyan
10
10
  * @input ctx [order:0] - Weaver context (JSON)
11
11
  * @output summary [order:0] - Summary string
@@ -5,7 +5,7 @@
5
5
  * @flowWeaver nodeType
6
6
  * @expression
7
7
  * @label Validate Gate
8
- * @icon check
8
+ * @icon checkCircle
9
9
  * @color green
10
10
  * @input ctx [order:0] - Weaver context (JSON)
11
11
  * @output ctx [order:0] - Weaver context with validation result (JSON)
@@ -7,7 +7,7 @@ import * as path from 'node:path';
7
7
  * @flowWeaver nodeType
8
8
  * @expression
9
9
  * @label Validate Gate
10
- * @icon check
10
+ * @icon checkCircle
11
11
  * @color green
12
12
  * @input ctx [order:0] - Weaver context (JSON)
13
13
  * @output ctx [order:0] - Weaver context with validation result (JSON)
@@ -6,7 +6,7 @@ import type { WeaverEnv } from '../bot/types.js';
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Validate Result
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color green
11
11
  * @input env [order:0] - Weaver environment bundle
12
12
  * @input executionResultJson [order:1] - Execution result (JSON)
@@ -6,7 +6,7 @@ import { validateFiles } from '../bot/file-validator.js';
6
6
  * @flowWeaver nodeType
7
7
  * @expression
8
8
  * @label Validate Result
9
- * @icon check
9
+ * @icon checkCircle
10
10
  * @color green
11
11
  * @input env [order:0] - Weaver environment bundle
12
12
  * @input executionResultJson [order:1] - Execution result (JSON)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synergenius/flow-weaver-pack-weaver",
3
- "version": "0.9.97",
3
+ "version": "0.9.98",
4
4
  "description": "AI bot for Flow Weaver. Execute tasks, run workflows, evolve autonomously.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -8,7 +8,7 @@ import { TaskStore } from '../bot/task-store.js';
8
8
  *
9
9
  * @flowWeaver nodeType
10
10
  * @label Bot Report
11
- * @icon list
11
+ * @icon summarize
12
12
  * @color cyan
13
13
  * @executeWhen DISJUNCTION
14
14
  * @input [mainCtx] [order:0] - Context from main path (JSON, optional)
@@ -13,7 +13,7 @@ import { auditEmit } from '../bot/audit-logger.js';
13
13
  *
14
14
  * @flowWeaver nodeType
15
15
  * @label Execute & Validate
16
- * @icon engineering
16
+ * @icon build
17
17
  * @color purple
18
18
  * @input ctx [order:0] - Weaver context (JSON)
19
19
  * @output ctx [order:0] - Weaver context with results (JSON)
@@ -10,7 +10,7 @@ import { executeStep, resetPlanFileCounter } from '../bot/step-executor.js';
10
10
  *
11
11
  * @flowWeaver nodeType
12
12
  * @label Execute Plan
13
- * @icon engineering
13
+ * @icon build
14
14
  * @color purple
15
15
  * @input env [order:0] - Weaver environment bundle
16
16
  * @input planJson [order:1] - Plan (JSON)
@@ -148,7 +148,7 @@ Return ONLY valid JSON. No markdown, no code fences, no explanation outside the
148
148
  *
149
149
  * @flowWeaver nodeType
150
150
  * @label Execute Target
151
- * @icon engineering
151
+ * @icon build
152
152
  * @color orange
153
153
  * @input ctx [order:0] - Weaver context (JSON)
154
154
  * @output ctx [order:0] - Weaver context with resultJson (JSON)
@@ -8,7 +8,7 @@ import type { GenesisProposal, GenesisContext } from '../bot/types.js';
8
8
  *
9
9
  * @flowWeaver nodeType
10
10
  * @label Genesis Approve
11
- * @icon check
11
+ * @icon checkCircle
12
12
  * @color pink
13
13
  * @input ctx [order:0] - Genesis context (JSON)
14
14
  * @output ctx [order:0] - Genesis context with approved (JSON)
@@ -9,7 +9,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
9
9
  * @flowWeaver nodeType
10
10
  * @expression
11
11
  * @label Genesis Check Stabilize
12
- * @icon check
12
+ * @icon checkCircle
13
13
  * @color pink
14
14
  * @input ctx [order:0] - Genesis context (JSON)
15
15
  * @output ctx [order:0] - Genesis context with stabilized (JSON)
@@ -14,7 +14,7 @@ const IMPACT_ORDER: Record<GenesisImpactLevel, number> = {
14
14
  * @flowWeaver nodeType
15
15
  * @expression
16
16
  * @label Genesis Check Threshold
17
- * @icon check
17
+ * @icon checkCircle
18
18
  * @color pink
19
19
  * @input ctx [order:0] - Genesis context (JSON)
20
20
  * @output ctx [order:0] - Genesis context with approvalRequired (JSON)
@@ -11,7 +11,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
11
11
  *
12
12
  * @flowWeaver nodeType
13
13
  * @label Genesis Compile & Validate
14
- * @icon check
14
+ * @icon checkCircle
15
15
  * @color pink
16
16
  * @input env [order:0] - Weaver environment bundle
17
17
  * @input genesisConfigJson [order:1] - Genesis configuration (JSON)
@@ -11,7 +11,7 @@ import { rollbackFromBackup } from './genesis-escrow-migrate.js';
11
11
  * @flowWeaver nodeType
12
12
  * @expression
13
13
  * @label Genesis Escrow Grace
14
- * @icon pending
14
+ * @icon pendingActions
15
15
  * @color pink
16
16
  * @input ctx [order:0] - Genesis context (JSON)
17
17
  * @output ctx [order:0] - Genesis context (JSON)
@@ -11,7 +11,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
11
11
  *
12
12
  * @flowWeaver nodeType
13
13
  * @label Genesis Escrow Validate
14
- * @icon check
14
+ * @icon checkCircle
15
15
  * @color pink
16
16
  * @input ctx [order:0] - Genesis context (JSON)
17
17
  * @output ctx [order:0] - Genesis context with escrow validation result (JSON)
@@ -8,7 +8,7 @@ import type { GenesisCycleRecord, GenesisContext } from '../bot/types.js';
8
8
  * @flowWeaver nodeType
9
9
  * @expression
10
10
  * @label Genesis Report
11
- * @icon list
11
+ * @icon summarize
12
12
  * @color pink
13
13
  * @executeWhen DISJUNCTION
14
14
  * @input [successCtx] [order:0] - Genesis context from success path (JSON)
@@ -10,7 +10,7 @@ import { GenesisStore } from '../bot/genesis-store.js';
10
10
  * @flowWeaver nodeType
11
11
  * @expression
12
12
  * @label Genesis Snapshot
13
- * @icon wandStars
13
+ * @icon autoAwesome
14
14
  * @color pink
15
15
  * @input ctx [order:0] - Genesis context (JSON)
16
16
  * @output ctx [order:0] - Genesis context with snapshotPath (JSON)
@@ -23,7 +23,7 @@ const SELF_MODIFY_TYPES = new Set(['selfModifyWorkflow', 'selfModifyNodeType', '
23
23
  * @flowWeaver nodeType
24
24
  * @expression
25
25
  * @label Genesis Validate Proposal
26
- * @icon check
26
+ * @icon checkCircle
27
27
  * @color pink
28
28
  * @input ctx [order:0] - Genesis context (JSON)
29
29
  * @output ctx [order:0] - Genesis context with validated proposalJson (JSON)
@@ -8,7 +8,7 @@ import { auditEmit } from '../bot/audit-logger.js';
8
8
  *
9
9
  * @flowWeaver nodeType
10
10
  * @label Plan Task
11
- * @icon checklist
11
+ * @icon task
12
12
  * @color blue
13
13
  * @input ctx [order:0] - Weaver context (JSON)
14
14
  * @output ctx [order:0] - Weaver context with planJson (JSON)
@@ -7,7 +7,7 @@ import type { WeaverContext } from '../bot/types.js';
7
7
  * @flowWeaver nodeType
8
8
  * @expression
9
9
  * @label Report
10
- * @icon list
10
+ * @icon summarize
11
11
  * @color cyan
12
12
  * @input ctx [order:0] - Weaver context (JSON)
13
13
  * @output summary [order:0] - Summary string
@@ -9,7 +9,7 @@ import type { WeaverContext } from '../bot/types.js';
9
9
  * @flowWeaver nodeType
10
10
  * @expression
11
11
  * @label Validate Gate
12
- * @icon check
12
+ * @icon checkCircle
13
13
  * @color green
14
14
  * @input ctx [order:0] - Weaver context (JSON)
15
15
  * @output ctx [order:0] - Weaver context with validation result (JSON)
@@ -8,7 +8,7 @@ import { validateFiles } from '../bot/file-validator.js';
8
8
  * @flowWeaver nodeType
9
9
  * @expression
10
10
  * @label Validate Result
11
- * @icon check
11
+ * @icon checkCircle
12
12
  * @color green
13
13
  * @input env [order:0] - Weaver environment bundle
14
14
  * @input executionResultJson [order:1] - Execution result (JSON)