@foresthubai/workflow-cli 0.4.4 → 0.4.5

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.
@@ -1,3 +1,6 @@
1
+ # SPDX-License-Identifier: Apache-2.0
2
+ # Copyright (c) 2026 ForestHub.
3
+
1
4
  openapi: 3.0.3
2
5
  info:
3
6
  title: ForestHub -Proxy Contract
@@ -43,7 +46,7 @@ components:
43
46
  description: Maximum number of tokens supported by the model.
44
47
  embeddingDimension:
45
48
  type: integer
46
- description: Dimension of the model's embedding output (only applicable for embedding-capable models)
49
+ description: Dimension of the model's embedding output.
47
50
 
48
51
  ProviderInfo:
49
52
  type: object
@@ -54,7 +57,7 @@ components:
54
57
  description: Provider identifier (e.g. OpenAI, Anthropic, Local).
55
58
  models:
56
59
  type: array
57
- description: Concrete models (only populated for Local provider).
60
+ description: Concrete models offered by this provider.
58
61
  items:
59
62
  $ref: "#/components/schemas/ModelInfo"
60
63
 
@@ -1,3 +1,6 @@
1
+ # SPDX-License-Identifier: Apache-2.0
2
+ # Copyright (c) 2026 ForestHub.
3
+
1
4
  openapi: 3.0.3
2
5
  info:
3
6
  title: ForestHub Workflow Contract
@@ -29,7 +32,7 @@ components:
29
32
 
30
33
  Workflow:
31
34
  type: object
32
- description: Workflow represents the deployment format of a project, passed to agents.
35
+ description: The deployment format of a workflow project.
33
36
  required:
34
37
  [
35
38
  schemaVersion,
@@ -255,7 +258,7 @@ components:
255
258
  description: Stable identifier that survives renames; referenced from MemoryRef.
256
259
  label:
257
260
  type: string
258
- description: Display name. Unique per agent (LLM tool enums use it).
261
+ description: Display name. Unique per agent.
259
262
  description:
260
263
  type: string
261
264
  content:
@@ -317,7 +320,7 @@ components:
317
320
  description: Display name.
318
321
  capabilities:
319
322
  type: array
320
- description: Capabilities this model supports (used to filter model pickers).
323
+ description: Capabilities this model supports.
321
324
  items:
322
325
  $ref: "llmproxy.yaml#/components/schemas/ModelCapability"
323
326
 
@@ -467,9 +470,7 @@ components:
467
470
  $ref: "#/components/schemas/OutputBinding"
468
471
  toolDescription:
469
472
  type: string
470
- description: >
471
- Description exposed to the LLM when this function is wired as
472
- a tool. Ignored in exec mode.
473
+ description: Description used when this function is exposed as a tool; ignored in exec mode.
473
474
 
474
475
  OnFunctionCallNode:
475
476
  type: object
@@ -581,7 +582,7 @@ components:
581
582
  $ref: "#/components/schemas/OutputBinding"
582
583
  toolDescription:
583
584
  type: string
584
- description: Description exposed to the LLM when this node is wired as a tool. Ignored in exec mode.
585
+ description: Description used when this node is exposed as a tool; ignored in exec mode.
585
586
 
586
587
  WebFetchNode:
587
588
  type: object
@@ -626,7 +627,7 @@ components:
626
627
  $ref: "#/components/schemas/OutputBinding"
627
628
  toolDescription:
628
629
  type: string
629
- description: Description exposed to the LLM when this node is wired as a tool. Ignored in exec mode.
630
+ description: Description used when this node is exposed as a tool; ignored in exec mode.
630
631
 
631
632
  WritePinNode:
632
633
  type: object
@@ -684,7 +685,7 @@ components:
684
685
  $ref: "#/components/schemas/MemoryRef"
685
686
  toolDescription:
686
687
  type: string
687
- description: Description exposed to the LLM when this node is wired as a tool. Ignored in exec mode.
688
+ description: Description used when this node is exposed as a tool; ignored in exec mode.
688
689
 
689
690
  IfNode:
690
691
  type: object
@@ -894,7 +895,7 @@ components:
894
895
  label: { type: string }
895
896
  topic:
896
897
  type: string
897
- description: Topic this channel publishes to / subscribes on. The engine wraps it with the bound broker's prefix at runtime.
898
+ description: Topic this channel publishes to / subscribes on.
898
899
 
899
900
  LOGChannel:
900
901
  type: object
@@ -906,7 +907,7 @@ components:
906
907
  level:
907
908
  type: string
908
909
  enum: [debug, info, warn, error]
909
- description: Severity the engine records messages written to this channel at.
910
+ description: Severity for messages written to this channel.
910
911
  tag:
911
912
  type: string
912
- description: Optional category stamped on each line so the backend can group workflow-emitted logs apart from engine diagnostics.
913
+ description: Optional category label stamped on each line written to this channel.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@foresthubai/workflow-cli",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "type": "module",
5
5
  "description": "fh-workflow CLI — author, validate, and visually edit Edge Agents workflow JSON. Bundles the visual builder; no other install required.",
6
6
  "license": "AGPL-3.0-only",