{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Demo AI Agent - Gvelo{% endblock %} {% block body_class %}demo-body{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
Gvelo Experience Center

Demo intelligence agent

Keep the product tour aligned as Gvelo Enterprise Platform grows.

The agent scans safe Flask pages, updates a demo-only feature catalog, and recommends new walkthrough coverage when modules are added.

Safe Pages {{ report.report.route_count if report else 0 }}
Covered {{ report.report.covered_count if report else 0 }}
Suggested {{ report.report.suggested_count if report else 0 }}
Conversion {{ report.report.conversion_count if report else 0 }}
{% if report %}

Latest run

{{ report.summary }}

{{ report.created_at }} ยท {{ report.run_type }}

Demo-only writes No production data exposure No code auto-rewrites
{% else %}

No runs yet

Run the agent to build the first demo feature catalog.

{% endif %}
{% if report and report.report.suggested_flows %}

Recommended walkthrough drafts

{% for flow in report.report.suggested_flows %}
{{ flow.category }}

{{ flow.title }}

{{ flow.source_route }}

{% for step in flow.recommended_steps %}

{{ step.title }}
{{ step.body }}

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