{% extends "base.html" %} {% set active_nav = 'apps' %} {% block title %}{{ manifest.name }} — Loom Workshop{% endblock %} {% block content %}

{{ manifest.name }} v{{ manifest.version }}

{{ manifest.description }}

Manifest
Loom version
{{ manifest.loom_version }}
Required extras
{% if manifest.required_extras %} {% for extra in manifest.required_extras %} {{ extra }}{% if not loop.last %} {% endif %} {% endfor %} {% else %} None {% endif %}
{% if manifest.python_package %}
Python package
{{ manifest.python_package.name }} ({{ manifest.python_package.install_path }})
{% endif %}
Entry Configs
{% if manifest.entry_configs.workers %}
Workers ({{ manifest.entry_configs.workers | length }})
{% endif %} {% if manifest.entry_configs.pipelines %}
Pipelines ({{ manifest.entry_configs.pipelines | length }})
{% endif %} {% if manifest.entry_configs.schedulers %}
Schedulers ({{ manifest.entry_configs.schedulers | length }})
{% endif %} {% if manifest.entry_configs.mcp %}
MCP ({{ manifest.entry_configs.mcp | length }})
{% endif %}
{% if manifest.scripts %}
Scripts
{% for script in manifest.scripts %} {% endfor %}
PathDescription
{{ script.path }}{{ script.description }}
{% endif %}

← Back to Apps

{% endblock %}