S2G - General Purpose Workflow Engine
by @helmutsreinis
Connect to S2G (s2g.run) visual workflow automation platform over WebSocket. Execute workflow nodes as tools — password generators, hash functions, date math...
clawhub install s2g-workflow-engine📖 About This Skill
name: s2g description: Connect to S2G (s2g.run) visual workflow automation platform over WebSocket. Execute workflow nodes as tools — password generators, hash functions, date math, format converters, database queries, knowledge base, and any custom node. Use when asked to run S2G workflows, execute S2G nodes, connect to S2G, manage S2G workflows, or interact with the S2G platform API.
S2G Integration
OpenClaw is the orchestrator. S2G is the toolbox. Connect to an S2G workflow via WebSocket, auto-discover all nodes, and execute them as tools.
OpenClaw ──WS──▶ S2G (wss://s2g.run/api/openclaw/ws/{nodeId})
├── PasswordGenerator
├── HashGenerator
├── DateMath
├── SqlServer
├── Knowledge Base
└── ... 200+ node types
The OpenClaw Node in S2G
The OpenClaw node is a built-in S2G node type (category: AI) that acts as a bidirectional bridge between OpenClaw agents and S2G workflows. It appears in the S2G node catalog as "OpenClaw Agent" and serves two roles:
1. Bridge Endpoint — Provides a WebSocket endpoint (wss://s2g.run/api/openclaw/ws/{nodeId}) that OpenClaw agents connect to. Once connected, the agent can execute any sibling node in the workflow.
2. Data Forwarder — Pushes upstream workflow data to connected OpenClaw agents via Input Forwarding. When the workflow triggers (e.g., from an HTTP webhook, scheduler, or another node), mapped fields are sent to all connected agents as {"type":"data","data":{...}}.
Setting Up the OpenClaw Node
1. Open the S2G designer at s2g.run
2. Create or open a workflow
3. Add an OpenClaw node from the AI category in the node palette
4. Add tool nodes — any nodes you want the agent to access (e.g., PasswordGenerator, HashGenerator, DateMath, SqlServer, Knowledge Base)
5. Connect the OpenClaw node to the tool nodes (the connection wiring tells S2G which nodes to expose)
6. Configure the OpenClaw node (click to open properties):
- Auth Secret (optional) — If set, the bridge must send {"type":"auth","secret":"..."} as its first message
- Per-Request Timeout — Maximum time per individual node execution request
- Input Forwarding — Map upstream node outputs to push data to connected agents
- Manual Payload — Send ad-hoc JSON payloads to connected agents for testing
7. Start the workflow (▶ button or API: POST https://s2g.run/api/v1/workflows/{id}/start)
8. Copy the Node ID (UUID) from the node properties — this is needed for the bridge connection URL
Live View
The OpenClaw node properties panel includes a Live View that shows:
Prerequisites
1. S2G account at s2g.run (or self-hosted instance)
2. A workflow with an OpenClaw node and tool nodes connected to it
3. Workflow running — the WebSocket endpoint only accepts connections while the workflow is active
4. Node.js with ws module: npm install ws
Quick Start
1. Install the bridge
# Copy bridge script to workspace
cp scripts/s2g-bridge.js ~/.openclaw/workspace/s2g-bridge.js
npm install ws
2. Get the OpenClaw node ID
In the S2G designer at s2g.run, click the OpenClaw node → copy the Node ID (UUID) from properties.
3. Start the bridge
# Connect to public S2G
node s2g-bridge.js --s2g wss://s2g.run --node-id YOUR_NODE_UUID [--port 18792] [--secret SECRET]Or with environment variables:
S2G_WS_HOST=wss://s2g.run S2G_NODE_ID=abc-123 node s2g-bridge.jsSelf-hosted S2G instance (development)
node s2g-bridge.js --s2g ws://YOUR_HOST:5184 --node-id YOUR_NODE_UUID
4. Verify
curl http://localhost:18792/health
{"healthy":true,"uptime":42.5}
curl http://localhost:18792/nodes
Lists all discovered nodes with names, types, and IDs
Bridge HTTP API
The bridge exposes a local HTTP API on port 18792 (configurable via --port):
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /health | 200 if connected to S2G, 503 if not |
| GET | /status | Full status: connection state, host, node list, stats, errors |
| GET | /nodes | List all available S2G nodes (name, type, ID) |
| POST | /execute | Execute by nodeId: { nodeId, params } |
| POST | /execute/:name | Execute by name (fuzzy match): { params } |
| POST | /refresh | Request fresh node list from S2G |
| POST | /reconnect | Force disconnect and reconnect to S2G |
Executing Nodes
By name (recommended)
curl -X POST http://localhost:18792/execute/PasswordGenerator \
-H "Content-Type: application/json" \
-d '{"params": {"length": "20", "mode": "strong"}}'
By node ID
curl -X POST http://localhost:18792/execute \
-H "Content-Type: application/json" \
-d '{"nodeId": "uuid-here", "params": {"length": "20"}}'
Response
{
"success": true,
"output": {
"Password": "xK9!mN...",
"Strength": "Very Strong",
"_TriggeredTags": "[\"success\"]"
}
}
Node Schema Discovery
Before using an unfamiliar node, check its exact parameter names via the S2G Catalog API:
# Get schema for any node type
curl -H "X-API-Key: $KEY" "https://s2g.run/api/v1/catalog/nodes/Custom_Base64/schema"List all available node categories
curl -H "X-API-Key: $KEY" "https://s2g.run/api/v1/catalog/categories"List all nodes in a category
curl -H "X-API-Key: $KEY" "https://s2g.run/api/v1/catalog/categories/AI/nodes"
The fieldName in inputFields is the exact key to use in params. Case-sensitive.
Common Node Types
Data Generation
length, mode (strong/pronounceable/passphrase/PIN), countcount, formattext, algorithm (md5/sha1/sha256)count, unit (paragraphs/sentences/words)Data Operations
operation (add/subtract/difference), date1, date2, days, hours...expression, variables, precisionexpression, count, fromDatedatetime, fromTimezone, toTimezonejson, path, returnFirstText & Encoding
inputText, mode (encode/decode)inputText, mode (encode/decode)text, targetCase (camelCase/PascalCase/snake_case/kebab-case)markdown, addWrapperoldText, newTextFormat Conversion
xmlInputjsonInput, rootElementinputText, mode (toJson/toCsv), delimitertokenAI Nodes
Knowledge Base
Vector Storage
Database
Data Push (S2G → OpenClaw)
S2G can push data to connected OpenClaw agents in two ways:
1. Input Forwarding — Configure in the OpenClaw node properties. Map upstream node output fields to keys that get forwarded to all connected agents. When the workflow triggers (e.g., webhook receives data → processes it → OpenClaw node forwards results), agents receive {"type":"data","data":{...}}.
2. Manual Payload — In the OpenClaw node properties, use the Manual Payload editor to send ad-hoc JSON to all connected agents. Useful for testing and debugging.
Deployment & Operations
For running as a service (systemd/pm2), connection lifecycle, auto-reconnect behavior, monitoring, handling S2G/OpenClaw restarts, security, and multi-bridge setups: see references/operations.md.
Key points:
POST https://s2g.run/api/v1/workflows/{id}/startlogs/s2g-bridge.log with 5MB rotationS2G REST API
Full platform API at https://s2g.run/api/v1/ covering workflows, catalog, knowledge base, AI assistant, connections, usage, and logs: see references/api.md.
Key capabilities:
https://s2g.run/api/v1/workflowshttps://s2g.run/api/v1/catalog/nodesPOST https://s2g.run/api/v1/ai/generatehttps://s2g.run/api/v1/connectionshttps://s2g.run/api/v1/usageWebSocket Protocol
For raw protocol details (message types, auth handshake, data push framing): see references/protocol.md.
Connection URL: wss://s2g.run/api/openclaw/ws/{nodeId}
Health check: GET https://s2g.run/api/openclaw/health
Tips
_TriggeredTags in output indicates which connection tag fired (success/error).💡 Examples
1. Install the bridge
# Copy bridge script to workspace
cp scripts/s2g-bridge.js ~/.openclaw/workspace/s2g-bridge.js
npm install ws
2. Get the OpenClaw node ID
In the S2G designer at s2g.run, click the OpenClaw node → copy the Node ID (UUID) from properties.
3. Start the bridge
# Connect to public S2G
node s2g-bridge.js --s2g wss://s2g.run --node-id YOUR_NODE_UUID [--port 18792] [--secret SECRET]Or with environment variables:
S2G_WS_HOST=wss://s2g.run S2G_NODE_ID=abc-123 node s2g-bridge.jsSelf-hosted S2G instance (development)
node s2g-bridge.js --s2g ws://YOUR_HOST:5184 --node-id YOUR_NODE_UUID
4. Verify
curl http://localhost:18792/health
{"healthy":true,"uptime":42.5}
curl http://localhost:18792/nodes
Lists all discovered nodes with names, types, and IDs
⚙️ Configuration
1. S2G account at s2g.run (or self-hosted instance)
2. A workflow with an OpenClaw node and tool nodes connected to it
3. Workflow running — the WebSocket endpoint only accepts connections while the workflow is active
4. Node.js with ws module: npm install ws
📋 Tips & Best Practices
_TriggeredTags in output indicates which connection tag fired (success/error).