{% extends "base.html" %} {% block title_suffix %} — Coach{% endblock %} {% block content %}

Habit Coach

Every habit below is grounded in YOUR OWN measured session data — a sample size, a specific action, and a "not a guarantee" caveat. When a pattern hasn't repeated enough times to be honest about, the coach says nothing rather than guess.
{% if habits %}
Top Fixable Habits (ranked by measured $ impact)
{% for h in habits %}
{{ h.habit_id }}{% if h.task_type %} · {{ h.task_type }}{% endif %} — ~${{ "%.2f"|format(h.impact_usd) }} measured impact · N={{ h.measured_n }}
{{ h.message }}
{% endfor %}
{% else %}

Not enough measured data yet for a confident habit recommendation — a pattern needs to repeat across several of your sessions before the coach will speak about it. Keep using tracegauge; this fills in as your session history grows.

{% endif %} {% endblock %}