{% extends "base.html" %} {% block title %}Migration Intelligence — ICDEV{% endblock %} {% block content %}

Migration Intelligence Engine

Autonomous discovery of migration opportunities aligned to enterprise technical goals (5-10 year horizon).

{% if last_scan and last_scan.airgap_mode %}
⚠ Air-gap mode: External EOL feeds and NL goal parsing are disabled. Local canvas scan only.
{% endif %}
{{ opportunities|length }}
Opportunities
{{ goals|length }}
Active Goals
{{ roadmaps|length }}
Roadmaps
{{ wishlist_count }}
Wishlist Items
${{ (wishlist_total_cost/1000)|round(0)|int }}K
Budgeted
{% if last_scan %}
Last Scan: {{ last_scan.status or 'unknown' }}
{{ (last_scan.started_at or '')[:19] }}
Found: {{ last_scan.opportunities_found or 0 }}
{% endif %}
Migration Opportunities
{% for o in opportunities %} {% else %} {% endfor %}
Title Type Priority Score EOL Status
{{ o.title[:80] }}{% if o.title|length > 80 %}…{% endif %} {{ o.opportunity_type or '—' }} {{ o.priority or 'medium' }}
{{ (o.composite_score * 100)|round(0)|int }}%
{{ o.eol_date or '—' }} {{ o.status or '—' }}
No opportunities yet. Run the pipeline to discover migration opportunities.
{% endblock %}