# Send n8n Builder to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/n8n-builder",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-builder",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/workflow-patterns.md",
      "references/workflow-schema.md",
      "scripts/n8n-api.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "n8n-builder",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-12T10:07:17.620Z",
      "expiresAt": "2026-05-19T10:07:17.620Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-builder",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=n8n-builder",
        "contentDisposition": "attachment; filename=\"n8n-builder-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "n8n-builder"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Setup

Requires two environment variables:

N8N_URL — n8n instance URL (e.g. https://your-n8n.example.com)
N8N_API_KEY — n8n API key (Settings → API → Create API Key)

### Workflow

Understand the automation — Clarify trigger (webhook/schedule/manual), data sources, processing logic, outputs, and error handling needs.


Design 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.


Deploy via API — Use scripts/n8n-api.sh create <file> or pipe JSON to scripts/n8n-api.sh create-stdin.


Activate — Use scripts/n8n-api.sh activate <workflow_id> for trigger-based workflows.


Verify — List workflows to confirm deployment: scripts/n8n-api.sh list.

### API Script Reference

# List all workflows
scripts/n8n-api.sh list

# Create workflow from JSON file
scripts/n8n-api.sh create /tmp/workflow.json

# Create from stdin
echo '{"name":"Test",...}' | scripts/n8n-api.sh create-stdin

# Get, activate, deactivate, delete, execute
scripts/n8n-api.sh get <id>
scripts/n8n-api.sh activate <id>
scripts/n8n-api.sh deactivate <id>
scripts/n8n-api.sh delete <id>
scripts/n8n-api.sh execute <id>

# List credentials and tags
scripts/n8n-api.sh credentials
scripts/n8n-api.sh tags

### Building Workflow JSON

Every workflow needs: name, nodes[], connections{}, settings{}.

Every node needs: id, name, type, typeVersion, position, parameters.

Connections use source node display name as key, mapping outputs to target nodes.

For 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

### Key Rules

Always set "executionOrder": "v1" in settings
Node names must be unique within a workflow
Node IDs must be unique — use descriptive slugs like webhook1, code1
Position nodes starting at [250, 300], spacing ~200px horizontally
IF nodes have two outputs: index 0 = true, index 1 = false
Webhook workflows need respondToWebhook node if responseMode is responseNode
Credentials must exist in n8n before activation — check with scripts/n8n-api.sh credentials
Test before activating — use scripts/n8n-api.sh execute <id> for manual trigger workflows
Use continueOnFail: true on risky HTTP/API nodes, then check for errors downstream

### Common Real Estate Workflows

Lead intake: Webhook → validate → dedupe → insert DB → notify Slack/SMS
Call follow-up: Schedule → query DB for completed calls → send SMS/email based on outcome
Drip campaign: Schedule → query leads by stage → send stage-appropriate email/SMS
CRM sync: Webhook → transform → update HubSpot/Salesforce + internal DB
Property alerts: Schedule → scrape/API listings → filter new → notify leads
AI qualification: Webhook → AI Agent (classify lead intent) → route to appropriate pipeline
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: kassimisai
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-12T10:07:17.620Z
- Expires at: 2026-05-19T10:07:17.620Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/n8n-builder)
- [Send to Agent page](https://openagent3.xyz/skills/n8n-builder/agent)
- [JSON manifest](https://openagent3.xyz/skills/n8n-builder/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/n8n-builder/agent.md)
- [Download page](https://openagent3.xyz/downloads/n8n-builder)