Add Skill: graph-based-node-workflow

Extracted from: https://github.com/temiroff/Blacknode.git
Score: 1.0
This commit is contained in:
Hermes Pipeline
2026-08-06 14:39:15 +00:00
parent 271f79610d
commit f8d430ebd9
5 changed files with 156 additions and 0 deletions
@@ -0,0 +1,10 @@
# Examples: graph-based-node-workflow
## Usage Example
```python
# How to use this skill
# Inputs: bn.Graph() - the graph container for the workflow, Node definitions (Literal, Text, LLMAgent, Concat, Output, etc.) with specified inputs and outputs, Edge connections mapping from_port to to_port between nodes
# Process: Step 1: Initialize a bn.Graph() instance to serve as the workflow container → Step 2: Define individual nodes with their required inputs and outputs (e.g., Literal for data, LLMAgent for inference, Concat for combining, Output for final results) → Step 3: Create edges connecting nodes by specifying source from_port and destination to_port for each data flow
# Outputs: Executed workflow results stored in the graph's output nodes, Cooked graph ready for inspection, replay, or deployment, Potential error states if node dependencies are missing or ports don't match
```