{% macro row(s, q) -%} {{ s.tool }} {% if s.active %}{% endif %}
{{ (s.ai_title or (s.first_prompt or "")[:80]) | highlight(q) }}
{% if s.last_prompt and s.last_prompt != s.first_prompt %}
last: {{ s.last_prompt[:90] | highlight(q) }}
{% endif %} {{ s.cwd | short_cwd }} {{ s.last_activity[:10] if s.last_activity else "" }}
{{ s.last_activity[11:16] if s.last_activity else "" }} {{ s.message_count }} {{ s.tool_call_count }} {%- endmacro %} {% if group and groups %} {% for g in groups %}
{{ g.cwd if g.pinned_group else (g.cwd | short_cwd) }} {{ g.sessions|length }}
{% for s in g.sessions %}{{ row(s, q) }}{% endfor %}
{% endfor %} {% else %} {% for s in sessions %}{{ row(s, q) }} {% else %} {% endfor %}
titlecwdactivity msgstools
no sessions
{% endif %}

{{ sessions|length }} sessions{% if q %} · matching "{{ q }}"{% endif %}