feat: unified messaging TUI MVP — Synapse + 7 mautrix bridges + Textual TUI + MCP draft staging

One-command local stack: cp .env.example .env && make up. Idempotent
bootstrap renders Synapse + bridge configs from pristine upstream examples,
provisions databases, registrations, double puppeting, and the admin user.
Textual TUI with bridge manager, in-terminal QR login, and drafts panel.
MCP server exposes read tools and a human-gated draft send workflow.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Prad Nukala
2026-07-08 12:13:13 -04:00
co-authored by Claude Fable 5
commit d57086cd00
29 changed files with 5602 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "vortex-tui"
version = "0.1.0"
description = "Unified Matrix messaging TUI (Synapse + mautrix bridges)"
requires-python = ">=3.11"
dependencies = [
"textual>=0.80",
"matrix-nio[e2e]>=0.25",
"qrcode>=7",
"watchfiles>=0.21",
]
[project.scripts]
vortex-tui = "vortex_tui.main:run"
[tool.setuptools]
package-dir = { "" = "app" }
packages = ["vortex_tui"]