{% extends "base.html" %} {% from "components/collection_card.html" import collection_card %} {% block title %}Collections - CmdForge Registry{% endblock %} {% block meta_description %}Browse curated collections of AI tools. Install multiple tools at once with a single command.{% endblock %} {% block content %}

Collections

Curated groups of tools that work great together. Install an entire collection with a single command.

{% if collections %}

{{ collections|length }} collection{{ 's' if collections|length != 1 else '' }} available

{% for collection in collections %} {{ collection_card(collection) }} {% endfor %}
{% else %}

No collections yet

Collections are coming soon! They'll let you install groups of related tools together.

Browse Individual Tools
{% endif %}
{% endblock %}