{{ greeting }}
{{ hook }}
{% for topic in topics %}
{% for finding in topic.findings %}
{{ loop.index }}
{{ finding.headline }}
{{ finding.body }}
{% if finding.sources %}
{% for source in finding.sources %}
{{ source.name }}{% if not loop.last %} · {% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% if deep_dive %}
From the Frontier
{{ deep_dive.headline }}
{{ deep_dive.body }}
{% if deep_dive.why_it_matters %}
Why this matters for you
{{ deep_dive.why_it_matters }}
{% endif %}
{% if deep_dive.sources %}
{% for source in deep_dive.sources %}
{{ source.name }}{% if not loop.last %} · {% endif %}
{% endfor %}
{% endif %}
{% endif %}
{% if build_queue %}
Build Queue
{% for item in build_queue %}
{% if item.status == 'ready' or item.status == 'deployed' %}
{{ item.status }}
{% elif item.status == 'building' %}
Building
{% elif item.status == 'built-pending-deploy' %}
Pending
{% else %}
Planned
{% endif %}
{{ item.name }}
{{ item.description }}
{% endfor %}
{% endif %}
{% if candidates %}
Tools & Candidates
{% for c in candidates %}
{% if c.verdict == 'BUILD' %}✅{% elif c.verdict == 'WATCH' %}👁{% else %}❌{% endif %}
{{ c.name }}
{% if c.verdict == 'BUILD' %}
Build
{% elif c.verdict == 'WATCH' %}
Watch
{% else %}
Skip
{% endif %}
{{ c.description }}
{% if c.reason %}
{{ c.reason }}
{% endif %}
{% endfor %}
{% endif %}
{% if system_health %}
System Health
{% if system_health.services_up == system_health.services_total %}
{% elif system_health.services_up >= system_health.services_total - 1 %}
{% else %}
{% endif %}
{{ system_health.services_up }}/{{ system_health.services_total }} services
{% if system_health.token_burn_today %}
{{ system_health.token_burn_today }} token burn
{% endif %}
{% if system_health.overnight_jobs %}
{% if 'fail' in system_health.overnight_jobs|lower or 'error' in system_health.overnight_jobs|lower %}
{% else %}
{% endif %}
Overnight: {{ system_health.overnight_jobs }}
{% endif %}
{% endif %}
{% if quiet_day %}
Quiet night across all feeds. Nothing actionable surfaced.
{% endif %}
How was today's digest?
🔥 👍 😐 👎