What problem does it solve? Writing Python in n8n Code nodes fails frequently because of hidden constraints: no external libraries, webhook data nested under body, strict return format requirements, and confusing data access syntax. This Skill provides the patterns, error fixes, and standard library reference needed to write working Python Code nodes. ## Core Features & Use Cases - Data Access Patterns: Complete guidance on _input.all(), _input.first(), _input.item, and _node references, including the critical webhook body nesting gotcha. - Error Prevention: Solutions for the top 5 Python Code node errors including ModuleNotFoundError, KeyError, IndexError, missing returns, and incorrect return formats. - Standard Library Reference: Documents available modules (json, datetime, re, base64, hashlib, urllib.parse, statistics) with workarounds for missing libraries like requests and pandas. - Use Case: You need to aggregate webhook submissions, filter records by regex patterns, and compute statistics in an n8n workflow. Use this Skill to write a Python Code node that safely accesses _input.all(), transforms items with list comprehensions, and returns properly formatted [{"json": {...}}] output. ## Quick Start Ask the AI to write a Python Code node for n8n that filters incoming webhook items by a field value and returns aggregated statistics.