{% extends "base.html" %} {% set active_page = "trends" %} {% block title %}Trends — IETF Draft Analyzer{% endblock %} {% block extra_head %}{% endblock %} {% block content %}
How the AI standards landscape is changing over time. Submission volume, rating trends, category shifts, and the safety-vs-capability balance.
Stacked area chart showing submission volume over time, broken down by source (IETF, W3C, etc.).
Are drafts getting more mature? More novel? Track the five rating dimensions over time.
Ratio of safety-related drafts (Security, Privacy, Trust, Safety, Governance) to capability drafts (Agents, Infrastructure, MCP, etc.). Higher = more safety focus.
Stacked area showing which topics are growing or shrinking. Top 8 categories shown.
Total number of unique technical ideas extracted from drafts over time.
First-time contributors entering the AI standards space each month.
| Month | Total | Avg Score | Trend |
|---|---|---|---|
| {{ row.month }} | {{ row.total }} | {% if row.avg_score >= 3.0 %} {{ row.avg_score }} {% elif row.avg_score >= 2.0 %} {{ row.avg_score }} {% else %} {{ row.avg_score }} {% endif %} | {% if loop.index > 1 %} {% set prev = data.monthly_table[loop.index0 - 1].total %} {% if row.total > prev %} ↑ +{{ row.total - prev }} {% elif row.total < prev %} ↓ {{ row.total - prev }} {% else %} → 0 {% endif %} {% endif %} |