{% extends "dashboard/base.html" %} {% block title %}Schedules — {{ dashboard_title }}{% endblock %} {% block page_title %}Schedules{% endblock %} {% block content %}
Manage and monitor your automated workflows.
| Name | Agent | Cron | Type | Enabled | Next Run | Actions |
|---|---|---|---|---|---|---|
|
schedule
{{ s.name }} {{ s.timezone }} |
{{ agent_names.get(s.agent_id, s.agent_id) }} | {{ s.cron_expr }} | {% if s.source == 'admin' %} Admin {% else %} Workspace {% endif %} | {% if current_user and current_user.is_admin %} {% else %} {{ 'On' if s.enabled else 'Off' }} {% endif %} |
{{ format_datetime(s.next_run_at) if s.next_run_at else '—' }}
{{ relative_time(s.next_run_at) if s.next_run_at else '' }}
|
{% if current_user and current_user.is_admin %}
edit
{% if s.source == 'admin' %}
{% endif %}
{% else %}
{% endif %}
|
|
person
{{ s.name }} {{ s.timezone }} |
{{ agent_names.get(s.agent_id, s.agent_id) }} | {{ s.cron_expr }} | Personal |
{{ format_datetime(s.next_run_at) if s.next_run_at else '—' }}
{{ relative_time(s.next_run_at) if s.next_run_at else '' }}
|
edit |
Schedules are derived from agent AGENT.md files, admin-created, or personal tasks.
Add schedules: to your agent's AGENT.md, create a personal schedule, or use the "New Schedule" button above.