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

reef-n8n-automation礁石 n8n 自动化

Agent Skill

reef-n8n-automation 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,068

周安装

1,095

GitHub Stars

公开资料未说明

下载量

8,497
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install reef-n8n-automation

简介

使用包含 2,061 个模板库的触发器、操作、错误处理和多步骤自动化,快速构建、自定义和交付 n8n 工作流程。

SKILL.md

n8n Automation — Build & Deliver Workflows Fast

Build, customize, and deliver n8n workflows using our 2,061-template library. Reference: ~/projects/n8n-workflows/ — browse by integration folder. Our n8n instance: localhost:5678 (requires fnm use 22 before starting). All outputs go to workspace/artifacts/.

Use when

  • Building an n8n workflow for a client (Upwork, Alfred, direct)
  • Customizing a template from our library for a specific use case
  • Debugging or optimizing an existing n8n workflow
  • Designing a workflow architecture before building
  • Estimating delivery time for a workflow project
  • Importing/exporting workflow JSON

Don't use when

  • Finding Upwork jobs (use upwork-hunting skill)
  • Writing the client proposal (use proposal-writing skill)
  • General coding tasks not involving n8n
  • Zapier/Make.com builds (different platforms, different nodes)

Negative examples

  • "Find me automation jobs on Upwork" → No. Use upwork-hunting.
  • "Build me a Python script" → No. This is n8n-specific.
  • "Set up my n8n server" → Borderline. Infrastructure setup is ops, not workflow building. But credential configuration fits here.

Edge cases

  • Workflow uses custom JavaScript (Code node) → YES. n8n supports inline JS.
  • Client wants Zapier→n8n migration → YES. Map Zapier triggers/actions to n8n equivalents.
  • Workflow needs external API with no n8n node → YES. Use HTTP Request node.
  • Multi-workflow orchestration → YES. Use Execute Workflow node.

Template Library Quick Reference

Location: ~/projects/n8n-workflows/workflows/ Structure: workflows/[IntegrationName]/[id]_[integration]_[action]_[trigger].json

Finding the Right Template

# List all templates for an integration
ls ~/projects/n8n-workflows/workflows/Twilio/

# Search across all workflows
find ~/projects/n8n-workflows/workflows/ -name "*.json" | grep -i "shopify"

# Count templates per integration
ls ~/projects/n8n-workflows/workflows/ | while read d; do echo "$(ls ~/projects/n8n-workflows/workflows/$d/ | wc -l) $d"; done | sort -rn | head -20

Top Integration Folders (by Upwork demand)

IntegrationPathCommon Jobs
Gmailworkflows/Gmail/Auto-responders, lead capture, notifications
Google Sheetsworkflows/Googlesheets/Data logging, reporting, sync
Slackworkflows/Slack/Notifications, bots, CRM sync
Twilioworkflows/Twilio/SMS automation, call routing, alerts
Telegramworkflows/Telegram/Chatbots, notifications, AI assistants
WhatsAppworkflows/Whatsapp/Business messaging, chatbots
Shopifyworkflows/Shopify/Order notifications, inventory sync
HubSpotworkflows/Hubspot/CRM automation, lead routing
Calendlyworkflows/Calendly/Booking confirmations, follow-ups
OpenAIworkflows/Openai/AI chatbots, content generation
Webhookworkflows/Webhook/Custom triggers, API integrations
Airtableworkflows/Airtable/Database sync, form processing

Workflow Building Process

Step 1: Assess Requirements

From client discovery, answer:

  • What triggers the workflow? (webhook, schedule, form, app event)
  • What actions need to happen? (send email, update CRM, create record)
  • What data needs to flow? (fields, formats, transformations)
  • What error handling is needed? (retries, fallback, alerts)
  • What credentials are required? (API keys, OAuth, etc.)

Step 2: Find Matching Templates

# Search for relevant templates
find ~/projects/n8n-workflows/workflows/ -name "*.json" | xargs grep -l "keyword" 2>/dev/null

Or browse by integration folder. Most jobs need 2-3 templates stitched together.

