{% extends "base.html" %} {% block content %}
| Sessions with content (turn_count > 0) | {{ headline.content_sessions }} |
| Scored vs your lean runs (self-baseline) | {{ headline.content_self_scored }} ({{ headline.content_self_pct }}%) |
| Out of scope — below scope floor | {{ headline.content_sessions - headline.content_self_scored }} |
| Pre-self-baseline (B2 corpus) | {{ headline.b2_content_scored }} of {{ headline.b2_content_total }} ({{ headline.b2_content_scored_pct }}%) |
| Empty/stub sessions (no work product) | {{ headline.empty_stubs }} ({{ headline.empty_stubs_pct }}% of {{ headline.total }} total) |
| Task Type | Total | In-Scope | Waste-Free | Lean-N | Scope Floor | Status | Baseline Band |
|---|---|---|---|---|---|---|---|
| {{ row.task_type }} | {{ row.total }} | {{ row.in_scope }} | {{ row.waste_free_n }} | {{ row.lean_n }} | {{ row.scope_floor }} turns | {% if row.source == "self" %} ACTIVE (self) {% elif row.source == "building" %} building — {{ row.sessions_needed }} more lean sessions needed {% else %} corpus fallback {% endif %} | {% if row.p25 is not none and row.p75 is not none %} {{ "{:,}".format(row.p25) }} – {{ "{:,}".format(row.p75) }} (median {{ "{:,}".format(row.median) }}) {% else %} — {% endif %} |
Detectable waste (observable-invariant only: retry loops + redundant reads) is concentrated in ml-eval, infra-deploy, and research-recon — the infrastructure/ML-ops types where identical-failure retries and redundant file reads occur. {% for row in waste_by_type if row.total_events > 0 %} {{ row.task_type }}: {{ row.total_events }} event(s) in {{ row.with_waste }} of {{ row.total }} sessions; {% endfor %} feature-build ({{ waste_by_type | selectattr('task_type', 'eq', 'feature-build') | map(attribute='total') | first | default(0) }} sessions): zero waste events. Total: {{ total_events }} events across all types. See report 11 for corpus characterisation.
{% else %}
No waste events in store — run tes backfill-waste to detect and record waste across all sessions.
Expected concentration (from inventory): ml-eval > infra-deploy > research-recon; zero in feature-build.
No baseline data available. Run tes score to accumulate sessions.