{% extends "base.html" %} {% import "_macros.html" as ui %} {% block title %}{{ 'Business Groups' if tab == 'businesses' else ('RSS' if tab == 'rss-bots' else tab | title) }} — SimpleX Manager{% endblock %} {% block head %} {% endblock %} {% block content %} {% set new_label = 'User' if tab == 'users' else ('Business Group' if tab == 'businesses' else ('RSS Bot' if tab == 'rss-bots' else 'Bot')) %} {% set page_title = 'Business Groups' if tab == 'businesses' else ('RSS' if tab == 'rss-bots' else tab | title) %}
A business group uses a business address: each customer who connects gets their own group chat (so teammates can be added). You handle those conversations here, the same way you chat in a group. Set an optional welcome message to auto-greet new customers.
RSS bots read from an RSS/Atom feed and post new items to a channel. To receive a feed, share the bot's channel link with subscribers — open the bot and copy its channel link, not the user address.
| echo | Repeats every message back to the sender — handy for testing a connection end to end. |
| llm | Chat with a local or remote LLM (OpenAI-compatible, e.g. Ollama). Give it context, it replies to your messages. |
| crypto | Streams selected crypto prices (CoinGecko) to a channel on an interval. Pick coins & currencies below. |
| broadcast | Relays messages from authorized publishers out to all of the bot's contacts. |
| support | Business inbox — auto-replies with a welcome message and collects incoming inquiries. |
| directory | Directory service for discovering and listing groups or contacts. |
| deadmans | Dead man's switch — triggers an action if expected check-ins stop arriving. |
Create a SimpleX user account to manage contacts and channels.
{% elif tab == 'businesses' %} No business groups yetCreate a business group; each customer who connects gets their own group chat.
{% elif tab == 'rss-bots' %} No RSS bots yetCreate an RSS bot to post a feed to a channel.
{% else %} No bots yetBots can echo messages, broadcast to subscribers, or run automated tasks.
{% endif %}