AutomationFlowsAI & RAG › Autonomous Agent - Document Processing - Domain Bootstrap

Autonomous Agent - Document Processing - Domain Bootstrap

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

Event trigger★★★★☆ complexity9 nodesN8N Nodes Autonomous Agent
AI & RAG Trigger: Event Nodes: 9 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 - Document Processing - Domain Bootstrap",
  "nodes": [
    {
      "parameters": {},
      "id": "e8b91ddf-aaae-4dc7-8fb6-1a811c52f500",
      "name": "Manual Trigger",
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        120,
        300
      ]
    },
    {
      "parameters": {
        "operation": "health"
      },
      "id": "2dd34bb2-7aab-4e18-a0d3-41150e60eb14",
      "name": "Platform Health",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentPlatform",
      "typeVersion": 1,
      "position": [
        340,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "pull",
        "model": "qwen2.5:7b",
        "insecure": false
      },
      "id": "c3e8ff4b-fffa-4c85-a6a5-49971649ecb3",
      "name": "Pull Domain Model",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentLlmModel",
      "typeVersion": 1,
      "position": [
        560,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "create",
        "name": "document-processing-policy",
        "model": "qwen2.5:7b",
        "provider": "ollama",
        "inputModalities": [
          "text"
        ],
        "maximumInputCharacters": 120000,
        "maximumOutputTokens": 6000,
        "maximumCostUnits": 15000,
        "allowedPurposes": "document-classification,information-extraction,document-summarization,document-validation,external-publication",
        "includeDimensions": false
      },
      "id": "ce37ad45-6b5a-4b02-aad2-ab851687aca4",
      "name": "Create Domain Model Policy",
      "type": "n8n-nodes-autonomous-agent.autonomousAgentModelPolicy",
      "typeVersion": 1,
      "position": [
        790,
        300
      ],
      "credentials": {
        "autonomousAgentApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "source": "database",
        "workflowId": {
          "__rl": true,
          "value": "REPLACE_WITH_DOCUMENT_CLASSIFICATION_WORKFLOW_ID",
          "mode": "id"
        },
        "options": {
          "waitForSubWorkflow": true
        }
      },
      "id": "800c804e-0540-457e-90fd-00c4385a885d",
      "name": "Create Capability - document-classification",
      "type": "n8n-nodes-base.executeWorkflow",
      "typeVersion": 1.2,
      "position": [
        1080,
        300
      ]
    },
    {
      "parameters": {
        "source": "database",
        "workflowId": {
          "__rl": true,
          "value": "REPLACE_WITH_INFORMATION_EXTRACTION_WORKFLOW_ID",
          "mode": "id"
        },
        "options": {
          "waitForSubWorkflow": true
        }
      },
      "id": "96b8d9a0-9492-4d2d-b57e-3a4d4a0d7cde",
      "name": "Create Capability - information-extraction",
      "type": "n8n-nodes-base.executeWorkflow",
      "typeVersion": 1.2,
      "position": [
        1330,
        300
      ]
    },
    {
      "parameters": {
        "source": "database",
        "workflowId": {
          "__rl": true,
          "value": "REPLACE_WITH_DOCUMENT_SUMMARIZATION_WORKFLOW_ID",
          "mode": "id"
        },
        "options": {
          "waitForSubWorkflow": true
        }
      },
      "id": "7a87e3e7-0e48-44a3-bf28-60e27a1b1b4b",
      "name": "Create Capability - document-summarization",
      "type": "n8n-nodes-base.executeWorkflow",
      "typeVersion": 1.2,
      "position": [
        1580,
        300
      ]
    },
    {
      "parameters": {
        "source": "database",
        "workflowId": {
          "__rl": true,
          "value": "REPLACE_WITH_DOCUMENT_VALIDATION_WORKFLOW_ID",
          "mode": "id"
        },
        "options": {
          "waitForSubWorkflow": true
        }
      },
      "id": "815bca27-4aed-488e-8733-86f6c4b7c88c",
      "name": "Create Capability - document-validation",
      "type": "n8n-nodes-base.executeWorkflow",
      "typeVersion": 1.2,
      "position": [
        1830,
        300
      ]
    },
    {
      "parameters": {
        "source": "database",
        "workflowId": {
          "__rl": true,
          "value": "REPLACE_WITH_EXTERNAL_PUBLICATION_WORKFLOW_ID",
          "mode": "id"
        },
        "options": {
          "waitForSubWorkflow": true
        }
      },
      "id": "54331293-9cf1-4fac-8136-8ea627121883",
      "name": "Create Capability - external-publication",
      "type": "n8n-nodes-base.executeWorkflow",
      "typeVersion": 1.2,
      "position": [
        2080,
        300
      ]
    }
  ],
  "connections": {
    "Manual Trigger": {
      "main": [
        [
          {
            "node": "Platform Health",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Platform Health": {
      "main": [
        [
          {
            "node": "Pull Domain Model",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Pull Domain Model": {
      "main": [
        [
          {
            "node": "Create Domain Model Policy",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Domain Model Policy": {
      "main": [
        [
          {
            "node": "Create Capability - document-classification",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Capability - document-classification": {
      "main": [
        [
          {
            "node": "Create Capability - information-extraction",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Capability - information-extraction": {
      "main": [
        [
          {
            "node": "Create Capability - document-summarization",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Capability - document-summarization": {
      "main": [
        [
          {
            "node": "Create Capability - document-validation",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Capability - document-validation": {
      "main": [
        [
          {
            "node": "Create Capability - external-publication",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "active": false,
  "settings": {
    "executionOrder": "v1",
    "saveManualExecutions": true,
    "saveExecutionProgress": true
  },
  "versionId": "7ae07bd2-eb99-4db9-b475-b226a8c416f8",
  "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 - Document Processing - Domain Bootstrap. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 9 nodes.

Source: https://github.com/MustiSquare/n8n-with-autonomous-agent-platform-demo/blob/main/workflows/03-document-processing/bootstrap/00-domain-bootstrap.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 - Incident Response - Domain Bootstrap. Uses n8n-nodes-autonomous-agent. Event-driven trigger; 8 nodes.

N8N Nodes Autonomous Agent
AI & RAG

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

N8N Nodes Autonomous Agent