{% extends "base.html" %} {% set active_page = "gaps" %} {% block title %}Gap Explorer — IETF Draft Analyzer{% endblock %} {% block content %}

Gap Explorer

{{ gaps | length }} identified gaps in AI/agent standards coverage. Gaps are identified by Claude AI analyzing the full corpus of drafts to find areas where important problems lack adequate proposals. Severity reflects urgency: critical = blocking issue with no draft addressing it, high = partially addressed but incomplete, medium = some coverage exists but more work needed, low = minor gap or niche concern.

View Demo Draft {% if generated_drafts %} {{ generated_drafts | length }} draft{{ 's' if generated_drafts | length != 1 }} already generated {% endif %}
{% set ns = namespace(critical=0, high=0, medium=0, low=0) %} {% for gap in gaps %} {% if gap.severity == 'critical' %}{% set ns.critical = ns.critical + 1 %} {% elif gap.severity == 'high' %}{% set ns.high = ns.high + 1 %} {% elif gap.severity == 'medium' %}{% set ns.medium = ns.medium + 1 %} {% else %}{% set ns.low = ns.low + 1 %} {% endif %} {% endfor %}
{{ gaps | length }}
Total Gaps
{{ ns.critical }}
Critical
{{ ns.high }}
High
{{ ns.medium }}
Medium
{{ ns.low }}
Low
{% for gap in gaps %}

{{ gap.topic }}

{{ gap.severity | upper }}
{% if gap.category %} {{ gap.category }} {% endif %}

{{ gap.description }}

{% endfor %}
{% endblock %}