feat(ntfy): add ntfy platform adapter with atomic reconnect, identity fix, and 81 tests

This commit is contained in:
sprmn24 2026-05-23 00:54:18 +03:00 committed by Teknium
parent 874c2b1fe6
commit b10f17bf1e
10 changed files with 1318 additions and 3 deletions

View file

@ -270,6 +270,11 @@ TOOLSETS = {
"includes": [],
},
"ntfy": {
"description": "ntfy push notification toolset",
"tools": [],
"includes": ["hermes-ntfy"],
},
"yuanbao": {
"description": "Yuanbao platform tools - group info, member queries, DM, stickers",
"tools": [
@ -515,6 +520,11 @@ TOOLSETS = {
"includes": []
},
"hermes-ntfy": {
"description": "ntfy push notification bot toolset",
"tools": _HERMES_CORE_TOOLS,
"includes": []
},
"hermes-sms": {
"description": "SMS bot toolset - interact with Hermes via SMS (Twilio)",
"tools": _HERMES_CORE_TOOLS,
@ -530,7 +540,7 @@ TOOLSETS = {
"hermes-gateway": {
"description": "Gateway toolset - union of all messaging platform tools",
"tools": [],
"includes": ["hermes-telegram", "hermes-discord", "hermes-whatsapp", "hermes-slack", "hermes-signal", "hermes-bluebubbles", "hermes-homeassistant", "hermes-email", "hermes-sms", "hermes-mattermost", "hermes-matrix", "hermes-dingtalk", "hermes-feishu", "hermes-wecom", "hermes-wecom-callback", "hermes-weixin", "hermes-qqbot", "hermes-webhook", "hermes-yuanbao"]
"includes": ["hermes-telegram", "hermes-discord", "hermes-whatsapp", "hermes-slack", "hermes-signal", "hermes-bluebubbles", "hermes-homeassistant", "hermes-email", "hermes-sms", "hermes-mattermost", "hermes-matrix", "hermes-dingtalk", "hermes-feishu", "hermes-wecom", "hermes-wecom-callback", "hermes-weixin", "hermes-qqbot", "hermes-webhook", "hermes-yuanbao", "hermes-ntfy"]
}
}