{% extends "base.html" %} {% block title %}Agent Setup Prompt — {{ config.INSTANCE_NAME }}{% endblock %} {% block content %}

Agent Setup Prompt

Customise the banner shown above the setup commands on /setup.

{% if is_override %} Override active {% else %} Using default {% endif %}

This banner is shown above the setup commands on /setup. Empty by default. Use it for organisation-specific notes: VPN requirements, support channel, data classification policy, platform onboarding steps, etc. The override is rendered server-side as HTML — Jinja2 placeholders like {{ "{{ user.name }}" }} are substituted at render time. Output is sanitised post-render: inline <script> tags and on*= event handlers are stripped as a safety net.

Available placeholders
{{ "{{ instance.name }}" }} — instance display name {{ "{{ instance.subtitle }}" }} — operator / org name {{ "{{ server.url }}" }} — full server URL {{ "{{ server.hostname }}" }} — host part only {{ "{{ user.email }}" }}, {{ "{{ user.name }}" }}, {{ "{{ user.is_admin }}" }}, {{ "{{ user.groups }}" }} (user may be null for anonymous visitors — guard with {{ "{% if user %}" }}) {{ "{{ now }}" }}, {{ "{{ today }}" }} — server time (UTC) / date string

Live preview

(rendering…)
{% endblock %}