You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Part of epic #29 (E11). Milestone: Phase L (day-0 adoption wedge). Source: docs/EPICS.md / docs/SITH-NOTION.md.
F11.3 — Local web "fleet IDE" (sith ui)
What it is. The same fleet model served as a local web UI on localhost — the visual
"Lens-but-better" surface — from the same binary's embedded frontend.
How it works.
sith ui starts a localhost server binding the embedded web frontend to the local fleet model.
The frontend is the same one E8 serves in hub mode; here it runs single-user, kubeconfig-direct.
It offers aggregated multi-cluster views, fleet search/correlation, and per-pod table stakes.
It binds to loopback only; no external listener, no account, no telemetry.
flowchart TD
A["sith ui"] --> B["Localhost server + embedded frontend"]
B --> C["Same source-abstract fleet model (local source)"]
B --> D{"Bind scope?"}
D -- "loopback only" --> E["Single-user, no account, no telemetry"]
D -- "external" --> X["Refused — local mode is loopback only"]
Loading
Acceptance criteria.
sith ui serves the aggregated fleet view on localhost with no account and no telemetry.
It reuses the same frontend as the hub console (one codebase, two modes).
Key risk / guardrail. Accidentally exposing local mode on a routable interface. Guardrail:
local mode binds loopback only; serving beyond the machine is a hub-mode decision with authn.
Spec & slice. Slice 4 of docs/BUILD-SEQUENCE.md (PR #40). AC: sith ui serves the aggregated fleet on localhost, binds loopback only (external bind refused — invariant test), no account/telemetry; reuses the same frontend as the hub console (E8), embedded via //go:embed.
Part of epic #29 (E11). Milestone: Phase L (day-0 adoption wedge). Source:
docs/EPICS.md/docs/SITH-NOTION.md.F11.3 — Local web "fleet IDE" (
sith ui)What it is. The same fleet model served as a local web UI on
localhost— the visual"Lens-but-better" surface — from the same binary's embedded frontend.
How it works.
sith uistarts a localhost server binding the embedded web frontend to the local fleet model.flowchart TD A["sith ui"] --> B["Localhost server + embedded frontend"] B --> C["Same source-abstract fleet model (local source)"] B --> D{"Bind scope?"} D -- "loopback only" --> E["Single-user, no account, no telemetry"] D -- "external" --> X["Refused — local mode is loopback only"]Acceptance criteria.
sith uiserves the aggregated fleet view on localhost with no account and no telemetry.Key risk / guardrail. Accidentally exposing local mode on a routable interface. Guardrail:
local mode binds loopback only; serving beyond the machine is a hub-mode decision with authn.
Spec & slice. Slice 4 of
docs/BUILD-SEQUENCE.md(PR #40). AC:sith uiserves the aggregated fleet onlocalhost, binds loopback only (external bind refused — invariant test), no account/telemetry; reuses the same frontend as the hub console (E8), embedded via//go:embed.