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
CODEBLOCK0
Template Categories
Email & Marketing
| Template | Platform | Description |
|---|
| email-drip-campaign | All | Multi-email sequence with delays |
| newsletter-signup |
All | Add to list + welcome email |
| lead-capture | All | Form → CRM → Email sequence |
| social-scheduler | All | Schedule posts across platforms |
| abandoned-cart | All | E-commerce cart recovery |
CRM & Sales
| Template | Platform | Description |
|---|
| crm-sync | All | Sync contacts across CRMs |
| lead-scoring |
All | Score leads based on activity |
| deal-pipeline | All | Move deals through stages |
| follow-up-sequence | All | Automated follow-ups |
| meeting-scheduler | All | Book meetings + confirmations |
Data & Sync
| Template | Platform | Description |
|---|
| sheets-to-database | All | Google Sheets → Airtable/Notion |
| webhook-to-slack |
All | Webhook notifications to Slack |
| file-backup | All | Auto-backup files to cloud |
| data-pipeline | All | Extract → Transform → Load |
| api-sync | All | Sync data between APIs |
Notifications & Alerts
| Template | Platform | Description |
|---|
| error-alert | All | Error notifications to Slack/Email |
| daily-report |
All | Scheduled summary reports |
| keyword-monitor | All | Monitor mentions/keywords |
| price-change-alert | All | Track price changes |
| uptime-monitor | All | Website uptime monitoring |
E-commerce
| Template | Platform | Description |
|---|
| order-confirmation | All | Order → Email → CRM |
| inventory-sync |
All | Sync inventory across channels |
| payment-receipt | All | Payment → Receipt → CRM |
| customer-onboarding | All | Welcome sequence for new customers |
| review-request | All | Request reviews post-purchase |
Template Format
Each template includes:
CODEBLOCK1
Commands
list
List available templates.
CODEBLOCK2
get
Get a specific template.
CODEBLOCK3
search
Search templates by keyword.
CODEBLOCK4
generate
Generate workflow from template.
CODEBLOCK5
Use Cases
1. Quick Email Drip Campaign
CODEBLOCK6
2. Lead Capture System
CODEBLOCK7
3. Daily Report
CODEBLOCK8
Customization
Each template has variables you need to set:
CODEBLOCK9
Contribution
To add a new template:
- 1. Create INLINECODE0
- Include all required fields
- Test on target platform
- Submit PR
See Also
- -
templates/ — Template files - INLINECODE2 — Template generator
- INLINECODE3 — Platform-specific notes
自动化模板
适用于n8n、Make.com和Zapier的即用型工作流。
提供的功能
- - 50多个预制模板 — 可复制并自定义
- 多平台兼容 — 支持n8n、Make.com、Zapier
- 常见用例 — 邮件、CRM、数据同步、通知
- 生产就绪 — 经过测试并有文档记录
快速开始
bash
列出所有模板
neckr0ik-automation-templates list
获取特定模板
neckr0ik-automation-templates get --name email-drip-campaign --platform n8n
搜索模板
neckr0ik-automation-templates search --keyword email --platform make
从模板生成
neckr0ik-automation-templates generate --template lead-capture --output ./workflow.json
模板分类
邮件与营销
| 模板 | 平台 | 描述 |
|---|
| email-drip-campaign | 全部 | 带延迟的多邮件序列 |
| newsletter-signup |
全部 | 添加到列表 + 欢迎邮件 |
| lead-capture | 全部 | 表单 → CRM → 邮件序列 |
| social-scheduler | 全部 | 跨平台安排帖子 |
| abandoned-cart | 全部 | 电商购物车恢复 |
CRM与销售
| 模板 | 平台 | 描述 |
|---|
| crm-sync | 全部 | 跨CRM同步联系人 |
| lead-scoring |
全部 | 根据活动对线索评分 |
| deal-pipeline | 全部 | 推动交易通过各阶段 |
| follow-up-sequence | 全部 | 自动跟进 |
| meeting-scheduler | 全部 | 预约会议 + 确认 |
数据与同步
| 模板 | 平台 | 描述 |
|---|
| sheets-to-database | 全部 | Google Sheets → Airtable/Notion |
| webhook-to-slack |
全部 | Webhook通知到Slack |
| file-backup | 全部 | 自动备份文件到云端 |
| data-pipeline | 全部 | 提取 → 转换 → 加载 |
| api-sync | 全部 | 在API之间同步数据 |
通知与告警
| 模板 | 平台 | 描述 |
|---|
| error-alert | 全部 | 错误通知到Slack/邮件 |
| daily-report |
全部 | 定时摘要报告 |
| keyword-monitor | 全部 | 监控提及/关键词 |
| price-change-alert | 全部 | 跟踪价格变动 |
| uptime-monitor | 全部 | 网站运行时间监控 |
电子商务
| 模板 | 平台 | 描述 |
|---|
| order-confirmation | 全部 | 订单 → 邮件 → CRM |
| inventory-sync |
全部 | 跨渠道同步库存 |
| payment-receipt | 全部 | 支付 → 收据 → CRM |
| customer-onboarding | 全部 | 新客户欢迎序列 |
| review-request | 全部 | 购买后请求评价 |
模板格式
每个模板包含:
json
{
name: template-name,
platform: n8n|make|zapier,
category: email|crm|data|notification|ecommerce,
description: 此模板的功能,
trigger: { ... },
nodes: [ ... ],
connections: { ... },
settings: { ... },
variables: {
API_KEY: 您的API密钥,
WEBHOOK_URL: 您的Webhook URL
},
docs: 设置说明
}
命令
list
列出可用模板。
bash
neckr0ik-automation-templates list [options]
选项:
--category 按分类筛选
--platform 按平台筛选
get
获取特定模板。
bash
neckr0ik-automation-templates get --name --platform
选项:
--output 保存到文件
--format 输出格式(json, yaml)
search
按关键词搜索模板。
bash
neckr0ik-automation-templates search --keyword [options]
选项:
--platform 按平台筛选
--category 按分类筛选
generate
从模板生成工作流。
bash
neckr0ik-automation-templates generate --template [options]
选项:
--platform 目标平台
--output 输出目录
--customize 交互式自定义
使用案例
1. 快速邮件滴灌营销活动
bash
获取模板
neckr0ik-automation-templates get --name email-drip-campaign --platform n8n
导入到n8n
复制workflow.json内容
粘贴到n8n工作流编辑器
配置您的邮件提供商
激活
2. 线索捕获系统
bash
获取模板
neckr0ik-automation-templates get --name lead-capture --platform make
配置
设置表单Webhook URL
添加您的CRM凭据
自定义邮件模板
激活
3. 每日报告
bash
获取模板
neckr0ik-automation-templates get --name daily-report --platform zapier
配置
设置数据源
设置报告目标
设置计划
激活
自定义
每个模板都有需要设置的变量:
json
{
variables: {
EMAIL_FROM: noreply@yourcompany.com,
EMAIL_TO: team@yourcompany.com,
SLACK_WEBHOOK: https://hooks.slack.com/...,
AIRTABLEAPIKEY: key...,
MAKE_WEBHOOK: https://hook.make.com/...
}
}
贡献
要添加新模板:
- 1. 创建 templates/your-template.json
- 包含所有必填字段
- 在目标平台上测试
- 提交PR
另请参阅
- - templates/ — 模板文件
- scripts/generator.py — 模板生成器
- references/platforms.md — 平台特定说明