notification_payload=$(cat <<EOF
{
"message": "$escaped_message",
"title": "$escaped_title",
"data": {
"tag": "$escaped_request_id",
"group": "claude-code",
"actions": [
{
"action": "CLAUDE_ALLOW",
"title": " Allow"
},
{
"action": "CLAUDE_DENY",
"title": " Deny"
}
]
}
}
EOF
)
Actionable notifications are a bit cumbersome on iOS since you need to long-press the notification for actions, but it does work.So your hook -> HA -> push notification? And then you just tap to approve?