{% extends "base.html" %} {% from "macros/summary.html" import summary_stat %} {% set active_page = 'governance' %} {% block title %}Governance — Maude Front Desk{% endblock %} {% block content %}

Governance

Maude — How We're Built
Overview Accountability Compliance Report
{# ── Summary Stats Bar ─────────────────────────────────────────── #}
{{ summary_stat(room_count, 'Rooms Active') }} {{ summary_stat(tool_count, 'Tools Registered') }} {{ summary_stat(guarded_pct|string + '%', 'Guarded', 'ok') }} {{ summary_stat(agent_count, 'Dept Agents') }} {{ summary_stat(site_count, 'Sites') }}
{# ── Section 1: Maude ────────────────────────────────── #}

Maude

A federation of {{ room_count }} sovereign systems under shared law. Each one has a job, its own identity, its own territory, and full accountability for everything it does. They monitor their own health, recover from failures, and escalate when they can't handle something alone.

This is not a product. It is an institution — built from 25 years of institutional knowledge about how your organization actually works, translated into systems that can run themselves.

{# ── Section 2: The Constitution ───────────────────────────────── #}

The Constitution

Every system follows the same rules — the Maude Constitution v3.0. It governs credentials, data sovereignty, safety, and how systems interact. No system is above the law.

Credential Governance Every key is scoped. No shared credentials across trust boundaries. Production is a blood oath.
Data Sovereignty Every database serves a single domain. Data does not cross domain boundaries through shared tables or cross-database queries.
Safety No action that cannot be undone is taken without explicit approval. Destructive operations require confirmation.
Audit Every tool call, restart, and cross-room interaction is logged. The audit trail is the court of record — immutable and append-only.
{# ── Section 3: The Rooms ──────────────────────────────────────── #}

The Rooms

{{ room_count }} rooms across {{ site_count }} sites. Each room is autonomous — it runs itself, monitors itself, and fixes what it can. When it can't, it escalates. Every action is logged.

{% for layer_name, layer_rooms in rooms_by_layer.items() %}

{{ layer_name }}

{% for room in layer_rooms %}
{{ room.name }} {{ room.site|upper }}
{% endfor %}
{% endfor %}
{# ── Section 4: The People ─────────────────────────────────────── #}

The People

{{ agent_count }} department specialists across {{ company_count }} companies. They don't touch systems — they carry organizational knowledge. Each one maps to a real function: quality, engineering, shipping, safety, lab, and more. Ask them a question, they answer from the perspective of their role.

{% for company, count in agents_by_company.items() %}
{{ company|upper }} {{ count }} agent{% if count != 1 %}s{% endif %}
{% endfor %}
{# ── Section 5: The Numbers ────────────────────────────────────── #}

The Numbers

{{ room_count }}
Rooms Active
{{ tool_count }}
Tools Registered
{{ guarded_pct }}%
Tools Guarded
{{ gap_count }}
Open Gaps
{% if compliance_pct > 0 %}{{ compliance_pct }}%{% else %}—{% endif %}
Checks Passing
{# ── Section 6: How It Works ───────────────────────────────────── #}

How It Works

Rooms are autonomous. They monitor their own health, recover from failures, escalate when they can't. The Front Desk coordinates. The control plane deploys and responds to emergencies. Every action is logged in an immutable audit trail.

1 Each room monitors its own health every 5 minutes
2 Problems detected — automatic recovery attempted
3 Can't self-heal — escalation to Front Desk
4 Front Desk coordinates cross-room response
5 Every action logged — who, what, when, why
{% endblock %}