What problem does it solve? Validation errors in n8n workflows are common and often require 2-3 validate-fix iterations to resolve, leaving users confused about which errors block execution, which warnings are acceptable false positives, and which issues are auto-fixed by n8n's sanitization system. ## 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 based on workflow stage and 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 type_mismatch error on a Slack node limit field, consult the error catalog to learn the value must be a number rather than a string, fix it, and re-validate. ## Quick Start Ask the assistant to explain why my n8n Slack node validation is failing and how to fix the reported errors.