{% if similar_pairs %}

Apps That May Serve Similar Purposes

Ranked by signal strength. Review and decide — this is informational, not a recommendation.
{% for p in similar_pairs %} {% set score_pct = (p.score * 100)|int %} {% set color = '#16a34a' if score_pct >= 70 else '#ca8a04' if score_pct >= 50 else '#94a3b8' %} {% endfor %}
AppAppScoreWhy
{{ p.app_a }} {{ p.app_b }} {{ score_pct }}% {{ p.reasons }}
{% endif %} {% if redundant %}

Unused Apps With Active Alternatives

These unused apps have an actively-used equivalent on your Mac.
{% for r in redundant[:10] %} {% set score_pct = (r.score * 100)|int %} {% set color = '#16a34a' if score_pct >= 70 else '#ca8a04' %} {% endfor %}
Unused AppLast UsedYou Already UseWhy Similar
{{ r.unused.name }} {{ r.unused.days_ago }}d ago {{ r.active.name }} ({{ score_pct }}% match) {{ r.reason }}
{% endif %}