{% 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) %}

{{ page_title }}

{% if tab == 'businesses' %}

Business Groups

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.

{% endif %} {% if tab == 'rss-bots' %}

RSS

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.

{% endif %} {% if tab == 'bots' %}

Available bot types

echoRepeats every message back to the sender — handy for testing a connection end to end.
llmChat with a local or remote LLM (OpenAI-compatible, e.g. Ollama). Give it context, it replies to your messages.
cryptoStreams selected crypto prices (CoinGecko) to a channel on an interval. Pick coins & currencies below.
broadcastRelays messages from authorized publishers out to all of the bot's contacts.
supportBusiness inbox — auto-replies with a welcome message and collects incoming inquiries.
directoryDirectory service for discovering and listing groups or contacts.
deadmansDead man's switch — triggers an action if expected check-ins stop arriving.
{% endif %} {% if items %} {% for p in items %}
{% if p.config.avatar %} {% endif %} {{ p.name }} {{ p.bot_type }} {% if p.running %}running{% else %}stopped{% endif %}
{% if tab == 'rss-bots' %}
{{ '—' if not p.running else 'Loading…' }}
{% endif %} {% if p.address %}
{{ ui.linkbox(p.address, 'p' ~ p.id) }}
{% endif %}
{% endfor %} {% else %}
{% if tab == 'users' %} No users yet

Create a SimpleX user account to manage contacts and channels.

{% elif tab == 'businesses' %} No business groups yet

Create a business group; each customer who connects gets their own group chat.

{% elif tab == 'rss-bots' %} No RSS bots yet

Create an RSS bot to post a feed to a channel.

{% else %} No bots yet

Bots can echo messages, broadcast to subscribers, or run automated tasks.

{% endif %}
{% endif %}

New {{ new_label }}

{% if tab == 'businesses' %}
{% endif %} {% if tab == 'rss-bots' %}
{% endif %} {% if tab == 'bots' %}
{% endif %}
{% endblock %}