Step 3: Import & Customize

  1. Copy template JSON
  2. In n8n: Menu → Import from File (or paste JSON)
  3. Update credentials (Client's API keys)
  4. Update field mappings (their data structure)
  5. Adjust trigger settings (their webhook URL, schedule, etc.)
  6. Add error handling nodes (Error Trigger → notification)

Step 4: Test

  • Use n8n's Manual Execution to test each node step-by-step
  • Verify data flows correctly between nodes
  • Test error paths (what happens when an API is down?)
  • Check rate limits (especially for bulk operations)

Step 5: Document & Deliver

Every delivered workflow includes:

## Workflow: [Name]
**Trigger:** [What starts it]
**Steps:** [1. → 2. → 3.]
**Credentials needed:** [List]
**Testing:** [How to verify it works]
**Maintenance:** [What might break and how to fix it]

Common Workflow Patterns

Pattern 1: Trigger → Transform → Action

The simplest and most common. Event happens → process data → do something.

[Webhook/Form/Schedule] → [Set/Code node: transform data] → [Send Email/Update CRM/Create Record]

Pattern 2: Trigger → Branch → Multiple Actions

Different outcomes based on conditions.

[Trigger] → [IF node: check condition] → True: [Action A] / False: [Action B]

Pattern 3: Scheduled Batch Processing

Periodic bulk operations.

[Cron/Schedule] → [Get data from Sheet/DB] → [Loop: process each item] → [Action per item]

Pattern 4: Webhook API Endpoint

n8n acts as an API that other services call.

[Webhook: receive request] → [Process] → [Respond to Webhook: return data]

Pattern 5: Multi-Step Pipeline

Complex workflows with multiple stages.

[Trigger] → [Enrich data] → [Route/Split] → [Multiple actions] → [Aggregate] → [Final action]

Pattern 6: Error-Resilient Workflow

Production-grade with error handling.

[Trigger] → [Try: main flow] → [Catch: Error Trigger] → [Alert via Slack/Email]

Node Cheat Sheet

NeedNodeNotes
Custom logicCodeJavaScript, access to all data
API call (no native node)HTTP RequestWorks with any REST API
Conditional routingIF / SwitchBranch based on data
Loop over itemsSplit In BatchesProcess items one at a time
Wait/delayWaitPause between steps
Merge dataMergeCombine data from branches
Transform dataSetRename/restructure fields
ScheduleSchedule TriggerCron expressions
WebhookWebhookReceive external HTTP calls
RespondRespond to WebhookReturn data to caller
Error handlingError TriggerCatch workflow errors
Sub-workflowExecute WorkflowCall another workflow

Credential Setup Checklist

Before delivering to a client, ensure:

  • [ ] All credentials use THEIR API keys (never ours)
  • [ ] OAuth tokens are connected to THEIR accounts
  • [ ] Webhook URLs point to THEIR n8n instance (or ours if managed)
  • [ ] Sensitive data isn't hardcoded in nodes (use credentials store)
  • [ ] Test credentials work in production (not just sandbox)

Delivery Checklist

  • [ ] Workflow tested end-to-end with real data
  • [ ] Error handling nodes in place
  • [ ] Documentation written (trigger, steps, credentials, maintenance)
  • [ ] Workflow JSON exported as backup
  • [ ] Client can import and run independently
  • [ ] Edge cases tested (empty data, API errors, rate limits)
  • [ ] Screenshot of working workflow included in delivery

Estimation Guide

ComplexityDescriptionTimePrice Range
Simple2-3 nodes, single trigger→action1-2 hrs$100-300
Standard4-8 nodes, branching, transforms2-4 hrs$300-600
Complex10+ nodes, multiple APIs, error handling4-8 hrs$600-1,200
EnterpriseMulti-workflow, database, custom code8-20 hrs$1,200-3,000

Our speed advantage: Templates cut these times by 40-60%.


n8n Instance Management

Start n8n:

eval "$(fnm env)" && fnm use 22 && nohup n8n start > /tmp/n8n.log 2>&1 &

Access: http://localhost:5678

Import workflow via API:

curl -X POST http://localhost:5678/api/v1/workflows \
  -H "Content-Type: application/json" \
  -H "X-N8N-API-KEY: $N8N_API_KEY" \
  -d @workflow.json

Our credentials configured:

  • Twilio API Auth (ID: 2hP5kiyhResadXrF)
  • More to be added per client

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.68%
按下载量换算8,130

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills