{{ tool.name }}
{{ tool.description }}
{% endif %} {% if tool.tags %}
{% for tag in tool.tags.split(',') %}
{{ tag.strip() }}
{% endfor %}
{% endif %}
{% if tool.source %}
{% if tool.source.type == 'forked' %}
Forked from
{% elif tool.source.type == 'imported' %}
Based on
{% else %}
Source:
{% endif %}
{% if tool.source.original_tool %}
{% if tool.source.url %}
{{ tool.source.original_tool }}
{% else %}
{{ tool.source.original_tool }}
{% endif %}
{% elif tool.source.url %}
{{ tool.source.url }}
{% endif %}
{% if tool.source.author %}
Author: {{ tool.source.author }}
{% endif %}
{% if tool.source.license %}
License: {{ tool.source.license }}
{% endif %}
{% if tool.readme %}
{{ tool.readme_html|safe }}
{% else %}
About {{ tool.name }}
{{ tool.description or 'No additional documentation available.' }}
Installation
cmdforge install {{ tool.owner }}/{{ tool.name }}
Usage
{{ tool.name }} --help
{% endif %}