用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill n8n-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | n8n-workflow |
| description | Automate document workflows with n8n - 7800+ workflow templates |
| author | claude-office-skills |
| version | 1.0 |
| tags | ["workflow","automation","n8n","integration"] |
| models | ["claude-sonnet-4","claude-opus-4"] |
| tools | ["computer","code_execution","file_operations"] |
| library | {"name":"n8n","url":"https://github.com/n8n-io/n8n","stars":"172k"} |
This skill enables document workflow automation using n8n - the most popular workflow automation platform with 7800+ community templates. Chain document operations, integrate with 400+ apps, and build complex document pipelines.
Example prompts:
n8n uses a node-based workflow approach:
Trigger → Action → Action → Output
│ │ │
└─────────┴─────────┴── Data flows between nodes
| Type | Examples | Use Case |
|---|---|---|
| Triggers | Webhook, Schedule, File Watcher | Start workflow |
| Document | Read PDF, Write DOCX, OCR | Process files |
| Transform | Code, Set, Merge | Manipulate data |
| Output | Email, Slack, Google Drive | Deliver results |
{
"nodes": [
{
"name": "Watch Folder",
"type": "n8n-nodes-base.localFileTrigger",
"parameters": {
"path": "/contracts/incoming",
"events": ["add"]
}
},
{
"name": "Extract Text",
"type": "n8n-nodes-base.readPdf"
},
{
"name": "AI Review",
"type": "n8n-nodes-base.anthropic",
"parameters": {
"model": "claude-sonnet-4-20250514",
"prompt":
| Option | Pros | Cons |
|---|---|---|
| Self-hosted | Free, full control, data privacy | Maintenance required |
| n8n Cloud | No setup, auto-updates | Costs at scale |
# Docker quick start
docker run -it --rm \
-p 5678:5678 \
-v ~/.n8n:/home/node/.n8n \
n8nio/n8n
# Install required dependencies
pip install python-docx openpyxl python-pptx reportlab jinja2