{% extends "base.html" %} {% import "_icons.html" as icons %} {% block title %}Scheduled tasks{% endblock %} {% block heading %}Scheduled tasks{% endblock %} {% block subhead %}

Schedulable automations and their last recorded run (matched from the audit trail).

{% endblock %} {% block head_aside %} {% set installed = tasks | selectattr('installed') | list | length %}
{{ icons.icon("scheduled", 14) }} {{ tasks | length }} tasks {{ icons.icon("check-circle", 14) }} {{ installed }} installed
{% endblock %} {% block content %} {% if tasks %}

{{ icons.icon("info", 13) }} Install a task with eidetic skills install <slug>, then register it on its cadence — see docs/SCHEDULED-TASKS.md.

{% else %}
{{ icons.icon("scheduled", 32) }}

No schedulable skills found in this install.

{% endif %} {% endblock %}