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

Extracted Ideas

{{ data.total }} technical ideas extracted from rated drafts. Claude AI reads each draft and identifies distinct technical contributions — protocols, mechanisms, frameworks, and architectures. Each idea receives a novelty score (N:1–5) indicating how original it is compared to existing work.

{{ data.total }}
Total Ideas
{{ data.by_type | length }}
Idea Types
{% set top_type = data.by_type.keys() | list %} {% if top_type %}
{{ top_type[0] }}
Most Common Type
{{ data.by_type[top_type[0]] }}
{{ top_type[0] }} Count
{% endif %}

Ideas by Type

{{ data.ideas | length }} ideas shown
{% for idea in data.ideas %}
{{ idea.title }} {% if idea.type %} {{ idea.type }} {% endif %} {% if idea.novelty_score is not none and idea.novelty_score %} N:{{ idea.novelty_score }} {% endif %}

{{ idea.description }}

{{ idea.draft_name }}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}