KI-AGENT: Matrix-Stack auf Webseite ergänzt

This commit is contained in:
2026-05-21 21:31:04 +02:00
parent 42bed16e25
commit fb1ccf91b9
3 changed files with 133 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
<nav aria-label="Hauptnavigation">
<a href="#funktionen">Funktionen</a>
<a href="#matrix">Matrix</a>
<a href="#open-source">Open Source</a>
<a href="#selfhost">Selfhost</a>
<a href="#kontakt">Kontakt</a>
@@ -120,6 +121,36 @@
</ol>
</section>
<section id="matrix" class="matrix-section">
<div class="section-heading">
<p class="eyebrow">Tief integriert</p>
<h2>Matrix als Kommunikationsschicht für FEDEO.</h2>
<p>
FEDEO verbindet Chat, Räume, Anrufe und Videokonferenzen mit Projekten, Vorgängen, Kontakten und Berechtigungen. Matrix läuft dabei nicht daneben, sondern wird durch FEDEO provisioniert, verknüpft und betrieben.
</p>
</div>
<div class="matrix-layout">
<div class="matrix-stack">
<article v-for="item in matrixStack" :key="item.title">
<span>{{ item.tag }}</span>
<h3>{{ item.title }}</h3>
<p>{{ item.description }}</p>
</article>
</div>
<div class="matrix-diagram" aria-label="Matrix Stack Architektur">
<div>FEDEO Web & App</div>
<span></span>
<div>FEDEO Backend<br><small>SSO, Rechte, Objektkontext</small></div>
<span></span>
<div>Matrix Homeserver<br><small>Synapse, Räume, Events</small></div>
<span></span>
<div>LiveKit, coturn, Element<br><small>Anrufe, Video, Gäste</small></div>
</div>
</div>
</section>
<section id="open-source" class="open-source-section">
<div>
<p class="eyebrow">Open Source</p>
@@ -189,7 +220,7 @@ const features = [
{
tag: 'Büro',
title: 'Aufgaben und Kommunikation',
description: 'Aufgaben, interne Nachrichten und betriebliche Abstimmung laufen dort zusammen, wo die Arbeit entsteht.'
description: 'Aufgaben, interne Nachrichten und Matrix-Räume laufen dort zusammen, wo die Arbeit entsteht.'
},
{
tag: 'Warenfluss',
@@ -218,5 +249,28 @@ const features = [
}
]
const matrixStack = [
{
tag: 'Chat',
title: 'Projekt- und Vorgangsräume',
description: 'Matrix-Räume werden aus FEDEO-Kontexten wie Projekten, Tickets, Teams und Kontakten heraus genutzt.'
},
{
tag: 'Identität',
title: 'FEDEO bleibt führend',
description: 'Nutzer, Rollen und Raumzugriffe werden aus FEDEO heraus provisioniert und bei Änderungen synchronisiert.'
},
{
tag: 'Audio & Video',
title: 'MatrixRTC mit LiveKit',
description: 'Gruppenanrufe, Videokonferenzen und Bildschirmfreigaben laufen über MatrixRTC, LiveKit und coturn.'
},
{
tag: 'Betrieb',
title: 'Selfhost-ready Stack',
description: 'Synapse, PostgreSQL, Redis, .well-known, Element und TURN/STUN sind im Selfhost-Stack vorbereitet.'
}
]
const installCommand = 'curl -fsSL https://git.federspiel.tech/flfeders/FEDEO/raw/branch/dev/scripts/selfhost-install.sh | bash -s -- --simple --start'
</script>