What problem does it solve? Validation errors in n8n workflows are common and often require 2-3 iterative fix cycles, leaving users confused about which errors block execution, which warnings are acceptable false positives, and which issues auto-sanitization already handles. ## Core Features & Use Cases - Error Interpretation: Explains the five core error types (missing_required, invalid_value, type_mismatch, invalid_expression, invalid_reference) with concrete broken/fixed configuration examples. - Validation Profile Guidance: Helps choose between minimal, runtime, ai-friendly, and strict profiles depending on development stage and workflow criticality. - False Positive Triage: Provides a decision framework for when warnings like missing error handling, retry logic, or unbounded queries are acceptable versus must-fix. - Use Case: When validate_node returns a "missing_required: channel" error on a Slack node, use this Skill to identify the required field via get_node, apply the fix, and re-validate until the configuration passes. ## Quick Start Ask the AI to explain and fix the validation error returned by validate_node for your current n8n node configuration.