{% extends "web/base.html" %} {% block title %}Harness Topology | tcx{% endblock %} {% block page_label %}Harness{% endblock %} {% block content %}
Full topology

Harness, Guardrails, Improvement, roles, tools, and gates.

tcx keeps Codex orchestration native while exposing the top-level harness state through Django.

Prepare Codex prompt
{% include "web/fragments/topology_canvas.html" %}
Harness model

Guardrails and Improvement sit under the harness

{% for system in topology.systems %}
{{ system.label }} {{ system.summary }}
{% for item in system.items %}
{{ item.label }}{{ item.summary }}
{% endfor %}
{% endfor %}
Health checks

Harness status

{% for check in health.checks %}
{{ check.status }} {{ check.label }} {{ check.value }}
{% endfor %}
{% endblock %}