What problem does it solve? Validation errors in n8n workflows are common and often require 2-3 fix cycles, leaving users confused about which errors block execution, which warnings are acceptable false positives, and which issues are auto-fixed by sanitization. ## 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 Profiles: Guides selection 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_operation returns a missing_required error on a Slack node, consult the error catalog to identify the required field via get_node_essentials, fix the config, and re-validate until valid. ## Quick Start Ask the assistant to explain and fix the validation error returned by validate_node_operation for your n8n node configuration.