{% if collector.prompts|length %}
{% for prompt in collector.prompts %}

{{ prompt.name }}

{% if prompt.description %}

Description: {{ prompt.description }}

{% endif %} {% if prompt.arguments|length %}

Arguments

{% for arg in prompt.arguments %} {% endfor %}
Name Required Description
{{ arg.name }} {% if arg.required %} Yes {% else %} No {% endif %} {{ arg.description ?? '-' }}
{% else %}

This prompt has no arguments.

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

No prompts were registered.

{% endif %}