一键导入
n8n-python
Guidance for writing Python code in n8n Code nodes. Use when requested or for specific statistical tasks. [SAFE]
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidance for writing Python code in n8n Code nodes. Use when requested or for specific statistical tasks. [SAFE]
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
detecta patrones de escritura de IA y reescribe el contenido para que suene natural, directo y con personalidad humana.
Guide for writing correct n8n expressions in {{ }} syntax. [SAFE]
Best practices for writing JavaScript in n8n Code nodes. [SAFE]
Expert guide for using n8n-mcp MCP tools effectively. Use when searching for nodes, validating configurations, or managing workflows. [SAFE]
Guidance on configuring n8n nodes, dependencies, and required fields. [SAFE]
Expert guidance on interpreting and fixing n8n validation errors. [SAFE]
| name | n8n-python |
| description | Guidance for writing Python code in n8n Code nodes. Use when requested or for specific statistical tasks. [SAFE] |
Expert guidance for writing custom logic in n8n Python Code nodes.
Use JavaScript for 95% of use cases. Only use Python when specifically requested or for Python-specific standard library capabilities (like statistics or hashlib).
You cannot import external packages like requests, pandas, or numpy. Only the Python Standard Library is available.
Always return a list of dictionaries with a "json" key:
return [{
"json": {
"result": "success",
"data": my_data
}
}]
.get() to avoid KeyErrors (e.g., item["json"].get("field", "default")).statistics module (built-in) for mean, median, etc.