{% extends "base.html" %} {% block title %}{{ current_project.name }} · Overview — Bento{% endblock %} {% block content %} {% set health = health_status(overview) %}
Inbox unprocessed
{{ overview.inbox_unprocessed }}
pending + claimed
Runs (24h)
{{ overview.runs_24h }}
{{ overview.errors_24h }} errored
Error rate (24h)
{{ '%.1f%%' % (overview.error_rate * 100) }}
{{ overview.errors_24h }} / {{ overview.runs_24h }}
Total cost
{{ fmt_cost(overview.total_cost_usd) }}
all time

Agents {{ agents|length }}

{% if agents %} {% else %}

No agents in {{ current_project.name }} yet. Run bento dev in your agent directory with project="{{ current_project.slug }}" to register one.

{% endif %}

Inbox

View all
{% if recent_inbox %} {% else %}

no inbox items yet

{% endif %}

Sessions

View all
{% if recent_sessions %} {% else %}

no sessions yet

{% endif %}
{% endblock %}