{% extends "base.html" %} {% block title %}Subscriptions — Agent Wasp{% endblock %} {% block page_css %} {% endblock %} {% block content %}

Subscriptions

RSS feeds & price alerts — checked every 5 minutes

{{ active_count }}
Active
{{ rss_subs|length }}
RSS Feeds
{{ price_subs|length }}
Price Alerts
{% if not subs %}

No subscriptions yet

Ask the agent to create RSS or price alert subscriptions via chat

subscribe(action="rss", url="https://...", name="My Feed")

subscribe(action="price", symbol="BTC", above="100000")

{% else %} {% if price_subs %}
Price Alerts {{ price_subs|length }}
{% for s in price_subs %}
{{ s.name }}
{{ s.symbol }}
{{ s.status }}
{% if s.above %}↑ ${{ "{:,.0f}".format(s.above) }}{% endif %} {% if s.below %}↓ ${{ "{:,.0f}".format(s.below) }}{% endif %} every {{ s.interval_label }}
checked: {{ s.last_check }} · alerted: {{ s.last_alert }}
{% if s.status == 'active' %} {% else %} {% endif %}
{% endfor %}
{% endif %} {% if rss_subs %}
RSS Feeds {{ rss_subs|length }}
{% for s in rss_subs %}
{{ s.name }} {{ s.status }} every {{ s.interval_label }} {% if s.seen_count %}{{ s.seen_count }} seen{% endif %}
{{ s.url }}
checked: {{ s.last_check }}
{% if s.status == 'active' %} {% else %} {% endif %}
{% endfor %}
{% endif %} {% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}