ha-validate-dashboards
Installation
SKILL.md
Home Assistant Dashboard Validation
Validates Home Assistant dashboard and configuration changes using a comprehensive 3-tier validation approach to catch errors before they impact users.
Quick Start
Run a complete validation before deploying a dashboard:
# 1. Validate config structure and entities (pre-publish)
python3 << 'EOF'
import json
with open('climate_dashboard.json') as f:
config = json.load(f)
from validation_helpers import validate_dashboard_config, verify_entities_exist, extract_all_entity_ids
Related skills