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

neckr0ik-automation-templatesneckr0ik 自动化模板

Agent Skill

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

总安装

11,232

周安装

468

GitHub Stars

公开资料未说明

下载量

3,744
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install neckr0ik-automation-templates

简介

neckr0ik-automation-templates 提供 n8n、Make.com 等平台的即用型自动化模板,帮助快速部署常见工作流程。

  • 适用于批量复制、定制和发布自动化任务,提升运营效率。
  • 通过 clawhub 安装后可查阅具体模板结构和适配场景。
  • 使用前应评估是否需要联网调用外部服务或执行敏感操作。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
neckr0ik-automation-templates
version
1.0.0
description
Ready-to-use automation templates for n8n, Make.com, and Zapier. Pre-built workflows for common use cases. Copy, customize, deploy. Use when you need quick automation setups.

Automation Templates

Ready-to-use workflows for n8n, Make.com, and Zapier.

What This Provides

  • 50+ pre-built templates — Copy and customize
  • Multi-platform — n8n, Make.com, Zapier compatible
  • Common use cases — Email, CRM, data sync, notifications
  • Production-ready — Tested and documented

Quick Start

# List all templates
neckr0ik-automation-templates list

# Get a specific template
neckr0ik-automation-templates get --name email-drip-campaign --platform n8n

# Search templates
neckr0ik-automation-templates search --keyword email --platform make

# Generate from template
neckr0ik-automation-templates generate --template lead-capture --output ./workflow.json

Template Categories

Email & Marketing

TemplatePlatformDescription
email-drip-campaignAllMulti-email sequence with delays
newsletter-signupAllAdd to list + welcome email
lead-captureAllForm → CRM → Email sequence
social-schedulerAllSchedule posts across platforms
abandoned-cartAllE-commerce cart recovery

CRM & Sales

TemplatePlatformDescription
crm-syncAllSync contacts across CRMs
lead-scoringAllScore leads based on activity
deal-pipelineAllMove deals through stages
follow-up-sequenceAllAutomated follow-ups
meeting-schedulerAllBook meetings + confirmations

Data & Sync

TemplatePlatformDescription
sheets-to-databaseAllGoogle Sheets → Airtable/Notion
webhook-to-slackAllWebhook notifications to Slack
file-backupAllAuto-backup files to cloud
data-pipelineAllExtract → Transform → Load
api-syncAllSync data between APIs

Notifications & Alerts

TemplatePlatformDescription
error-alertAllError notifications to Slack/Email
daily-reportAllScheduled summary reports
keyword-monitorAllMonitor mentions/keywords
price-change-alertAllTrack price changes
uptime-monitorAllWebsite uptime monitoring

E-commerce

TemplatePlatformDescription
order-confirmationAllOrder → Email → CRM
inventory-syncAllSync inventory across channels
payment-receiptAllPayment → Receipt → CRM
customer-onboardingAllWelcome sequence for new customers
review-requestAllRequest reviews post-purchase

Template Format

Each template includes:

{
  "name": "template-name",
  "platform": "n8n|make|zapier",
  "category": "email|crm|data|notification|ecommerce",
  "description": "What this template does",
  "trigger": { ... },
  "nodes": [ ... ],
  "connections": { ... },
  "settings": { ... },
  "variables": {
    "API_KEY": "Your API key",
    "WEBHOOK_URL": "Your webhook URL"
  },
  "docs": "Setup instructions"
}

Commands

list

List available templates.

neckr0ik-automation-templates list [options]

Options:
  --category <name>    Filter by category
  --platform <name>    Filter by platform

get

Get a specific template.

neckr0ik-automation-templates get --name <template> --platform <platform>

Options:
  --output <file>      Save to file
  --format <format>    Output format (json, yaml)

search

Search templates by keyword.

neckr0ik-automation-templates search --keyword <term> [options]

Options:
  --platform <name>    Filter by platform
  --category <name>    Filter by category

generate

Generate workflow from template.

neckr0ik-automation-templates generate --template <name> [options]

Options:
  --platform <name>    Target platform
  --output <dir>       Output directory
  --customize          Interactive customization

Use Cases

1. Quick Email Drip Campaign

# Get template
neckr0ik-automation-templates get --name email-drip-campaign --platform n8n

# Import to n8n
# Copy workflow.json content
# Paste into n8n workflow editor
# Configure your email provider
# Activate

2. Lead Capture System

# Get template
neckr0ik-automation-templates get --name lead-capture --platform make

# Configure
# Set form webhook URL
# Add your CRM credentials
# Customize email templates
# Activate

3. Daily Report

# Get template
neckr0ik-automation-templates get --name daily-report --platform zapier

# Configure
# Set data sources
# Set report destination
# Set schedule
# Activate

Customization

Each template has variables you need to set:

{
  "variables": {
    "EMAIL_FROM": "noreply@yourcompany.com",
    "EMAIL_TO": "team@yourcompany.com",
    "SLACK_WEBHOOK": "https://hooks.slack.com/...",
    "AIRTABLE_API_KEY": "key...",
    "MAKE_WEBHOOK": "https://hook.make.com/..."
  }
}

Contribution

To add a new template:

  1. Create templates/your-template.json
  2. Include all required fields
  3. Test on target platform
  4. Submit PR

See Also

  • templates/ — Template files
  • scripts/generator.py — Template generator
  • references/platforms.md — Platform-specific notes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

87.9%
按下载量换算3,291

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills