ha-hacs
Installation
SKILL.md
HACS Metadata Guide
HACS (Home Assistant Community Store) is the standard distribution method for custom integrations.
Repository Structure
my-integration/
├── custom_components/
│ └── {domain}/
│ ├── __init__.py
│ ├── manifest.json # HA manifest (required)
│ ├── config_flow.py
│ └── ...
├── hacs.json # HACS metadata (required)
├── README.md # Documentation (required)
├── LICENSE # License file (recommended)
└── .github/
└── workflows/
Related skills