ha-diagnostics
Installation
SKILL.md
Home Assistant Diagnostics Implementation
Diagnostics provide users and developers with structured debug information while protecting sensitive data. Required for Gold tier on the Integration Quality Scale.
File Structure
custom_components/{domain}/
├── __init__.py
├── diagnostics.py # Diagnostics implementation
└── ...
Basic diagnostics.py Template
"""Diagnostics support for {Name}."""
from __future__ import annotations
Related skills