Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

n8n-automation-berzafN8N 自动化 Berzaf

Agent Skill

n8n-automation-berzaf 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,033

周安装

214

GitHub Stars

公开资料未说明

下载量

1,763
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:n8n-automation-berzaf(N8N 自动化 Berzaf)
来源仓库:https://github.com/beraiautomation/n8n-automation-berzaf
安装命令:
openclaw skills install n8n-automation-berzaf
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install n8n-automation-berzaf

简介

n8n-automation-berzaf 通过自然语言触发 n8n 自动化工作流程。

  • 支持潜在客户培育、邮件序列与社交媒体发布。
  • 适用于营销与销售团队的流程自动化需求。
  • 需提前配置好 n8n 实例与相关服务连接器。
  • 建议设置执行日志与异常告警机制。n8n-automation-berzaf 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
n8n-automation
description
>
version
1.0.0
author
berzaf
metadata
openclaw
emoji
requires
env
bins
install
kind
manual
label
Set N8N_WEBHOOK_BASE_URL and N8N_API_KEY in your environment

⚡ n8n Automation Skill

Overview

This skill connects your OpenClaw agent directly to your n8n instance so you can trigger powerful multi-step automations using plain natural language — no coding required at runtime.

What makes this skill different: It does not just call webhooks. It confirms before acting, validates inputs, reports results, handles errors gracefully, and remembers what was last triggered so you can easily repeat or modify runs.


Setup (One Time)

Before using this skill, export these two environment variables in your terminal or add them to your shell profile:

export N8N_WEBHOOK_BASE_URL="https://your-n8n-instance.com/webhook"
export N8N_API_KEY="your-n8n-api-key-here"

Then restart your OpenClaw gateway:

openclaw gateway restart

You will know setup worked when you type:

"n8n status"

And the agent responds with your instance URL confirmed.


Trigger Phrases

You can trigger this skill with any of these natural language phrases:

  • "trigger n8n [workflow name]"
  • "run automation for [contact/task]"
  • "send [email type] to [name]"
  • "post to social: [content]"
  • "update CRM for [name]"
  • "follow up with [name] from [meeting]"
  • "check competitors"
  • "send invoice reminder to [client]"
  • "n8n status" — checks your instance is reachable

Workflow 1 — Lead Nurture Email Sequence

What it does: Triggers a multi-step email sequence in n8n for a new lead. Sends welcome email on Day 1, value email on Day 3, case study on Day 7, and soft pitch on Day 14. All personalized.

Trigger examples:

  • "Send lead nurture to John Smith at john@company.com"
  • "Start nurture sequence for sarah@startup.io, she found us via YouTube"
  • "Add Maria to lead nurture, source is LinkedIn"

Required fields:

  • first_name
  • email
  • source (where they came from — optional but improves personalization)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/lead-nurture

Payload sent:

{
  "first_name": "string",
  "email": "string",
  "source": "string",
  "triggered_at": "ISO timestamp",
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "queued", "sequence_id": "..." }


Workflow 2 — Social Media Auto-Post

What it does: Takes content you describe or provide and posts it to your connected social platforms via n8n. Supports LinkedIn, X (Twitter), Instagram caption, Facebook, and Threads.

Trigger examples:

  • "Post to social: Just launched my new n8n + OpenClaw skill on ClawHub!"
  • "Post this to LinkedIn and X: [your content]"
  • "Schedule social post for tomorrow 9am: [content]"

Required fields:

  • content (the post text)
  • platforms (list: linkedin, x, instagram, facebook, threads)
  • schedule_time (optional — defaults to immediate)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/social-post

Payload sent:

{
  "content": "string",
  "platforms": ["linkedin", "x"],
  "schedule_time": "ISO timestamp or null",
  "hashtags": ["optional", "array"],
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "posted", "post_ids": {...} }


Workflow 3 — Meeting Follow-Up

What it does: After a meeting, triggers n8n to send a personalized follow-up email with meeting summary, action items, and next steps. Also optionally creates a follow-up task in your CRM.

Trigger examples:

  • "Send follow-up to Mike from today's discovery call"
  • "Follow up with the Acme team, meeting was about their automation needs"
  • "Post-meeting email to jennifer@client.com, action items: send proposal, book next call"

Required fields:

  • contact_name
  • contact_email
  • meeting_topic
  • action_items (list of strings)
  • next_step (optional)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/meeting-followup

Payload sent:

{
  "contact_name": "string",
  "contact_email": "string",
  "meeting_topic": "string",
  "action_items": ["item1", "item2"],
  "next_step": "string or null",
  "meeting_date": "ISO date",
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "sent", "email_id": "..." }


Workflow 4 — CRM Contact Update

What it does: Updates a contact record in your CRM (works with HubSpot, GoHighLevel, Airtable, Google Sheets CRM, or any CRM connected to your n8n). Logs notes, updates status, and sets follow-up date.

Trigger examples:

  • "Update CRM for John Smith — he said he's ready to buy next month"
  • "Mark Sarah as hot lead, she opened all emails"
  • "Log call with Mike: discussed pricing, follow up in 2 weeks"

Required fields:

  • contact_name or contact_email
  • notes
  • status (lead / warm / hot / closed-won / closed-lost)
  • follow_up_date (optional)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/crm-update

Payload sent:

{
  "contact_name": "string",
  "contact_email": "string or null",
  "notes": "string",
  "status": "string",
  "follow_up_date": "ISO date or null",
  "triggered_by": "openclaw",
  "logged_at": "ISO timestamp"
}

