{% extends "base.html" %} {% from "components/tool_card.html" import tool_card %} {% block title %}{{ publisher.display_name }} (@{{ publisher.slug }}) - CmdForge{% endblock %} {% block meta_description %}{{ publisher.bio or 'CmdForge publisher profile for ' ~ publisher.display_name }}{% endblock %} {% block content %}
{{ publisher.display_name[0]|upper }}

{{ publisher.display_name }}

{% if publisher.verified %} {% endif %}

@{{ publisher.slug }}

{% if publisher.bio %}

{{ publisher.bio }}

{% endif %}
{% if publisher.website %} Website {% endif %} {{ tools|length }} tool{{ 's' if tools|length != 1 else '' }} Joined {{ publisher.created_at|date_format }} {% if stats.total_downloads %} {{ stats.total_downloads_formatted or stats.total_downloads }} downloads {% endif %} {% if stats.average_rating and stats.total_reviews %} {{ "%.1f"|format(stats.average_rating) }} ({{ stats.total_reviews }} review{{ 's' if stats.total_reviews != 1 else '' }}) {% endif %}
{% if stats.badges %}
{% for badge in stats.badges %} {% if badge.icon == 'shield-check' %} {% elif badge.icon == 'award' %} {% elif badge.icon == 'layers' %} {% elif badge.icon == 'clock' %} {% elif badge.icon == 'trending-up' %} {% elif badge.icon == 'message-circle' %} {% elif badge.icon == 'star' %} {% endif %} {{ badge.name }} {% endfor %}
{% endif %} {% if stats.trust_score and stats.trust_score > 0 %}
Trust Score:
{{ stats.trust_score|int }}
{% endif %}

Published Tools

{% if tools %}
{% for tool in tools %} {{ tool_card( owner=tool.owner, name=tool.name, description=tool.description, category=tool.category, downloads=tool.downloads, version=tool.version ) }} {% endfor %}
{% else %}

No tools published yet.

{% endif %}
{% endblock %}