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

n8n-workflow-templatesn8n 工作流程模板

Agent Skill

n8n-workflow-templates 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

33,240

周安装

1,385

GitHub Stars

公开资料未说明

下载量

11,080
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:n8n-workflow-templates(n8n 工作流程模板)
来源仓库:https://github.com/yoder-bawt/n8n-workflow-templates
安装命令:
openclaw skills install n8n-workflow-templates
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install n8n-workflow-templates

简介

提供预构建的生产就绪 n8n 工作流模板集合。

  • 适用于 Webhooks、RSS 监控、数据库同步等常见自动化场景。
  • 支持健康状况检查与社交指标跟踪功能模块。
  • 安装后可直接导入使用,需配置对应 API 密钥与触发条件。
  • n8n-workflow-templates 属于运维类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
n8n-workflow-templates
version
1.0.0
description
Production-ready n8n workflow templates for AI agents. Deploy pre-built automations for webhooks, RSS monitoring, health checks, social metrics, and data backup. Includes deployment scripts and workflow management utilities. Use when: (1) Setting up n8n automations from templates, (2) Deploying workflows to n8n instances, (3) Managing active workflows via API.
metadata
openclaw
requires
bins
["curl", "bash"]
env
["N8N_HOST", "N8N_API_KEY"]
config
[]
user-invocable
true
homepage
https://github.com/yoder-bawt
author
yoder-bawt

n8n Workflow Templates

Deploy production-ready n8n workflows in seconds. Five battle-tested templates plus management scripts for the complete n8n workflow lifecycle.

Quick Start

# Set your n8n credentials
export N8N_HOST="http://localhost:5678"
export N8N_API_KEY="n8n_api_xxxxx"

# List existing workflows
bash list-workflows.sh

# Deploy a template
bash deploy.sh "$N8N_HOST" "$N8N_API_KEY" templates/webhook-to-telegram.json

Templates

TemplateDescriptionUse Case
webhook-to-telegram.jsonWebhook receiver → Telegram alertsInstant notifications from any service
rss-monitor.jsonRSS feed monitoring with filteringTrack blogs, news, releases
health-check.jsonHTTP health checks with alertsMonitor services, APIs, websites
social-metrics.jsonScheduled social media collectionTrack followers, engagement
data-backup.jsonAutomated backup with notificationsDatabase/file backups

Detailed Usage

Environment Variables

VariableRequiredDefaultDescription
N8N_HOSTYes-n8n instance URL
N8N_API_KEYYes-API key from n8n settings

Deployment

bash deploy.sh <n8n-url> <api-key> <template-file> [workflow-name]

Arguments:

  • n8n-url - Full URL to n8n instance (e.g., http://10.0.0.120:5678)
  • api-key - n8n API key
  • template-file - Path to workflow JSON file
  • workflow-name (optional) - Override the workflow name

Example:

bash deploy.sh "http://10.0.0.120:5678" "n8n_api_abc123" templates/health-check.json "My Health Monitor"

Listing Workflows

bash list-workflows.sh <n8n-url> <api-key>

Lists all active workflows with their IDs, names, and activation status.

Template Details

webhook-to-telegram

Receives HTTP POST requests, processes JSON payload, sends formatted messages to Telegram.

Webhook URL: ${N8N_HOST}/webhook/workflow-id

Expected payload:

{
  "message": "Alert from my service",
  "level": "warning",
  "timestamp": "2026-02-10T22:00:00Z"
}

Required setup: Configure Telegram bot token and chat ID in the workflow.

rss-monitor

Monitors RSS feeds on schedule, filters by keywords, alerts on new items.

Features:

  • Runs every 15 minutes
  • Keyword filtering (include/exclude)
  • Duplicate detection
  • Multi-channel alerts (Telegram, Discord, email)

Required setup: Set RSS feed URL and alert destination.

health-check

Performs HTTP health checks, alerts on failure, tracks response times.

Features:

  • Configurable check interval
  • Response time thresholds
  • Consecutive failure alerts
  • Status history tracking

Required setup: Set target URLs and alert channels.

social-metrics

Collects social media metrics on schedule, stores for trending.

Features:

  • Daily metric collection
  • Multi-platform support (X/Twitter, LinkedIn, etc.)
  • Data storage in n8n or external DB
  • Trend analysis ready

Required setup: Configure API credentials for each platform.

data-backup

Automated backup workflow with pre/post checks and notifications.

Features:

  • Schedule-based execution
  • Pre-backup validation
  • Backup verification
  • Success/failure notifications
  • Retention policy enforcement

Required setup: Configure backup source, destination, and credentials.

API Reference

The scripts use n8n REST API v1:

GET  /api/v1/workflows          # List workflows
POST /api/v1/workflows          # Create workflow
GET  /api/v1/workflows/:id      # Get workflow
PUT  /api/v1/workflows/:id      # Update workflow
POST /api/v1/workflows/:id/activate    # Activate
POST /api/v1/workflows/:id/deactivate  # Deactivate

Full API docs: ${N8N_HOST}/api/v1/docs

Customizing Templates

Templates are standard n8n workflow JSON. Edit in n8n UI or modify the JSON directly:

# Copy and customize
cp templates/health-check.json my-custom-check.json
# Edit my-custom-check.json with your favorite editor
bash deploy.sh "$N8N_HOST" "$N8N_API_KEY" my-custom-check.json

Troubleshooting

"Unauthorized" error

  • Verify API key is correct
  • Check API key hasn't expired in n8n settings

"Connection refused"

  • Verify n8n is running
  • Check N8N_HOST includes correct port
  • Ensure firewall allows connection

Workflow won't activate

  • Check all credentials are configured in the workflow
  • Verify webhook nodes don't conflict with existing webhooks
  • Check n8n execution logs for errors

Template deployment fails

  • Validate JSON: python3 -c "import json; json.load(open('template.json'))"
  • Check n8n version compatibility (templates tested on v1.0+)

Requirements

  • n8n instance v1.0 or later
  • API access enabled in n8n settings
  • curl and bash
  • Network access to n8n instance

See Also

  • n8n Documentation: https://docs.n8n.io/
  • n8n API Reference: https://docs.n8n.io/api/
  • Workflow examples: https://n8n.io/workflows/

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.61%
按下载量换算9,264

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills