AutomationFlowsAI & RAG › Autonomous Agent - Bootstrap Incident Response

Autonomous Agent - Bootstrap Incident Response

Autonomous Agent - Bootstrap Incident Response. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 6 nodes.

Event trigger★★★★☆ complexity6 nodesN8N Nodes Autonomous Agent
AI & RAG Trigger: Event Nodes: 6 Complexity: ★★★★☆ Added:

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 →

Download .json
{
  "name": "Autonomous Agent - Bootstrap Incident Response",
  "nodes": [
    {
      "parameters": {},
      "id": "b254ed0c-2ce8-47c4-bdc8-b88ad82fb12a",
      "name": "Manual Trigger",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        160,
        300
      ]
    },
    {
      "parameters": {
        "operation": "health"
      },
      "id": "aa1b9a3c-e9af-4bb4-a029-7fba23b637d4",
      "name": "Platform Health",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentPlatform",
      "typeVersion": 1,
      "position": [
        380,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "pull",
        "model": "qwen2.5:7b",
        "insecure": false
      },
      "id": "c4b34e28-04c7-4d52-8e4b-6cded4d8c81d",
      "name": "Pull Analysis Model",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentLlmModel",
      "typeVersion": 1,
      "position": [
        600,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "create",
        "name": "incident-analysis",
        "model": "qwen2.5:7b",
        "provider": "ollama",
        "inputModalities": [
          "text"
        ],
        "maximumInputCharacters": 120000,
        "maximumOutputTokens": 6000,
        "maximumCostUnits": 15000,
        "allowedPurposes": "incident-triage,root-cause-analysis,remediation-planning",
        "includeDimensions": false
      },
      "id": "c2c0d063-f63a-438f-9f58-26054a4f84f6",
      "name": "Create Incident Policy",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentModelPolicy",
      "typeVersion": 1,
      "position": [
        830,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "create",
        "name": "incident-root-cause-analysis",
        "description": "Analyze production incidents, correlate evidence, rank hypotheses, and generate a remediation plan.",
        "agent": "model-agent",
        "agentVersion": "1.0.0",
        "agentType": "model",
        "modelPolicy": "incident-analysis",
        "modelPurpose": "root-cause-analysis",
        "inputModalities": [
          "text"
        ],
        "inputSchema": "{\n  \"type\": \"object\",\n  \"required\": [\n    \"incident\"\n  ],\n  \"properties\": {\n    \"incident\": {\n      \"type\": \"object\"\n    },\n    \"evidence\": {\n      \"type\": \"array\"\n    }\n  }\n}",
        "outputSchema": "{\n  \"type\": \"object\",\n  \"required\": [\n    \"severity\",\n    \"summary\",\n    \"hypotheses\",\n    \"recommended_actions\"\n  ],\n  \"properties\": {\n    \"severity\": {\n      \"type\": \"string\"\n    },\n    \"summary\": {\n      \"type\": \"string\"\n    },\n    \"hypotheses\": {\n      \"type\": \"array\"\n    },\n    \"recommended_actions\": {\n      \"type\": \"array\"\n    },\n    \"rollback_plan\": {\n      \"type\": \"string\"\n    }\n  }\n}",
        "sideEffect": "none",
        "approvalRequired": false,
        "enabled": true,
        "priority": 100,
        "timeoutSeconds": 300,
        "maximumConcurrency": 4,
        "tenantAllowlist": "",
        "requiredRoles": "incident-operator,sre"
      },
      "id": "74179c98-ef6b-4ad4-9f74-2967fc1ba156",
      "name": "Create Incident Analysis Capability",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentCapability",
      "typeVersion": 1,
      "position": [
        1080,
        220
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "create",
        "name": "production-remediation-plan",
        "description": "Prepare a production remediation change plan. Any production change requires explicit approval.",
        "agent": "model-agent",
        "agentVersion": "1.0.0",
        "agentType": "model",
        "modelPolicy": "incident-analysis",
        "modelPurpose": "remediation-planning",
        "inputModalities": [
          "text"
        ],
        "inputSchema": "{\n  \"type\": \"object\",\n  \"required\": [\n    \"incident\",\n    \"analysis\"\n  ],\n  \"properties\": {\n    \"incident\": {\n      \"type\": \"object\"\n    },\n    \"analysis\": {\n      \"type\": \"object\"\n    }\n  }\n}",
        "outputSchema": "{\n  \"type\": \"object\",\n  \"required\": [\n    \"change_steps\",\n    \"validation_steps\",\n    \"rollback_steps\"\n  ],\n  \"properties\": {\n    \"change_steps\": {\n      \"type\": \"array\"\n    },\n    \"validation_steps\": {\n      \"type\": \"array\"\n    },\n    \"rollback_steps\": {\n      \"type\": \"array\"\n    },\n    \"risk\": {\n      \"type\": \"string\"\n    }\n  }\n}",
        "sideEffect": "production-change",
        "approvalRequired": true,
        "enabled": true,
        "priority": 110,
        "timeoutSeconds": 300,
        "maximumConcurrency": 2,
        "tenantAllowlist": "",
        "requiredRoles": "sre,change-approver"
      },
      "id": "53a0d1a5-0f96-4137-8663-d400cda852e3",
      "name": "Create Change Execution Capability",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentCapability",
      "typeVersion": 1,
      "position": [
        1080,
        390
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    }
  ],
  "connections": {
    "Manual Trigger": {
      "main": [
        [
          {
            "node": "Platform Health",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Platform Health": {
      "main": [
        [
          {
            "node": "Pull Analysis Model",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Pull Analysis Model": {
      "main": [
        [
          {
            "node": "Create Incident Policy",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Incident Policy": {
      "main": [
        [
          {
            "node": "Create Incident Analysis Capability",
            "type": "main",
            "index": 0
          },
          {
            "node": "Create Change Execution Capability",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1",
    "saveManualExecutions": true,
    "saveExecutionProgress": true
  },
  "versionId": "c75504ce-76ae-4506-b68c-328293752e71",
  "meta": {
    "templateCredsSetupCompleted": false
  },
  "tags": []
}

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.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Autonomous Agent - Bootstrap Incident Response. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 6 nodes.

Source: https://github.com/MustiSquare/n8n-with-autonomous-agent-nodes/blob/main/n8n/local-data/workflows/01-bootstrap-incident-response.json — original creator credit. Request a take-down →

More AI & RAG workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

AI & RAG

AA Factory 02 - Ensure Model Ready. Uses executeWorkflowTrigger, n8n-nodes-autonomous-agent. Event-driven trigger; 15 nodes.

Execute Workflow Trigger, N8N Nodes Autonomous Agent
AI & RAG

Autonomous Agent - Autonomous Software Development - Domain Bootstrap. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 12 nodes.

N8N Nodes Autonomous Agent
AI & RAG

AA Factory 03 - Provision Resources. Uses executeWorkflowTrigger, n8n-nodes-autonomous-agent. Event-driven trigger; 9 nodes.

Execute Workflow Trigger, N8N Nodes Autonomous Agent
AI & RAG

Autonomous Agent - Document Processing - Domain Bootstrap. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 9 nodes.

N8N Nodes Autonomous Agent
AI & RAG

Autonomous Agent - Incident Response - Domain Bootstrap. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 8 nodes.

N8N Nodes Autonomous Agent