{% extends "base.html" %} {% block title %}aide - Overview{% endblock %} {% block content %}

Overview

Last 30 Days

{{ summary.last_30d.work_blocks }} work blocks
{{ summary.last_30d.sessions }} sessions {% if not subscription_user %}|{{ "${:,.2f}".format(summary.last_30d.cost) }}{% endif %} |{{ summary.last_30d.projects }} projects

This Week

{{ summary.this_week.work_blocks }} work blocks
{{ summary.this_week.sessions }} sessions {% if not subscription_user %}|{{ "${:,.2f}".format(summary.this_week.cost) }}{% endif %} |{{ summary.this_week.projects }} projects

Today

{{ summary.today.work_blocks }} work blocks
{% if not subscription_user %}{{ "${:,.2f}".format(summary.today.cost) }}{% else %}{{ summary.today.sessions }} session{{ "s" if summary.today.sessions != 1 else "" }} today{% endif %}

Effectiveness

Cache Hit Rate

{{ "{:.0%}".format(effectiveness.cache_hit_rate) }}
% of context from cache
{% if effectiveness.cache_hit_rate < 0.5 and effectiveness.session_count > 0 %}
Tip: Keep sessions focused on one task
{% endif %}

Edit Ratio

{{ "{:.0%}".format(effectiveness.edit_ratio) }}
% of tool calls that edit
{% if effectiveness.edit_ratio < 0.2 and effectiveness.session_count > 0 %}
Tip: Use detailed prompts with file paths
{% endif %}

Compaction Rate

{{ "{:.0%}".format(effectiveness.compaction_rate) }}
% of sessions hitting context limits
{% if effectiveness.compaction_rate > 0.3 and effectiveness.session_count > 0 %}
Tip: Break tasks into smaller sessions
{% endif %}

Read-to-Edit

{{ "{:.1f}".format(effectiveness.read_to_edit_ratio) }}x
reads per edit
{% if effectiveness.read_to_edit_ratio > 8 and effectiveness.session_count > 0 %}
Tip: Add project structure to CLAUDE.md
{% endif %}

Turns / Prompt

{{ "{:.1f}".format(effectiveness.turns_per_user_prompt) }}
assistant turns per user message

Error Rate

{{ "{:.1%}".format(effectiveness.error_rate) }}
% of tool calls that error
{% if effectiveness.error_rate > 0 and effectiveness.iteration_error_pct > 0 %}
{{ "{:.0%}".format(effectiveness.iteration_error_pct) }} from test/lint/build
{% endif %}
{% if not subscription_user and effectiveness.cost_per_edit > 0 %}

Cost / Edit

{{ "${:,.2f}".format(effectiveness.cost_per_edit) }}
avg cost per file change
{% endif %}

Iteration Rate

{{ "{:.0%}".format(effectiveness.rework_rate) }}
sessions with repeated file edits

Cache Hit Rate Over Time

Edit Ratio Over Time

Compaction Over Time

{% if not subscription_user %}

Cost Over Time

{% endif %}

Work Blocks Per Week

{% if not subscription_user %}

Cost By Project

{% endif %}

Token Breakdown

{% endblock %} {% block scripts %} {% endblock %}