Repository Library

Manage repositories for automatic security analysis

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}
Add Repository
{% if library_repos %}
{% for repo in library_repos %}
{{ repo.name }}
AI: {{ repo.ai_service|title }}
Version: {{ repo.last_version or 'Not checked' }}
Last checked: {{ repo.last_checked.split('T')[0] if repo.last_checked else 'Never' }}
Added: {{ repo.created_at.split('T')[0] }}
{% endfor %}
{% else %}

No repositories in library

Add repositories to start automatic security analysis when new versions are released.

{% endif %}