What problem does it solve? Writing JavaScript in n8n Code nodes causes frequent failures from wrong return formats, confused expression syntax, and mishandled webhook data, and this Skill provides the patterns and references to avoid those errors. ## Core Features & Use Cases - Data Access Patterns: Covers $input.all(), $input.first(), $input.item, and $node references, including the critical webhook .body nesting gotcha. - Production Patterns: Provides 10 tested patterns such as multi-source aggregation, regex filtering, CRM transformation, and Slack Block Kit formatting. - Error Prevention: Documents the top 5 Code node errors (missing return, {{ }} syntax confusion, wrong return wrapper, unmatched brackets, missing null checks) with fixes. - Built-in Functions Reference: Details $helpers.httpRequest(), DateTime (Luxon), $jmespath(), and $getWorkflowStaticData(). - Use Case: When building an n8n workflow that aggregates API responses and sends a formatted Slack report, use this Skill to write the Code node correctly on the first attempt. ## Quick Start Ask the AI to write an n8n Code node in JavaScript that processes webhook data and returns properly formatted items.