{% extends "base.html" %} {% block title %}AtlasBridge Dashboard — Workspace Detail{% endblock %} {% block content %} {% if not workspace %}

Workspace Not Found

This workspace does not exist or has not been recorded.

← Back to workspaces

{% else %}

Workspace: {{ workspace.path }}

← Back to workspaces

{% if workspace.trust_state == 'trusted' %} trusted {% elif workspace.trust_expired %} expired {% else %} untrusted {% endif %}
Trust State
{{ workspace.profile_name or '—' }}
Profile
{{ workspace.autonomy_default or '—' }}
Autonomy
{{ sessions|length }}
Sessions
{% if workspace.trust_state == 'trusted' %} {% else %} {% endif %}

Trust Details

{% if workspace.trust_expires_at %} {% endif %} {% if workspace.granted_at %} {% endif %} {% if workspace.revoked_at %} {% endif %}
ID{{ workspace.id }}
Path{{ workspace.path }}
Path Hash{{ workspace.path_hash[:16] }}…
Trust State{{ workspace.trust_state }}
Expires{{ workspace.trust_expires_at|timeago }}
Actor{{ workspace.actor or '—' }}
Channel{{ workspace.channel or '—' }}
Granted{{ workspace.granted_at|timeago }}
Revoked{{ workspace.revoked_at|timeago }}
{% if workspace.profile_name or workspace.autonomy_default or workspace.model_tier or workspace.tool_allowlist_profile %}

Posture Bindings

{% if workspace.profile_name %} {% endif %} {% if workspace.autonomy_default %} {% endif %} {% if workspace.model_tier %} {% endif %} {% if workspace.tool_allowlist_profile %} {% endif %} {% if workspace.posture_notes %} {% endif %}
Profile{{ workspace.profile_name }}
Autonomy Default{{ workspace.autonomy_default }}
Model Tier{{ workspace.model_tier }}
Tool Profile{{ workspace.tool_allowlist_profile }}
Notes{{ workspace.posture_notes }}
{% endif %}

Sessions in this Workspace

{% if sessions %}
{% for s in sessions %} {% endfor %}
Session ID Tool Status Started Label
{{ s.id[:12] }}… {{ s.tool }} {{ s.status }} {{ s.started_at|timeago }} {{ s.label or '—' }}
{% else %}

No sessions recorded for this workspace.

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