{
  "schemaVersion": "1.0",
  "item": {
    "slug": "n8n-dispatch",
    "name": "N8n Dispatch",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "canonicalUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/n8n-dispatch",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-dispatch",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "commands.yaml"
    ],
    "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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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-dispatch"
    },
    "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-dispatch",
    "agentPageUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-dispatch/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": "n8n_dispatch Agent Skill",
        "body": "This skill bridges OpenClaw with your existing n8n‑dispatch service via mcporter.  It exposes a single command dispatch that forwards the user’s request type and prompt to the registered MCP service."
      },
      {
        "title": "How it works",
        "body": "The command dispatch takes two required arguments:\n\nrequestType – one of state, action, or historical.\ntext – the raw user prompt.\n\n\nThe skill builds a JSON payload containing those two values and calls the MCP service n8n_dispatch.\nThe n8n workflow receives the payload, processes the request, and returns a response that OpenClaw prints."
      },
      {
        "title": "Usage",
        "body": "# In your OpenClaw session or a shell\nn8n_dispatch dispatch state \"What is the living room light status?\"\n\nThe command will output something like: Requested type: state and text: What is the living room light status?"
      },
      {
        "title": "Examples",
        "body": "Request typePromptExample commandWhat the service returnsstate“Is the garage door open?”n8n_dispatch dispatch state \"Is the garage door open?\"“Garage door is closed”action“Turn on the hallway light.”n8n_dispatch dispatch action \"Turn on the hallway light.\"“Hallway light turned on”historical“Show me the temperature for yesterday.”n8n_dispatch dispatch historical \"Show me the temperature for yesterday.\"Yesterday’s temperature: 72°F"
      },
      {
        "title": "Configuration",
        "body": "Place this skill in your workspace under skills/n8n_dispatch and ensure your MCP service is registered:\n\nopenclaw mcporter add \\\n  --name \"n8n_dispatch\" \\\n  --url \"http://your-n8n-host:8080/api\"\n\nOnce the skill is loaded (openclaw skills load n8n_dispatch), you can start calling dispatch from any OpenClaw session."
      }
    ],
    "body": "n8n_dispatch Agent Skill\n\nThis skill bridges OpenClaw with your existing n8n‑dispatch service via mcporter. It exposes a single command dispatch that forwards the user’s request type and prompt to the registered MCP service.\n\nHow it works\nThe command dispatch takes two required arguments:\nrequestType – one of state, action, or historical.\ntext – the raw user prompt.\nThe skill builds a JSON payload containing those two values and calls the MCP service n8n_dispatch.\nThe n8n workflow receives the payload, processes the request, and returns a response that OpenClaw prints.\nUsage\n# In your OpenClaw session or a shell\nn8n_dispatch dispatch state \"What is the living room light status?\"\n\n\nThe command will output something like: Requested type: state and text: What is the living room light status?\n\nExamples\nRequest type\tPrompt\tExample command\tWhat the service returns\nstate\t“Is the garage door open?”\tn8n_dispatch dispatch state \"Is the garage door open?\"\t“Garage door is closed”\naction\t“Turn on the hallway light.”\tn8n_dispatch dispatch action \"Turn on the hallway light.\"\t“Hallway light turned on”\nhistorical\t“Show me the temperature for yesterday.”\tn8n_dispatch dispatch historical \"Show me the temperature for yesterday.\"\tYesterday’s temperature: 72°F\nConfiguration\n\nPlace this skill in your workspace under skills/n8n_dispatch and ensure your MCP service is registered:\n\nopenclaw mcporter add \\\n  --name \"n8n_dispatch\" \\\n  --url \"http://your-n8n-host:8080/api\"\n\n\nOnce the skill is loaded (openclaw skills load n8n_dispatch), you can start calling dispatch from any OpenClaw session."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "publisherUrl": "https://clawhub.ai/enchantedmotorcycle/n8n-dispatch",
    "owner": "enchantedmotorcycle",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/n8n-dispatch",
    "downloadUrl": "https://openagent3.xyz/downloads/n8n-dispatch",
    "agentUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent",
    "manifestUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/n8n-dispatch/agent.md"
  }
}