From 38db3827870960f466be89afbc49f91238d46144 Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Thu, 25 Jun 2026 10:55:51 +0900 Subject: feat: workspaces shell + cwd-lsp rename + mcp/settings/system-prompt features + app wiring - workspaces: URL-driven conversation grouping (home listing at /, routing, store, http adapter, WorkspaceCard) wired into the App.svelte shell - rename features/workspace -> features/cwd-lsp (the cwd/lsp status feature) - new features: mcp (status view), settings (chat-limit field), system-prompt (prompt builder), all rendered via the generic surface host - chat: store + ChatView updates - tabs: tabs-store updates - app wiring: ErrorModal (full-screen error surface), app/App.svelte + store.svelte This commit makes HEAD typecheck clean for the first time: the prior HEAD (c95cc77) imported features/settings from app/App.svelte but never committed the feature, so only the full working tree was green. --- src/features/workspaces/ui/WorkspacesHome.svelte | 86 ++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 src/features/workspaces/ui/WorkspacesHome.svelte (limited to 'src/features/workspaces/ui/WorkspacesHome.svelte') diff --git a/src/features/workspaces/ui/WorkspacesHome.svelte b/src/features/workspaces/ui/WorkspacesHome.svelte new file mode 100644 index 0000000..5894f0a --- /dev/null +++ b/src/features/workspaces/ui/WorkspacesHome.svelte @@ -0,0 +1,86 @@ + + +
+
+

Workspaces

+ { + e.preventDefault(); + onNavigate("/default"); + }} + > + Default + +
+ +
{ + e.preventDefault(); + createWorkspace(); + }} + > +
+ + +
+ +
+ {#if slugError} +

{slugError}

+ {/if} + +
+ {#if store.loading && store.list.length === 0} +
+ +
+ {:else if store.list.length === 0} +

+ No workspaces yet. Create one above or visit /your-name in the URL. +

+ {:else} +
    + {#each store.list as ws (ws.id)} + + {/each} +
+ {/if} +
+
-- cgit v1.2.3