{% extends "base.html" %} {% block title %}{{ marketplace.name }} - Plugin Marketplace{% endblock %} {% block content %}
{% if marketplace.description %}

{{ marketplace.description }}

{% endif %}
Owner: {{ marketplace.owner.name }} Plugins: {{ marketplace.plugins | length }}
{% if categories %}
Categories: {% for cat in categories %} {% endfor %}
{% endif %} {% if tags %}
Tags: {% for tag in tags %} {% endfor %}
{% endif %} {% if tool_types %}
Tools: {% for tool in tool_types %} {% endfor %}
{% endif %}
{% for plugin in marketplace.plugins %}

{{ plugin.name }}

{% if plugin.description %}

{{ plugin.description }}

{% endif %}
{% if plugin.category %} {{ plugin.category }} {% endif %} {% if plugin.components.skills %} Skills {% endif %} {% if plugin.components.commands %} Commands {% endif %} {% if plugin.components.agents %} Agents {% endif %} {% if plugin.components.hooks %} Hooks {% endif %} {% if plugin.components.mcp_servers %} MCP {% endif %} {% if plugin.components.lsp_servers %} LSP {% endif %}
{% endfor %}
{% endblock %}