{% extends "layout.html" %} {% block title %}Dashboard - Development Harness{% endblock %} {% block content %}

Dashboard

Threads

{{ threads|length }} total

{{ threads|selectattr('status', 'equalto', 'running')|list|length }} running

{{ threads|selectattr('status', 'equalto', 'paused')|list|length }} paused

Projects

{{ projects|length }} configured

Recent Threads

{% if threads %} {% for thread in threads[:20] %} {% endfor %}
ID Status Turns Created Actions
{{ thread.id[:8] }}... {% if thread.status == 'running' %} {{ thread.status }} {% elif thread.status == 'paused' %} {{ thread.status }} {% elif thread.status == 'failed' %} {{ thread.status }} {% else %} {{ thread.status }} {% endif %} {{ thread.turns|length }} {{ thread.created_at.isoformat()[:19] }} View
{% else %}

No threads yet. Run harness run "your prompt" to create one.

{% endif %} {% endblock %}