{
  "schemaVersion": "1.0",
  "item": {
    "slug": "n8n-builder",
    "name": "n8n Builder",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kassimisai/n8n-builder",
    "canonicalUrl": "https://clawhub.ai/kassimisai/n8n-builder",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/n8n-builder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-builder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/workflow-patterns.md",
      "references/workflow-schema.md",
      "scripts/n8n-api.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/n8n-builder"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/n8n-builder",
    "agentPageUrl": "https://openagent3.xyz/skills/n8n-builder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-builder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-builder/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Setup",
        "body": "Requires two environment variables:\n\nN8N_URL — n8n instance URL (e.g. https://your-n8n.example.com)\nN8N_API_KEY — n8n API key (Settings → API → Create API Key)"
      },
      {
        "title": "Workflow",
        "body": "Understand the automation — Clarify trigger (webhook/schedule/manual), data sources, processing logic, outputs, and error handling needs.\n\n\nDesign the workflow JSON — Build valid n8n workflow JSON following the schema in references/workflow-schema.md. Use patterns from references/workflow-patterns.md as templates.\n\n\nDeploy via API — Use scripts/n8n-api.sh create <file> or pipe JSON to scripts/n8n-api.sh create-stdin.\n\n\nActivate — Use scripts/n8n-api.sh activate <workflow_id> for trigger-based workflows.\n\n\nVerify — List workflows to confirm deployment: scripts/n8n-api.sh list."
      },
      {
        "title": "API Script Reference",
        "body": "# List all workflows\nscripts/n8n-api.sh list\n\n# Create workflow from JSON file\nscripts/n8n-api.sh create /tmp/workflow.json\n\n# Create from stdin\necho '{\"name\":\"Test\",...}' | scripts/n8n-api.sh create-stdin\n\n# Get, activate, deactivate, delete, execute\nscripts/n8n-api.sh get <id>\nscripts/n8n-api.sh activate <id>\nscripts/n8n-api.sh deactivate <id>\nscripts/n8n-api.sh delete <id>\nscripts/n8n-api.sh execute <id>\n\n# List credentials and tags\nscripts/n8n-api.sh credentials\nscripts/n8n-api.sh tags"
      },
      {
        "title": "Building Workflow JSON",
        "body": "Every workflow needs: name, nodes[], connections{}, settings{}.\n\nEvery node needs: id, name, type, typeVersion, position, parameters.\n\nConnections use source node display name as key, mapping outputs to target nodes.\n\nFor full schema, node types, and expression syntax → read references/workflow-schema.md\nFor complete workflow examples (webhook, schedule, AI agent, DB sync, error handling) → read references/workflow-patterns.md"
      },
      {
        "title": "Key Rules",
        "body": "Always set \"executionOrder\": \"v1\" in settings\nNode names must be unique within a workflow\nNode IDs must be unique — use descriptive slugs like webhook1, code1\nPosition nodes starting at [250, 300], spacing ~200px horizontally\nIF nodes have two outputs: index 0 = true, index 1 = false\nWebhook workflows need respondToWebhook node if responseMode is responseNode\nCredentials must exist in n8n before activation — check with scripts/n8n-api.sh credentials\nTest before activating — use scripts/n8n-api.sh execute <id> for manual trigger workflows\nUse continueOnFail: true on risky HTTP/API nodes, then check for errors downstream"
      },
      {
        "title": "Common Real Estate Workflows",
        "body": "Lead intake: Webhook → validate → dedupe → insert DB → notify Slack/SMS\nCall follow-up: Schedule → query DB for completed calls → send SMS/email based on outcome\nDrip campaign: Schedule → query leads by stage → send stage-appropriate email/SMS\nCRM sync: Webhook → transform → update HubSpot/Salesforce + internal DB\nProperty alerts: Schedule → scrape/API listings → filter new → notify leads\nAI qualification: Webhook → AI Agent (classify lead intent) → route to appropriate pipeline"
      }
    ],
    "body": "n8n Workflow Builder\nSetup\n\nRequires two environment variables:\n\nN8N_URL — n8n instance URL (e.g. https://your-n8n.example.com)\nN8N_API_KEY — n8n API key (Settings → API → Create API Key)\nWorkflow\n\nUnderstand the automation — Clarify trigger (webhook/schedule/manual), data sources, processing logic, outputs, and error handling needs.\n\nDesign the workflow JSON — Build valid n8n workflow JSON following the schema in references/workflow-schema.md. Use patterns from references/workflow-patterns.md as templates.\n\nDeploy via API — Use scripts/n8n-api.sh create <file> or pipe JSON to scripts/n8n-api.sh create-stdin.\n\nActivate — Use scripts/n8n-api.sh activate <workflow_id> for trigger-based workflows.\n\nVerify — List workflows to confirm deployment: scripts/n8n-api.sh list.\n\nAPI Script Reference\n# List all workflows\nscripts/n8n-api.sh list\n\n# Create workflow from JSON file\nscripts/n8n-api.sh create /tmp/workflow.json\n\n# Create from stdin\necho '{\"name\":\"Test\",...}' | scripts/n8n-api.sh create-stdin\n\n# Get, activate, deactivate, delete, execute\nscripts/n8n-api.sh get <id>\nscripts/n8n-api.sh activate <id>\nscripts/n8n-api.sh deactivate <id>\nscripts/n8n-api.sh delete <id>\nscripts/n8n-api.sh execute <id>\n\n# List credentials and tags\nscripts/n8n-api.sh credentials\nscripts/n8n-api.sh tags\n\nBuilding Workflow JSON\n\nEvery workflow needs: name, nodes[], connections{}, settings{}.\n\nEvery node needs: id, name, type, typeVersion, position, parameters.\n\nConnections use source node display name as key, mapping outputs to target nodes.\n\nFor full schema, node types, and expression syntax → read references/workflow-schema.md For complete workflow examples (webhook, schedule, AI agent, DB sync, error handling) → read references/workflow-patterns.md\n\nKey Rules\nAlways set \"executionOrder\": \"v1\" in settings\nNode names must be unique within a workflow\nNode IDs must be unique — use descriptive slugs like webhook1, code1\nPosition nodes starting at [250, 300], spacing ~200px horizontally\nIF nodes have two outputs: index 0 = true, index 1 = false\nWebhook workflows need respondToWebhook node if responseMode is responseNode\nCredentials must exist in n8n before activation — check with scripts/n8n-api.sh credentials\nTest before activating — use scripts/n8n-api.sh execute <id> for manual trigger workflows\nUse continueOnFail: true on risky HTTP/API nodes, then check for errors downstream\nCommon Real Estate Workflows\nLead intake: Webhook → validate → dedupe → insert DB → notify Slack/SMS\nCall follow-up: Schedule → query DB for completed calls → send SMS/email based on outcome\nDrip campaign: Schedule → query leads by stage → send stage-appropriate email/SMS\nCRM sync: Webhook → transform → update HubSpot/Salesforce + internal DB\nProperty alerts: Schedule → scrape/API listings → filter new → notify leads\nAI qualification: Webhook → AI Agent (classify lead intent) → route to appropriate pipeline"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kassimisai/n8n-builder",
    "publisherUrl": "https://clawhub.ai/kassimisai/n8n-builder",
    "owner": "kassimisai",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/n8n-builder",
    "downloadUrl": "https://openagent3.xyz/downloads/n8n-builder",
    "agentUrl": "https://openagent3.xyz/skills/n8n-builder/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-builder/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-builder/agent.md"
  }
}