This workflow corresponds to n8n.io template #5594 — we link there as the canonical source.
This workflow follows the Agent → OpenAI Chat recipe pattern — see all workflows that pair these two integrations.
The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "Z59iv0jcVPieE4iB",
"meta": {
"templateCredsSetupCompleted": true
},
"name": "Hazard analysis Workflow",
"tags": [],
"nodes": [
{
"id": "c21a3f97-2516-4503-82f8-f4db5ff0d340",
"name": "When clicking \u2018Execute workflow\u2019",
"type": "n8n-nodes-base.manualTrigger",
"position": [
380,
-100
],
"parameters": {},
"typeVersion": 1
},
{
"id": "f75201fe-b2e7-47ee-81b9-569c59e24ea8",
"name": "AI Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"position": [
940,
-100
],
"parameters": {
"text": "=const description = {{ $json.data }}.binary.data.toString('utf-8');\\nconst prompt = `Analyze this system for hazards:\\n${description}\\n\\nOutput:\\n1. 5 potential hazards\\n2. Likely root causes\\n3. ISO 26262 relevant clauses`;\\nreturn [{ json: { prompt } }];",
"options": {
"systemMessage": "You are a helpful assistant"
},
"promptType": "define",
"hasOutputParser": true
},
"typeVersion": 2
},
{
"id": "dd6e7cd7-a710-4aec-88d7-3ff721c0343e",
"name": "AI_Hazard_Analysis",
"type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
"position": [
800,
200
],
"parameters": {
"model": {
"__rl": true,
"mode": "list",
"value": "gpt-4.1-mini"
},
"options": {}
},
"credentials": {
"openAiApi": {
"name": "<your credential>"
}
},
"typeVersion": 1.2
},
{
"id": "2336bc58-23b7-4e07-a851-3cc641383f5e",
"name": "A simple memory window",
"type": "@n8n/n8n-nodes-langchain.memoryBufferWindow",
"position": [
1020,
180
],
"parameters": {
"sessionKey": "={{ $execution.id }}",
"sessionIdType": "customKey"
},
"typeVersion": 1.3
},
{
"id": "6de497e1-78de-4718-b822-e6c11b2a7fee",
"name": "Read Systems_Description",
"type": "n8n-nodes-base.readWriteFile",
"position": [
580,
-100
],
"parameters": {
"options": {},
"fileSelector": "/data/inputs/1_hazard_identification/systems_description.txt"
},
"typeVersion": 1,
"alwaysOutputData": true
},
{
"id": "b3bdc41c-32f6-4844-9dde-10890d3ce23e",
"name": "Convert input to binary data",
"type": "n8n-nodes-base.extractFromFile",
"position": [
780,
-100
],
"parameters": {
"options": {},
"operation": "text"
},
"typeVersion": 1
},
{
"id": "24fc87bb-32c5-4cd5-8a93-86d427ff9122",
"name": "Convert to File",
"type": "n8n-nodes-base.convertToFile",
"position": [
1260,
-100
],
"parameters": {
"options": {},
"operation": "toText",
"sourceProperty": "output"
},
"typeVersion": 1.1
},
{
"id": "155b8ccd-fcbc-44dc-974c-8c2db909fd5e",
"name": "Potential_risks_report.txt",
"type": "n8n-nodes-base.readWriteFile",
"position": [
1480,
-100
],
"parameters": {
"options": {
"append": false
},
"fileName": "=/data/outputs/1_hazard_identification/Report_Hazard Identification.txt_{{ $now.toString() }}",
"operation": "write"
},
"typeVersion": 1,
"alwaysOutputData": true
}
],
"active": false,
"settings": {
"executionOrder": "v1"
},
"versionId": "413fa66c-03e4-40b2-b4ae-4d4a081fd32e",
"connections": {
"AI Agent": {
"main": [
[
{
"node": "Convert to File",
"type": "main",
"index": 0
}
]
]
},
"Convert to File": {
"main": [
[
{
"node": "Potential_risks_report.txt",
"type": "main",
"index": 0
}
]
]
},
"AI_Hazard_Analysis": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"A simple memory window": {
"ai_memory": [
[
{
"node": "AI Agent",
"type": "ai_memory",
"index": 0
}
]
]
},
"Read Systems_Description": {
"main": [
[
{
"node": "Convert input to binary data",
"type": "main",
"index": 0
}
]
]
},
"Convert input to binary data": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"When clicking \u2018Execute workflow\u2019": {
"main": [
[
{
"node": "Read Systems_Description",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
openAiApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Modular Hazard Analysis Workflow : Free Version
Source: https://n8n.io/workflows/5594/ — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
🔥📈🤖 AI Agent for n8n Creators Leaderboard - Find Popular Workflows. Uses httpRequest, limit, lmChatOpenAi, executeWorkflowTrigger. Event-driven trigger; 43 nodes.
🔥📈🤖 AI Agent for n8n Creators Leaderboard - Find Popular Workflows. Uses httpRequest, limit, lmChatOpenAi, executeWorkflowTrigger. Event-driven trigger; 43 nodes.
The n8n Creators Leaderboard Workflow is a powerful tool for analyzing and presenting detailed statistics about workflow creators and their contributions within the n8n community. It provides users wi
Accelerates ISO 26262 compliance for automotive/industrial systems by automating safety analysis while maintaining rigorous audit standards.
SQL agent with memory. Uses memoryBufferWindow, lmChatOpenAi, manualTrigger, httpRequest. Event-driven trigger; 13 nodes.