{% extends "base.html" %} {% block title %}Self-Improve — Agent Wasp{% endblock %} {% block page_css %} {% endblock %} {% block content %}

Self-Improve

Agent-proposed code patches — review before applying

{% if proposal_count > 0 %} {{ proposal_count }} pending {% endif %}
Pending Review {{ proposal_count }}
{% if proposals %}
{% for p in proposals %}
{{ p.file or "unknown file" }} {{ p.created_at }} pending

{{ p.change }}

{% if p.diff %}
View diff ({{ p.diff|length }} chars)
{{ p.diff }}
{% endif %}
{% endfor %}
{% else %}

No pending proposals

The agent will propose patches here when it detects improvements

{% endif %}
Apply History last 25
{% if applied_history %}
{% for h in applied_history %} {% endfor %}
Time Action Result Status
{{ h.timestamp }} {{ h.input }} {{ h.output }} {% if h.ok %} ok {% else %} error {% endif %}
{% else %}

No history yet.

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}