hermes - 💡(How to fix) Fix [Feature]: HA outbound - support notify service (mobile push) [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
NousResearch/hermes-agent#23136Fetched 2026-05-11 03:30:56
View on GitHub
Comments
0
Participants
1
Timeline
4
Reactions
0
Participants
Timeline (top)
labeled ×3cross-referenced ×1

Code Example

url = f"{self._hass_url}/api/services/persistent_notification/create"
payload = {"title": "Hermes Agent", "message": content}

---

platforms:
  homeassistant:
    enabled: true
    extra:
      notify_service: "notify.mobile_app_iphone"

---

POST /api/services/notify/<service_name>
{"title": "Hermes Agent", "message": content}
RAW_BUFFERClick to expand / collapse

Problem

The Home Assistant adapter only delivers outbound messages as persistent_notification.create (sidebar). Cron job results and cross-platform messages go to the HA notification panel, which is easy to miss on mobile.

Current behavior

gateway/platforms/homeassistant.py send() ignores the chat_id parameter and always creates a sidebar notification:

url = f"{self._hass_url}/api/services/persistent_notification/create"
payload = {"title": "Hermes Agent", "message": content}

Proposed solution

Add an optional config field for the notify service:

platforms:
  homeassistant:
    enabled: true
    extra:
      notify_service: "notify.mobile_app_iphone"

In send():

  • If notify_service configured → call that service
  • If not → fall back to current persistent_notification.create
POST /api/services/notify/<service_name>
{"title": "Hermes Agent", "message": content}

Environment

  • Hermes version: 0.13.0
  • HA version: 2026.05

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix [Feature]: HA outbound - support notify service (mobile push) [1 participants]