{% extends "base.html" %} {% block title %}Trust Leaderboard — Co-Worker Engine — ICDEV™{% endblock %} {% block content %}

Trust Leaderboard

NOVA TRUST — current trust scores and autonomy bands for all co-worker roles.

← Co-Worker Engine
{{ rows | length }}
Roles Tracked
{{ rows | selectattr('band','equalto','autonomous') | list | length }}
Autonomous
{{ rows | selectattr('band','equalto','trusted') | list | length }}
Trusted
{{ (rows | selectattr('band','equalto','probationary') | list | length) + (rows | selectattr('band','equalto','supervised') | list | length) }}
Supervised / Probationary
Probationary (< 0.3) — all decisions require HITL
Supervised (0.3–0.6) — HITL on risky actions
Trusted (0.6–0.8) — HITL on irreversible only
Autonomous (≥ 0.8) — routine tasks auto-approved
{% if rows %}
{% for row in rows %} {% endfor %}
# Role ID Band Trust Score Last Event
{{ loop.index }} {{ row.role_id }} {{ row.band }}
{{ '%.2f' | format(row.trust_score) }}
{% if row.last_event_at %} {{ row.last_event_at | replace('T',' ') | truncate(19, True, '') }} {% else %} — {% endif %}
{% else %}
No trust events recorded yet. Launch a co-worker team to start building the trust ledger.
Launch a Team →
{% endif %}
{% endblock %}