{% extends "base.html" %} {% from "macros.html" import panel %} {% block title %}Timmy Time — Self-Correction Dashboard{% endblock %} {% block extra_styles %}{% endblock %} {% block content %}
SELF-CORRECTION
Agent error detection & recovery — {{ stats.total }} events, {{ stats.success_rate }}% correction rate, {{ stats.unique_error_types }} distinct error types
// CORRECTION STATS
TOTAL {{ stats.total }}
CORRECTED {{ stats.success_count }}
PARTIAL {{ stats.partial_count }}
FAILED {{ stats.failed_count }}
Correction Rate {{ stats.success_rate }}%
// RECURRING PATTERNS {{ patterns | length }}
{% include "partials/self_correction_patterns.html" %}
// CORRECTION TIMELINE {{ corrections | length }}
{% include "partials/self_correction_timeline.html" %}
{% endblock %}