{% extends "base.html" %} {% block title %}Downloads{% endblock %} {% block content %}

Agent Downloads

{{ agents | length }} agents
{% if not agents %}
No builds registered yet. Builds will appear here after GitHub Actions workflows complete.
{% else %}
{% for slug, agent in agents.items() %}

{{ agent.name }}

{{ agent.builds | length }} build{{ 's' if agent.builds | length != 1 }}
{% for build in agent.builds[:3] %}
{% if build.platform == 'linux' %} 🐧 {% elif build.platform == 'macos' %} 🍎 {% elif build.platform == 'windows' %} 🪟 {% endif %} {{ build.version }} {% if loop.first %} latest {% endif %}
{{ build.filename }} {% if build.file_size %} · {{ (build.file_size / 1048576) | round(1) }}MB {% endif %} · {{ build.built_at | timeago }} {% if build.commit_sha %} · {{ build.commit_sha[:7] }} {% endif %}
Download
{% endfor %} {% if agent.builds | length > 3 %}
+ {{ agent.builds | length - 3 }} older build{{ 's' if agent.builds | length - 3 != 1 }}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}