{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} — Modes{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }}

Reflection Modes {{ ws_name }}

Structured sessions against {{ ws_name }}. Each mode executes provisioning run <mode-id> from the workspace root.

{% if not has_root %}
Workspace path not resolved — cannot discover reflection modes.
{% endif %} {% if modes %}
{% for mode in modes %}
{{ mode.id }}

{{ mode.path }}

{% if can_operate %}
{% else %}
▶ Run
{% endif %}
{% endfor %}
{% elif has_root %}
No reflection modes found in reflection/modes/.
{% endif %} {% endblock %}