{% extends "dashboard/base.html" %} {% block title %}My Schedules — {{ dashboard_title }}{% endblock %} {% block page_title %}My Schedules{% endblock %} {% block content %} {% if user_schedules %}
{% for s in user_schedules %} {% endfor %}
Name Agent Schedule Status Message Timezone Notify Last Run Actions
{{ s.name }} {{ agent_names.get(s.agent_id, s.agent_id) }} {{ s.cron_expr }} {% if s.enabled %} Enabled {% else %} Disabled {% endif %} {{ (s.message or "")[:60] }}{% if s.message and s.message | length > 60 %}…{% endif %} {{ s.timezone }} {% if s.notify %} On {% else %} {% endif %} {{ relative_time(s.last_run_at) }}
{% else %}
No personal schedules
Create a schedule below to run agents on a cron schedule.
{% endif %} {% if available_agents %}

Add Schedule

Cron: 0 9 * * * Every day at 09:00
Custom instructions injected into the agent's system prompt when this schedule fires. Max 4000 characters.
{% if notification_channels %}
{% endif %}
{% endif %} {% endblock %}