feat(ui-next): new Tailwind interface + Docker test stack#1
Open
thesneakernet77 wants to merge 1 commit into
Open
feat(ui-next): new Tailwind interface + Docker test stack#1thesneakernet77 wants to merge 1 commit into
thesneakernet77 wants to merge 1 commit into
Conversation
Add a high-fidelity React/Tailwind frontend (ui-next/) following the
demo-design-template design system (dark, indigo accent, Inter/JetBrains
Mono, Layout B dual-pane). It builds into ui/dist and talks to the same
/api + /ws contract, so the gateway serves it with zero backend changes
(nothing under src/atelier/** is touched).
- API layer (api/{client,types,ws}.ts) typed over the gateway surface,
honoring the {error} envelope convention.
- Reuses pure logic verbatim: buildTaskTree.ts, fsmPipelineLayout.ts;
ports DatasetContext (AntD removed).
- Heavy widgets lifted with logic intact, restyled: Terminal (ghostty WS),
EmbeddingAtlasView (Mosaic/DuckDB parquet load, dark), PipelineCanvas
(XYFlow), ProgressTree, RunControls.
- Screens: Operate (Layout B home), Status, Settings, Agents, Embeddings
index/detail, Workflows, Overwatch.
Add a Docker Compose test stack (docker/, docker-compose.yml): Postgres
(pgvector) + Qdrant + the app (gRPC core + gateway serving ui/dist).
ATELIER_DB_URL points the app at external Postgres so PGlite is skipped;
a minimal entrypoint resolves config, migrates, and starts both services.
psycopg[binary] is installed in the image because the slim base lacks
libpq. Verified end-to-end: /api/status reports grpc/postgres/qdrant all
ok and the UI is served same-origin on :8090.
.gitignore: ignore ui-next build/deps, re-include ui-next/src/lib.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new high-fidelity React/Tailwind frontend in
ui-next/plus a Docker Compose test stack. It builds intoui/distand talks to the same/api+/wscontract, so the gateway serves it with zero backend changes — nothing undersrc/atelier/**is touched.Frontend (
ui-next/)api/{client,types,ws}.ts) over the gateway surface, honoring the{error}envelope convention.buildTaskTree.ts,fsmPipelineLayout.ts); portsDatasetContextwith AntD removed.Docker test stack (
docker/,docker-compose.yml)ui/dist).ATELIER_DB_URLpoints the app at external Postgres so PGlite is skipped; a minimal entrypoint resolves config, migrates, and starts both services.psycopg[binary]is installed in the image because the slim base lacks libpq./api/statusreports grpc/postgres/qdrant all ok and the UI is served same-origin on :8090.Notes
.gitignore: ignoreui-nextbuild/deps, re-includeui-next/src/lib.🤖 Generated with Claude Code