- Public GitHub Repository
-
custom_components/evcc_scheduler/Ordner mit Integration - Alle Integration-Dateien in einem Ordner (kein Splitting)
- Nur eine Integration pro Repository
Repository Root/
├── custom_components/
│ └── evcc_scheduler/
│ ├── __init__.py
│ ├── api.py
│ ├── config_flow.py
│ ├── const.py
│ ├── coordinator.py
│ ├── entity_manager.py
│ ├── mapping.py
│ ├── services.py
│ ├── services.yaml
│ ├── switch.py
│ ├── websocket_api.py
│ ├── websocket_client.py
│ ├── manifest.json
│ ├── translations/
│ │ ├── de.json
│ │ └── en.json
│ └── ws_api.py
├── hacs.json (Root)
├── README.md
├── LICENSE
└── .github/
✅ Status: Korrekt strukturiert
-
domainFeld vorhanden -
nameFeld vorhanden -
versionFeld vorhanden (0.1.2) -
documentationURL vorhanden -
issue_trackerURL vorhanden (korrekt benannt, nichtissuetracker) -
codeownersArray vorhanden -
homeassistantFeld mit Mindestversion -
iot_classFeld vorhanden -
config_flowSet to true
{
"domain": "evcc_scheduler",
"name": "EVCC Scheduler",
"version": "0.1.2",
"documentation": "https://github.com/diestrohs/ha-evcc-scheduler",
"issue_tracker": "https://github.com/diestrohs/ha-evcc-scheduler/issues",
"codeowners": ["@diestrohs"],
"homeassistant": "2025.12.0",
"iot_class": "local_polling",
"config_flow": true,
"integration_type": "service",
"platforms": ["switch"]
}✅ Status: Alle erforderlichen Felder vorhanden und korrekt
- Im Repository-Root (nicht in custom_components/)
-
nameFeld vorhanden -
homeassistantFeld mit Mindestversion -
documentationURL vorhanden -
issue_trackerURL vorhanden (korrekt benannt) - Keine
requirements(gehören ins manifest.json)
{
"name": "EVCC Scheduler",
"homeassistant": "2025.12.0",
"hacs": "2.0.0",
"documentation": "https://github.com/yourusername/evcc_scheduler",
"issue_tracker": "https://github.com/yourusername/evcc_scheduler/issues"
}✅ Status: Minimal und korrekt konfiguriert
- Vorhanden und aussagekräftig
- Installation-Anleitung
- Features beschrieben
- Konfiguration erklärt
- Viele Sprachen unterstützt (EN/DE)
✅ Status: Umfangreiche Dokumentation vorhanden
- MIT License vorhanden (LICENSE Datei)
- Lizenztext vollständig
✅ Status: MIT License aktiv
- Git Repository vorhanden
- .git/ Ordner mit History
- Commits vorhanden
✅ Status: Git-Setup korrekt
- Type-Hints für Funktionen
- Logging mit
_LOGGER - Fehlerbehandlung implementiert
- Async/await Pattern konsistent
- Keine hartcodierten Secrets/Credentials
✅ Status: Production-ready Code
- Status: Veröffentlicht (0.0.1 - 0.1.2)
- Empfehlung: Für HACS-Store-Sichtbarkeit erstellt
Verfügbare Releases:
GitHub → Releases:
- 0.0.1 (Initial)
- 0.0.2 (Features)
- 0.0.3 (Services)
- 0.0.4 (Optimierungen)
- 0.1.0 (Stable)
- 0.1.2 (Patch - aktuell)
- Status: Nicht registriert
- Nächster Schritt: Optional, nur für HACS Default Store
- Anforderung: Fork von https://github.com/home-assistant/brands
Was zu tun ist:
1. Fork https://github.com/home-assistant/brands
2. Folder erstellen: custom_integrations/evcc_scheduler/
3. Icon hinzufügen: icon.png (512x512) + icon@2x.png
4. Pull Request an home-assistant/brands
# 1. HACS öffnen
# 2. Integrationen → ⋮ Menü → Custom Repositories
# 3. URL eintragen: https://github.com/yourusername/evcc_scheduler
# 4. Kategorie: Integration
# 5. Erstellen
# 6. EVCC Scheduler → Installieren
# 7. HA neu startenErwartetes Ergebnis:
- ✅ Integration installiert
- ✅ Konfigurationsflow erscheint
- ✅ Service registriert
- ✅ Entities erstellt
# Integration lokal testen:
# 1. Datei: custom_components/evcc_scheduler/
# 2. In HA config directory kopieren
# 3. HA neu starten
# 4. Developer Tools → Services prüfen
# 5. Entities prüfenWenn Sie später ins HACS Default Store möchten:
- Struktur korrekt
- manifest.json korrekt
- hacs.json vorhanden
- README vorhanden
- License vorhanden
- Code-Qualität gut
Nächster Schritt: Benutzer können hinzufügen via Custom Repository URL
- GitHub Releases für 0.0.1 - 0.1.2 erstellt
- Mehrere Releases für HACS-Sichtbarkeit verfügbar
- Stable Release (0.1.2) vorhanden
- Test-Feedback von Benutzern einholen
Wann: Nach ein paar Wochen Betrieb mit Custom Repository
- Home Assistant Brands registrieren (optional)
- Issue in https://github.com/hacs/default erstellen
- Anfrage: "Add integration to default store"
- HACS-Team wird Repository überprüfen
- Bei OK: Ins Default Store aufgenommen
Link: https://www.hacs.xyz/docs/publish/include/
Ursachen:
- hacs.json im falschen Ordner (sollte im Root sein, nicht in custom_components/)
- Feldname falsch:
issuetrackerstattissue_tracker - JSON-Syntax-Fehler
Lösung:
{
"name": "EVCC Scheduler",
"homeassistant": "2025.12.0",
"hacs": "2.0.0",
"documentation": "https://...",
"issue_tracker": "https://..." // ← issue_tracker (nicht issuetracker)
}Ursachen:
- Fehlende erforderliche Felder
- Feldname falsch:
issuetrackerstattissue_tracker
Lösung:
{
"domain": "evcc_scheduler",
"name": "EVCC Scheduler",
"version": "0.1.2",
"documentation": "https://github.com/diestrohs/ha-evcc-scheduler",
"issue_tracker": "https://github.com/diestrohs/ha-evcc-scheduler/issues",
"codeowners": ["@diestrohs"],
"homeassistant": "2025.12.0",
"iot_class": "local_polling",
"config_flow": true,
"integration_type": "service",
"platforms": ["switch"]
}Ursachen:
- Keine Releases erstellt
- Repository nicht public
- HACS nicht aktualisiert (Cache)
Lösung:
- GitHub Releases erstellen
- HACS neu laden/updaten
- Custom Repository hinzufügen (als Zwischenlösung)
- HACS Default Include anfordern
Ursachen:
- manifest.json Version ≠ GitHub Release Tag
Lösung:
manifest.json: "version": "0.1.2"
GitHub Tag: "0.1.2" ← exakt gleich!
- HACS Docs: https://www.hacs.xyz/docs/publish/start/
- Integration Anforderungen: https://www.hacs.xyz/docs/publish/integration/
- Manifest Dokumentation: https://developers.home-assistant.io/docs/creating_integration_manifest
- HACS Include: https://www.hacs.xyz/docs/publish/include/
- GitHub Brands: https://github.com/home-assistant/brands
- Home Assistant Discord: https://discord.gg/home-assistant
| Kategorie | Status | Nächster Schritt |
|---|---|---|
| Repository | ✅ Ready | Nichts (ist fertig) |
| manifest.json | ✅ Valid | Nichts (ist fertig) |
| hacs.json | ✅ Valid | Nichts (ist fertig) |
| Dokumentation | ✅ Excellent | Nichts (ist fertig) |
| GitHub Releases | ℹ️ Optional | Releases erstellen (empfohlen) |
| Home Assistant Brands | ℹ️ Optional | Nur für Default Store |
| HACS Default Store | 📋 Später | Nach stabiler Release |
Zusammenfassung:
- ✅ Custom Repository: Sofort einsatzbereit
- 📋 HACS Default Store: Nach Releases & Stabilisierung möglich
Status: ✅ HACS-kompatibel (Custom Repository Ready)
Aktualisiert: 24. Januar 2026
Version: 0.1.2