Your Bot's Web Console Can Now Tell You What's Happening
The gap
If your HelaSyn bot only lives in the cloud console — no Telegram, no WhatsApp, just the web chat — two things used to happen quietly in the background, and you'd never know.
First: if someone sent your bot a friend request, it just... sat there. The bot itself knew about it, but nothing in the web console told you. Owners who only ever used web chat could have pending requests they'd never see — there was nowhere in the console to even go looking.
Second: reminders you'd set up — a daily follow-up nudge, say — were firing correctly on the backend. The bot was generating the follow-up message right on schedule. It just never made it into your web chat window. The same reminder worked fine if you talked to your bot on Telegram; on web, it went nowhere.
Both fixes shipped earlier this summer. They're really the same fix wearing two hats: the web console should surface what your bot already knows, not just what you happen to type into it next.
What changed
A notification bell in the cloud console. There's now a bell icon with an unread-count badge in the HelaSyn Cloud web console. It surfaces:
- Friend requests — with Accept, Decline, and Dismiss actions right there in the bell dropdown.
- Race and challenge events — shown as view-only updates you can dismiss, since those resolve automatically on their own timer rather than needing a decision from you.
- Reminders — also view-only, with a link straight into the relevant chat.
Reminders now reply in the actual conversation. Previously, a web-channel reminder follow-up asked the bot to send a message to a target that didn't really exist on web, so it went nowhere. Now, when a reminder fires for a bot you're talking to on web, the bot's follow-up message appears directly in that chat, exactly like any other reply — and it stays in your chat history afterward, so scrolling back up shows the same follow-up thread you'd expect if you were looking at it from the start. It also rings the same bell.
One thing that's still Telegram-only by design: the daily "morning summary" digest some bots send. That one is intentionally scoped to Telegram for now and isn't part of this change.
Why this took two separate fixes
The friend-request gap and the reminder gap look similar from the outside — "something happened and I didn't see it" — but they were different bugs under the hood. The friend-request problem was about the console never being told a request existed at all. The reminder problem was about the console being told, and then a filter built for a different purpose (keeping the bot's raw internal scheduling messages out of your chat window) accidentally catching the bot's own reply along with it, plus the reply itself pointing nowhere on the web channel specifically.
Fixing them separately meant each fix could be reviewed and shipped on its own timeline, without one blocking the other. But addressing both together closes the same underlying gap: a web-only bot owner should never have less visibility into their own bot's activity than someone on Telegram does.
Q&A
Do I need to do anything to get this? No. Both changes are live now for HelaSyn Cloud web console users — there's nothing to enable.
What can I do from the notification bell? Accept, decline, or dismiss a friend request directly from the dropdown. Race/challenge events and reminders show up as informational items you can view or dismiss, since they don't need a yes/no decision from you.
Will old reminders that "went missing" reappear now? Yes, for ones that were already there — earlier reminder follow-ups that the bot had sent but that the web chat view was hiding now show up if you scroll back through that conversation's history. What the fix doesn't do is reconstruct anything that was never stored in the first place.
Does this affect bots that also use Telegram or WhatsApp? No — those channels already delivered friend-request notifications and reminders correctly. This closes the gap specifically for the web-only path.
What's next
This is about console visibility catching up to what bots were already capable of. The bell is built to carry more event types as they come up, not just friend requests and reminders.