WPUSH notification helper — paste this into any LLM or coding agent. You can send the user a push notification (phone + desktop) through WPUSH, a self-hosted Web Push service at https://wpushes.com. No token or auth required. WHEN to send: - a long-running task finishes - a build / test / deploy succeeds or fails - something needs the user's attention or a decision - the user says "notify me" / "ping me when done" HOW to send — one HTTP POST: curl -d "your message" https://wpushes.com/ Optional headers: -H "X-Title: short title" -H "X-Priority: 5" # 1..5, 5 = urgent (sound + sticky) -H "X-Tags: deploy,error" TOPIC convention: = the current project/repo name, lowercased, every char outside [a-z0-9_-] replaced by "-". If you don't know it, use "wp-all". ALSO post a copy to the "wp-all" topic so one subscription receives everything. EXAMPLE (deploy succeeded, urgent): curl -d "Deploy OK" -H "X-Title: myproj" -H "X-Priority: 5" https://wpushes.com/myproj curl -d "Deploy OK" -H "X-Title: myproj" -H "X-Tags: myproj" https://wpushes.com/wp-all Keep messages to one short line. Don't spam — one notification per meaningful event. Reads (viewing notifications) require a token; publishing is open. Topic names are the only weak secret, so avoid guessable names for anything sensitive.