{{ threads|length }} total
{{ threads|selectattr('status', 'equalto', 'running')|list|length }} running
{{ threads|selectattr('status', 'equalto', 'paused')|list|length }} paused
{% extends "layout.html" %} {% block title %}Dashboard - Development Harness{% endblock %} {% block content %}
{{ threads|length }} total
{{ threads|selectattr('status', 'equalto', 'running')|list|length }} running
{{ threads|selectattr('status', 'equalto', 'paused')|list|length }} paused
{{ projects|length }} configured
| 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 |
No threads yet. Run harness run "your prompt" to create one.