{% extends "base.html" %} {% from "components/tool_card.html" import tool_card %} {% block title %}Browse Tools - SmartTools Registry{% endblock %} {% block meta_description %}Discover and install community-built AI tools. Browse by category, search by name, or explore the most popular tools.{% endblock %} {% block content %}

Browse Tools

Discover community-built AI tools for your command line.

{% if query %} {{ tools|length }} results for "{{ query }}" {% elif current_category %} {{ tools|length }} tools in {{ current_category }} {% else %} {{ tools|length }} tools available {% endif %}

{% 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 %}
{% if pagination %} {% endif %} {% else %}

No tools found

{% if query %} No tools match your search. Try different keywords. {% else %} Be the first to publish a tool in this category! {% endif %}

Learn to Publish
{% endif %}
{% endblock %}