Compare commits

..

1 Commits

Author SHA1 Message Date
Hermes Pipeline f8d430ebd9 Add Skill: graph-based-node-workflow
Extracted from: https://github.com/temiroff/Blacknode.git
Score: 1.0
2026-08-06 14:39:15 +00:00
9 changed files with 148 additions and 95 deletions
@@ -1,53 +0,0 @@
---
name: conditional-request-review-workflow
version: 1.0.0
description: Classify an input request and route it to an approval or rejection path,
producing a final result message.
inputs:
- request
steps:
- Start node (agent_type=input) collects the user request and stores it in state field
'request'.
- Classify node (agent_type=branching) reads 'request', makes a branching decision,
and on success goes to Approve, on failure goes to Reject; stores decision in 'decision'.
- Approve node (agent_type=default) formats an approval message using 'request' and
writes to 'result'.
- Reject node (agent_type=default) formats a rejection message using 'request' and
writes to 'result' (also used if Classify fails).
outputs:
- result
tags: []
metadata:
source_repo: https://github.com/jwwelbor/AgentMap.git
extracted_at: ''
confidence: 0.85
---
# conditional-request-review-workflow
Classify an input request and route it to an approval or rejection path, producing a final result message.
## Steps
1. Start node (agent_type=input) collects the user request and stores it in state field 'request'.
2. Classify node (agent_type=branching) reads 'request', makes a branching decision, and on success goes to Approve, on failure goes to Reject; stores decision in 'decision'.
3. Approve node (agent_type=default) formats an approval message using 'request' and writes to 'result'.
4. Reject node (agent_type=default) formats a rejection message using 'request' and writes to 'result' (also used if Classify fails).
## Inputs
- request
## Outputs
- result
## Failure Modes
- If branching classification fails, workflow defaults to Reject node via on_failure.
- Input node has no defined on_failure, so workflow may terminate unexpectedly if input collection fails.
## Source
Extracted from: [https://github.com/jwwelbor/AgentMap.git](https://github.com/jwwelbor/AgentMap.git)
Confidence: 0.85
@@ -1,6 +0,0 @@
# Commands: conditional-request-review-workflow
## Available Commands
- `/skill conditional-request-review-workflow` — Load this skill
- `/run conditional-request-review-workflow` — Execute workflow
@@ -1,10 +0,0 @@
# Examples: conditional-request-review-workflow
## Usage Example
```python
# How to use this skill
# Inputs: request
# Process: Start node (agent_type=input) collects the user request and stores it in state field 'request'. → Classify node (agent_type=branching) reads 'request', makes a branching decision, and on success goes to Approve, on failure goes to Reject; stores decision in 'decision'. → Approve node (agent_type=default) formats an approval message using 'request' and writes to 'result'.
# Outputs: result
```
@@ -1,25 +0,0 @@
{
"name": "conditional-request-review-workflow",
"version": "1.0.0",
"goal": "Classify an input request and route it to an approval or rejection path, producing a final result message.",
"inputs": [
"request"
],
"steps": [
"Start node (agent_type=input) collects the user request and stores it in state field 'request'.",
"Classify node (agent_type=branching) reads 'request', makes a branching decision, and on success goes to Approve, on failure goes to Reject; stores decision in 'decision'.",
"Approve node (agent_type=default) formats an approval message using 'request' and writes to 'result'.",
"Reject node (agent_type=default) formats a rejection message using 'request' and writes to 'result' (also used if Classify fails)."
],
"outputs": [
"result"
],
"failure_modes": [
"If branching classification fails, workflow defaults to Reject node via on_failure.",
"Input node has no defined on_failure, so workflow may terminate unexpectedly if input collection fails."
],
"confidence": 0.85,
"explanation": "This workflow is directly taken from the AgentMap README 'ReviewFlow' CSV example. It represents a reusable declarative pattern for conditional routing based on input content, adaptable to many binary decision tasks.",
"source_repo": "https://github.com/jwwelbor/AgentMap.git",
"score": 1.0
}
+100
View File
@@ -0,0 +1,100 @@
---
name: graph-based-node-workflow
version: 1.0.0
description: Create and execute typed node graphs for AI/robotics workflows by defining
nodes with inputs/outputs and connecting them with edges, then cooking the graph
to run the workflow.
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
steps:
- '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'
- 'Step 4: Execute the graph by calling g.cook() to process the defined workflow and
produce results'
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
tags: []
metadata:
source_repo: https://github.com/temiroff/Blacknode.git
extracted_at: ''
confidence: 0.95
---
# graph-based-node-workflow
Create and execute typed node graphs for AI/robotics workflows by defining nodes with inputs/outputs and connecting them with edges, then cooking the graph to run the workflow.
## Setup
**Dependencies:**
```text
pip install blacknode (core Python package) anthropic, openai, docker, petgraph (dependencies) Rust extensions in blacknode-core, blacknode-runtime (optional)
```
**Setup steps:**
1. Install blacknode with Python 3.11+ and required dependencies
1. Clone repository and navigate to project directory
1. Run examples/converted_text_pipeline.py to see basic graph execution
1. Modify node definitions and edges to create custom workflows
## Key Files
- `examples/converted_text_pipeline.py - basic pipeline pattern`
- `examples/hello_agent.py - LLM agent workflow pattern`
- `examples/research_pipeline.py - multi-node research workflow`
- `blacknode.py - main CLI entry point`
## Steps
1. Step 1: Initialize a bn.Graph() instance to serve as the workflow container
2. 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)
3. Step 3: Create edges connecting nodes by specifying source from_port and destination to_port for each data flow
4. Step 4: Execute the graph by calling g.cook() to process the defined workflow and produce results
## Implementation Details
```python
g = bn.Graph()
```
```python
g._edges = [{"from": "model", "from_port": "value", "to": "agent", "to_port": "model"}]
```
```python
result = g.cook(output, "value")
```
## 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
## 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
## Failure Modes
- Missing node dependencies causing undefined variable errors
- Port mismatch in edge connections leading to no data flow
- Incomplete graph definition causing cook() to fail
- Model API key missing or invalid for LLMAgent nodes
## Source
Extracted from: [https://github.com/temiroff/Blacknode.git](https://github.com/temiroff/Blacknode.git)
Confidence: 0.95
@@ -0,0 +1,6 @@
# Commands: graph-based-node-workflow
## Available Commands
- `/skill graph-based-node-workflow` — Load this skill
- `/run graph-based-node-workflow` — Execute workflow
@@ -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
```
@@ -0,0 +1,31 @@
{
"name": "graph-based-node-workflow",
"version": "1.0.0",
"goal": "Create and execute typed node graphs for AI/robotics workflows by defining nodes with inputs/outputs and connecting them with edges, then cooking the graph to run the workflow.",
"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"
],
"steps": [
"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",
"Step 4: Execute the graph by calling g.cook() to process the defined workflow and produce results"
],
"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"
],
"failure_modes": [
"Missing node dependencies causing undefined variable errors",
"Port mismatch in edge connections leading to no data flow",
"Incomplete graph definition causing cook() to fail",
"Model API key missing or invalid for LLMAgent nodes"
],
"confidence": 0.95,
"explanation": "This workflow pattern is reusable across different AI/robotics applications because it provides a standardized way to compose complex pipelines from typed nodes. The pattern can be adapted to various use cases like research pipelines, agent workflows, or robotics control graphs by simply adding/removing nodes and edges while maintaining the same graph-cooking execution model.",
"source_repo": "https://github.com/temiroff/Blacknode.git",
"score": 1.0
}
@@ -1,4 +1,4 @@
# Tests: conditional-request-review-workflow
# Tests: graph-based-node-workflow
## Test Checklist