{% extends "base.html" %} {% block extra_head %} {% endblock %} {% block content %}

🧪 AI usage analysis report

{{ source_kind }} {{ source_url }}
{% if status == "failed" %} {% elif status != "completed" %}
{% else %}
{% if human_percent is not none %} {% endif %}
{{ category or "uncertain" }} {% if detected_builder %}Detected: built with {{ detected_builder }}{% endif %} {% if human_percent is not none %}{{ human_percent }}% human{% endif %} {% if ai_percent is not none %}{{ ai_percent }}% AI{% endif %} {% if slop_score is not none %}slop score {{ slop_score }}{% endif %} {% if origin_score is not none %}origin {{ origin_score }}{% endif %} {% if quality_deficit_score is not none %}quality deficit {{ quality_deficit_score }}{% endif %} {% if dom_slop_score is not none and dom_slop_score > 0 %}rendered-page score {{ dom_slop_score }}{% endif %} confidence {{ confidence or "unknown" }} {{ files_analyzed }} files analyzed {% if finished_at %}analyzed {{ dt_ago(finished_at) }}{% endif %}
{% if markdown %}
{{ render_content(markdown) }}
{% endif %} {% if images %}

Image review

{% for image in images %}
{% if image.thumb_url %}
{{ image.image_kind }}: {{ image.path }}
{% endif %}
{{ image.grade }} {{ image.image_kind }} {{ image.verdict }} · {{ image.ai_probability|round|int }}% AI
{{ image.path }} {% if image.description %}{{ image.description }}{% endif %} {% if image.tells %}
{% for tell in image.tells %}{{ tell }}{% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if dom_pages %}

Rendered page signals

{% for page in dom_pages %}
{% if page.screenshot_url %}
rendered page screenshot: {{ page.url }}
{% endif %}

{{ page.url }}

{% if page.detected_builder %}{{ page.detected_builder }}{% endif %} {{ page.signal_count }} signals
{% if page.signals %}
{% for signal in page.signals[:12] %} {% set signal_title = signal.title ~ (" (line " ~ signal.line ~ ")" if signal.line else "") %} {{- signal.code -}} {% endfor %} {% if page.signals|length > 12 %}+{{ page.signals|length - 12 }}{% endif %}
{% endif %}
{% endfor %}
{% endif %} {% if files %} {% macro metric_level(value, low, mid, high) -%} {%- if value < low %}ok{% elif value < mid %}warn{% elif value < high %}high{% else %}critical{% endif -%} {%- endmacro %}

File results

{% for file in files|sort(attribute="quality_deficit_score", reverse=True) %} {% endfor %}
File Language SLOC Origin Quality deficit Category Signals
{% if file.source_url %}{{ file.path }}{% else %}{{ file.path }}{% endif %} {{ file.language }} {{ file.lines }} {{ file.origin_score }} {{ file.quality_deficit_score }} {{ file.category }} {% for group in file.signal_groups[:4] %} {% set chip_title = group.title ~ (" (" ~ group.count ~ " occurrences, lines " ~ group.lines|join(", ") ~ ")" if group.count > 1 else (" (line " ~ group.lines[0] ~ ")" if group.lines else "")) %} {% if file.source_url and group.lines %} {{- group.code -}} {%- if group.count > 1 %}{{ group.count }}{% endif -%} {% else %} {{- group.code -}} {%- if group.count > 1 %}{{ group.count }}{% endif -%} {% endif %} {% endfor %} {% if file.signal_groups|length > 4 %}+{{ file.signal_groups|length - 4 }}{% endif %}
{% endif %}

Authenticity badge

authenticity human score badge
{{ badge.markdown }}
{{ badge.html }}

Generated by {{ generator_model or "the static engine" }}{% if generated_at %} {{ dt_ago(generated_at) }}{% endif %}. {% if content_hash %}Content hash {{ content_hash[:16] }}.{% endif %}

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}