Expected n8n response: { "status": "updated", "contact_id": "..." }


Workflow 5 — Competitor Monitor Report

What it does: Triggers n8n to scrape and compare your top competitors — pricing pages, new blog posts, social activity, job postings (signals of growth or product changes). Returns a formatted report directly in your chat.

Trigger examples:

  • "Check competitors"
  • "Run competitor report for [your niche]"
  • "What changed on my competitors' sites this week?"

Required fields:

  • None (uses your pre-configured competitor list in n8n)
  • Optional: niche or specific competitor URL to add

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/competitor-monitor

Payload sent:

{
  "include_niche": "string or null",
  "add_competitor_url": "string or null",
  "report_type": "full or summary",
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "complete", "report": "markdown string" }

Display the report content directly in chat formatted as markdown.


Workflow 6 — Invoice Reminder

What it does: Sends a polite, personalized invoice reminder to a client. Supports first reminder, second nudge, and final notice tones. Logs the outreach attempt in your CRM automatically.

Trigger examples:

  • "Send invoice reminder to Acme Corp, invoice #1042, $2,500 due"
  • "Second reminder to mike@client.com for invoice 203"
  • "Final notice to sarah@company.com, overdue 30 days"

Required fields:

  • client_name
  • client_email
  • invoice_number
  • amount
  • due_date
  • reminder_type (first / second / final)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/invoice-reminder

Payload sent:

{
  "client_name": "string",
  "client_email": "string",
  "invoice_number": "string",
  "amount": "number",
  "due_date": "ISO date",
  "reminder_type": "first | second | final",
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "sent", "email_id": "..." }


Workflow 7 — YouTube / Content Repurpose

What it does: Takes a YouTube video URL or blog post URL and triggers n8n to repurpose it into: Twitter/X thread, LinkedIn post, email newsletter snippet, and short-form hook. Returns all versions in chat for your review before posting.

Trigger examples:

  • "Repurpose this video: https://youtube.com/watch?v=..."
  • "Turn my latest blog post into social content: [URL]"
  • "Create social posts from: [URL]"

Required fields:

  • url (YouTube or blog URL)
  • formats (thread, linkedin, email, hook — defaults to all)

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/content-repurpose

Payload sent:

{
  "url": "string",
  "formats": ["thread", "linkedin", "email", "hook"],
  "brand_voice": "punchy and direct",
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "complete", "content": { "thread": "...", "linkedin": "...", "email": "...", "hook": "..." } }

Display all content versions in chat for review.


Workflow 8 — Daily Briefing

What it does: Triggers n8n to pull together your full daily briefing: new leads from last 24 hours, open deals status, social media performance, emails that need replies, and your top 3 priorities for the day.

Trigger examples:

  • "Morning briefing"
  • "What happened overnight?"
  • "Daily digest"
  • "Give me my briefing"

Webhook endpoint: $N8N_WEBHOOK_BASE_URL/daily-briefing

Payload sent:

{
  "date": "ISO date",
  "sections": ["leads", "deals", "social", "email", "priorities"],
  "triggered_by": "openclaw"
}

Expected n8n response: { "status": "complete", "briefing": "markdown string" }

Display the briefing content formatted in chat.


Error Handling

If any webhook call fails, follow this sequence:

  1. Report the error clearly: "The [workflow name] webhook returned [error]. Here is what was sent: [payload summary]"
  2. Ask: "Should I retry, or would you like to check your n8n instance?"
  3. Do NOT silently fail or pretend the workflow ran
  4. Log the failed attempt in memory: "Failed workflow: [name] at [timestamp] — Error: [message]"

Rules (Always Follow These)

  • ALWAYS confirm what you are about to trigger before sending
  • NEVER expose API keys, webhook URLs, or credentials in chat
  • NEVER trigger a workflow without all required fields
  • If a required field is missing, ask for it before proceeding
  • NEVER send test data to production webhooks unless user confirms
  • Always report the n8n response status back to the user
  • If triggering email workflows, confirm the recipient email address out loud before sending
  • Log every successful trigger to daily memory: "[Workflow] triggered for [target] at [time]"

Status Check

At any time the user can type "n8n status" and you should:

  1. Run: python3 scripts/n8n_status.py
  2. Display the output exactly as returned
  3. If any workflows show as inactive, suggest running:

python3 scripts/n8n_validator.py

Scripts Reference

All scripts live in the scripts/ folder and use only environment variables — no secrets stored in files.

ScriptPurposeCommand
n8n_trigger.pyTrigger any workflowpython3 scripts/n8n_trigger.py <command>
n8n_validator.pyValidate all webhookspython3 scripts/n8n_validator.py
n8n_status.pyQuick status dashboardpython3 scripts/n8n_status.py

Quick test after setup:

python3 scripts/n8n_validator.py --env-only
python3 scripts/n8n_status.py
python3 scripts/n8n_trigger.py health --pretty

Slash Commands

  • /n8n-nurture — Quick trigger lead nurture
  • /n8n-post — Quick trigger social post
  • /n8n-followup — Quick trigger meeting follow-up
  • /n8n-crm — Quick trigger CRM update
  • /n8n-competitors — Quick trigger competitor report
  • /n8n-invoice — Quick trigger invoice reminder
  • /n8n-repurpose — Quick trigger content repurpose
  • /n8n-briefing — Quick trigger daily briefing
  • /n8n-status — Check instance health

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.95%
按下载量换算1,321

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills