{% extends "base.html" %} {% block title %}AtlasBridge Dashboard — Workspaces{% endblock %} {% block content %}

Workspaces

{% if not db_available %}

No data yet

The AtlasBridge database has not been created. Run a supervised session to start collecting data:

atlasbridge run claude
{% else %}

Workspace governance: trust state, posture bindings, and session activity.

Trust a Workspace

{% if workspaces %}
{% for w in workspaces %} {% endfor %}
Path Trust Expires Profile Autonomy Actor Created
{{ w.path }} {% if w.trust_state == 'trusted' %} trusted {% elif w.trust_expired %} expired {% else %} untrusted {% endif %} {% if w.trust_expires_at %} {{ w.trust_expires_at|timeago }} {% else %} — {% endif %} {{ w.profile_name or '—' }} {{ w.autonomy_default or '—' }} {{ w.actor or '—' }} {{ w.created_at|timeago }}
{% else %}

No workspaces recorded yet. Use the form above to grant trust to a workspace path.

{% endif %} {% endif %} {% endblock %}