What problem does it solve?
Helps engineers and automation authors write correct, production-ready Python inside n8n Code nodes by clarifying data access, return formats, available standard library modules, and common failure modes so workflows don't break at runtime.
Core Features & Use Cases
- Explains _input/_json/_node access patterns and mode selection (All Items vs Each Item) for reliable data transformation.
- Documents the critical limitation of no external libraries and provides standard-library alternatives and node-based workarounds.
- Presents 10 production-tested patterns (aggregation, regex parsing, JSON comparison, CRM normalization, top-N filtering) and a top-5 error prevention guide for common runtime failures.
- Ideal for processing webhook payloads, transforming arrays of items, validating and normalizing records, and producing correctly formatted outputs for downstream nodes.
Quick Start
Use this skill when you need to write Python for an n8n Code node to parse webhook body data, transform items, and return results in the required [{"json": {...}}] format.