{% extends 'base.html' %} {% block title %}Blueprint Library - Open Swarm{% endblock %} {% block content %}

Blueprint Library

Browse and manage your AI agent blueprints. Add them to your library or create custom ones.

Total Available

{{ blueprints_by_category|length }}

Installed

{{ installed_count }}

Custom Created

{{ custom_count }}

Categories

{{ categories|length }}

{% for category_id, blueprints in blueprints_by_category.items %} {% for blueprint in blueprints %}
{% include "blueprint_card.html" with blueprint=blueprint %}
{% endfor %} {% endfor %}
{% for category_id, blueprints in blueprints_by_category.items %}
{% for blueprint in blueprints %}
{% include "blueprint_card.html" with blueprint=blueprint %}
{% endfor %}
{% endfor %} {% if github_marketplace_enabled %}
{% endif %}
{% endblock %}