{% extends "base.html" %} {% block title %}{{ guide_title }} — {{ config.INSTANCE_NAME }}{% endblock %} {% block content %} {# Publication-flow guide. Reached from the action-row CTA on /marketplace ("Submit a plugin" on the curated tab; the flea variant is reachable only as a fallback since flea has a self-service +Upload button). Two distinct flows, one template — `guide_kind` switches the body. #}
← Back to {{ 'Curated Marketplace' if guide_kind == 'curated' else 'Flea Market' }}

{{ guide_title }}

{% if guide_kind == 'curated' %} {# Curated submission guide — body intentionally left minimal; full content to be authored separately. The CTA buttons at the bottom of the page still let the user jump back to the Curated tab or browse the Flea Market as a self-service alternative. #}

The Curated Marketplace is publish-by-curator only. To get your skill, agent, or plugin listed, hand it off to a curator who reviews and publishes it on your behalf.

{% else %} {# Flea publishing guide — body intentionally left minimal; full content to be authored separately. The CTA buttons at the bottom of the page still let the user jump to /store/new or browse the Flea Market. #}

The Flea Market is self-service. Anyone in the company can upload a skill, agent, or plugin.

{% endif %}
{{ '+ Upload to Flea Market' if guide_kind == 'flea' else '← Back to Curated' }} {{ 'Browse Flea Market' if guide_kind == 'curated' else 'Browse Curated' }} →
{% endblock %}