{{ registration_info.name }}

{% if registration_info.description %}

{{ registration_info.description }}

{% endif %} {% if registration_info.version %}

Version: {{ registration_info.version }}

{% endif %}

Agent Information

{% if registration_info.id %}
ID
{{ registration_info.id }}
{% endif %} {% if registration_info.api_path %}
API Path
{{ registration_info.api_path }}
{% endif %} {% if registration_info.author %}
Author
{{ registration_info.author }}
{% endif %} {% if registration_info.developer %}
Developer
{{ registration_info.developer }}
{% endif %} {% if registration_info.maintainer %}
Maintainer
{{ registration_info.maintainer }}
{% endif %} {% if registration_info.editor %}
Editor
{{ registration_info.editor }}
{% endif %} {% if registration_info.max_execution_time %}
Max Execution Time
{{ registration_info.max_execution_time }} seconds
{% endif %}
{% if registration_info.tags %}

Tags

{% for tag in registration_info.tags %} {{ tag }} {% endfor %}
{% endif %} {% if registration_info.methods %}

Available Methods

{% if registration_info.methods.job_start %}

Job Start

{% if registration_info.methods.job_start.description %}

{{ registration_info.methods.job_start.description }}

{% endif %}
{% endif %} {% if registration_info.methods.job_stop %}

Job Stop

{% if registration_info.methods.job_stop.description %}

{{ registration_info.methods.job_stop.description }}

{% endif %}
{% endif %} {% if registration_info.methods.job_status %}

Job Status

{% if registration_info.methods.job_status.description %}

{{ registration_info.methods.job_status.description }}

{% endif %}
{% endif %} {% if registration_info.methods.chat %}

Chat

{% if registration_info.methods.chat.description %}

{{ registration_info.methods.chat.description }}

{% endif %}
{% endif %} {% if registration_info.methods.custom %} {% for method_name, method_info in registration_info.methods.custom.items() %}

{{ method_name }}

{% if method_info.description %}

{{ method_info.description }}

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

Parameters

{% if registration_info.parameters_setup %}
{% for param in registration_info.parameters_setup %} {% endfor %}
Name Description Type Required
{{ param.name }} {{ param.description or "-" }} {% if param.is_secret %} Secret {% else %} Standard {% endif %} {% if param.is_required %} Required {% else %} Optional {% endif %}
{% else %}

No parameters configured.

{% endif %}

Setup instructions

TBD