← 返回 Skills 市场
364
总下载
0
收藏
3
当前安装
1
版本数
在 OpenClaw 中安装
/install neckr0ik-automation-templates
功能描述
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 a...
使用说明 (SKILL.md)
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
| 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:
{
"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 \x3Cname> Filter by category
--platform \x3Cname> Filter by platform
get
Get a specific template.
neckr0ik-automation-templates get --name \x3Ctemplate> --platform \x3Cplatform>
Options:
--output \x3Cfile> Save to file
--format \x3Cformat> Output format (json, yaml)
search
Search templates by keyword.
neckr0ik-automation-templates search --keyword \x3Cterm> [options]
Options:
--platform \x3Cname> Filter by platform
--category \x3Cname> Filter by category
generate
Generate workflow from template.
neckr0ik-automation-templates generate --template \x3Cname> [options]
Options:
--platform \x3Cname> Target platform
--output \x3Cdir> 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": "[email protected]",
"EMAIL_TO": "[email protected]",
"SLACK_WEBHOOK": "https://hooks.slack.com/...",
"AIRTABLE_API_KEY": "key...",
"MAKE_WEBHOOK": "https://hook.make.com/..."
}
}
Contribution
To add a new template:
- Create
templates/your-template.json - Include all required fields
- Test on target platform
- Submit PR
See Also
templates/— Template filesscripts/generator.py— Template generatorreferences/platforms.md— Platform-specific notes
安全使用建议
This package looks like a legitimate templates bundle, but note a few practical issues before installing/using it: 1) The SKILL.md refers to a CLI 'neckr0ik-automation-templates', a templates/ folder, and scripts/generator.py that are not present — you'll likely need to run scripts/templates.py directly or add an entrypoint yourself. 2) The templates contain placeholders for API keys and webhook URLs; never paste production secrets into files or public places — prefer using platform secrets/password stores or environment variables in the target automation platform. 3) Inspect the templates (open the JSON objects in scripts/templates.py or any template files) to ensure no unexpected external endpoints or hard-coded secrets are present before importing into your automation platform. 4) If you need the documentation to match the package, ask the author for a proper install/entrypoint and the missing templates/ generator files. If you want extra caution, run the script in a local/sandbox environment and review all template contents before use.
功能分析
Type: OpenClaw Skill
Name: neckr0ik-automation-templates
Version: 1.0.0
The skill bundle provides a library of automation templates for platforms like n8n, Make.com, and Zapier. The Python script (scripts/templates.py) is a straightforward CLI tool for listing, searching, and generating workflow configurations from hardcoded data, with no evidence of network activity, file exfiltration, or malicious execution logic.
能力评估
Purpose & Capability
Name/description match the included artifacts: templates described for n8n/Make/Zapier and a Python script (scripts/templates.py) that embeds template data and provides list/get/search/generate functionality. Minor inconsistencies: SKILL.md and 'See Also' reference a templates/ directory and scripts/generator.py, but the package contains an embedded TEMPLATES dict in scripts/templates.py instead of separate template files or a generator.py entrypoint. The claw.json dependency on pyyaml is reasonable for templates. These mismatches look like sloppy docs/packaging rather than malicious intent.
Instruction Scope
SKILL.md only instructs the agent/user to list, get, search, and generate templates and to copy/paste resulting workflow JSON into the target automation platform. It does not instruct reading unrelated system files or exfiltrating data. However, the documentation assumes a CLI named 'neckr0ik-automation-templates' that is not provided by an install spec—so runtime instructions may not work as-written without the user creating an entrypoint. The docs also tell users to populate API keys/webhook URLs in templates (expected), so users should avoid pasting real secrets into public/unsandboxed locations.
Install Mechanism
There is no install spec (instruction-only), which is low risk. The package does include a Python script and a declared dependency on pyyaml; there is no remote URL download or archive extraction. The missing install/entrypoint means the CLI commands referenced in SKILL.md are inconsistent with the provided files — likely a packaging/documentation oversight rather than an install-related threat.
Credentials
The templates include placeholders for API keys and webhooks (Slack webhook, Airtable API key, Google Sheet IDs, etc.), which is expected for automation templates. The skill does not request environment variables, credentials, or config paths from the agent itself. No unrelated secrets or credentials are required by the package.
Persistence & Privilege
Flags show always: false and normal user-invocable/autonomous settings. The skill does not request permanent presence or elevated privileges, nor does it attempt to modify other skills or system-wide settings.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install neckr0ik-automation-templates - 安装完成后,直接呼叫该 Skill 的名称或使用
/neckr0ik-automation-templates触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of neckr0ik-automation-templates
- Launches with 50+ ready-to-use automation templates for n8n, Make.com, and Zapier.
- Supports common use cases: Email, CRM, data sync, notifications, e-commerce, and more.
- Includes CLI commands for listing, getting, searching, and generating templates.
- Provides detailed documentation, template formats, and quick start examples.
- Enables fast customization and deployment of pre-built workflows.
元数据
常见问题
Neckr0ik Automation Templates 是什么?
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 a... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 364 次。
如何安装 Neckr0ik Automation Templates?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install neckr0ik-automation-templates」即可一键安装,无需额外配置。
Neckr0ik Automation Templates 是免费的吗?
是的,Neckr0ik Automation Templates 完全免费(开源免费),可自由下载、安装和使用。
Neckr0ik Automation Templates 支持哪些平台?
Neckr0ik Automation Templates 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Neckr0ik Automation Templates?
由 Neckr0ik(@neckr0ik)开发并维护,当前版本 v1.0.0。
推荐 Skills