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

Draft Explorer

Browse, search, and filter {{ result.total }} rated Internet-Drafts on AI and agent topics. Each draft is scored 1–5 across five dimensions: Nov(elty) = originality, Mat(urity) = specification completeness, Rel(evance) = importance to AI agents, Mom(entum) = adoption traction, Ovl (overlap) = uniqueness vs other drafts. Rdy = standards readiness (0–100). Search works across draft names, titles, summaries, and author names.

{{ min_score }}
Reset
{% if categories %}
All {% for cat, count in categories.items() %} {{ cat }} {{ count }} {% endfor %}
{% endif %}
{% if cat_summary and current_cat %}

{{ current_cat }}

{{ cat_summary.text }}

{{ cat_summary.avg_score }}/5
Avg Score

Rating Profile

{% for dim, val in cat_summary.dimensions.items() %}
{{ dim }}
{{ val }}
{% endfor %}

Top Drafts

{% for name, title, score in cat_summary.top_drafts %} {% endfor %}

Key Contributors

{% for author, count in cat_summary.top_authors %}
{{ author }} ({{ count }})
{% endfor %} {% if cat_summary.top_orgs %}

Organizations

{% for org, count in cat_summary.top_orgs[:3] %}
{{ org }} ({{ count }})
{% endfor %} {% endif %}
{% endif %}

Showing {{ result.drafts|length }} of {{ result.total }} drafts {% if search %} matching "{{ search }}"{% endif %} {% if current_cat %} in {{ current_cat }}{% endif %} {% if min_score > 0 %} with score >= {{ min_score }}{% endif %}

{% if is_admin %} {% endif %} {% if result.pages > 1 %}

Page {{ result.page }} of {{ result.pages }}

{% endif %}
{% macro sort_header(field, label, extra_class="", title="") %} {% set is_active = sort == field %} {% set next_dir = 'asc' if (is_active and sort_dir == 'desc') else 'desc' %} {% endmacro %} {% if is_admin %} {% endif %} {{ sort_header("score", "Score", "w-20") }} {{ sort_header("name", "Draft") }} {{ sort_header("date", "Date", "w-24 hidden md:table-cell") }} {{ sort_header("novelty", "Nov", "w-20 hidden lg:table-cell", "Novelty") }} {{ sort_header("maturity", "Mat", "w-20 hidden lg:table-cell", "Maturity") }} {{ sort_header("relevance", "Rel", "w-20 hidden lg:table-cell", "Relevance") }} {{ sort_header("momentum", "Mom", "w-20 hidden xl:table-cell", "Momentum") }} {{ sort_header("overlap", "Ovl", "w-20 hidden xl:table-cell", "Overlap") }} {{ sort_header("readiness", "Rdy", "w-20 hidden xl:table-cell", "Standards Readiness") }} {% for d in result.drafts %} {% if is_admin %} {% endif %} {% macro dim_cell(value) %} {% endmacro %} {{ dim_cell(d.novelty) }} {{ dim_cell(d.maturity) }} {{ dim_cell(d.relevance) }} {% endfor %} {% if not result.drafts %} {% endif %}
{{ label }} {% if is_active %} {% endif %} Cmp
{{ d.score }}
{{ d.title }} {{ (d.source|default('ietf'))|upper }}
{{ d.name }}
{% if d.summary %}
{{ d.summary }}
{% endif %}

No drafts match your filters.

Clear all filters
{% if result.pages > 1 %} {% endif %} {% endblock %} {% block extra_scripts %} {% endblock %}