{% extends "base.html" %} {% from "components/tool_card.html" import tool_card %} {% block title %}{{ collection.display_name }} - CmdForge Collections{% endblock %} {% block meta_description %}{{ collection.description or 'A curated collection of AI-powered CLI tools.' }}{% endblock %} {% block content %}
{% if collection.icon %} {{ collection.icon }} {% else %} {% endif %}

{{ collection.display_name }}

Curated by {{ collection.maintainer }}

{% if collection.description %}

{{ collection.description }}

{% endif %}
{% if collection.tags %}
{% for tag in collection.tags %} {{ tag }} {% endfor %}
{% endif %}
cmdforge install --collection {{ collection.name }}

Installs {{ collection.tools|length if collection.tools else 0 }} tool{{ 's' if collection.tools|length != 1 else '' }} with a single command

Tools in this Collection

{{ collection.tools|length if collection.tools else 0 }} tool{{ 's' if collection.tools|length != 1 else '' }} included

{% if collection.tools %}
{% for tool in collection.tools %} {% if tool.owner and tool.name %} {{ tool_card(tool) }} {% else %}

{{ tool }}

Tool not yet in registry

{% endif %} {% endfor %}
{% else %}

No tools in this collection

This collection doesn't have any tools yet.

{% endif %}
{% endblock %}