@agent-native/dispatch 0.27.0 → 0.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/actions/provider-api-register.d.ts +6 -6
  2. package/dist/components/app-keys-popover.d.ts.map +1 -1
  3. package/dist/components/app-keys-popover.js +16 -9
  4. package/dist/components/app-keys-popover.js.map +1 -1
  5. package/dist/components/create-app-popover.d.ts.map +1 -1
  6. package/dist/components/create-app-popover.js +7 -1
  7. package/dist/components/create-app-popover.js.map +1 -1
  8. package/dist/components/layout/Layout.d.ts.map +1 -1
  9. package/dist/components/layout/Layout.js +14 -10
  10. package/dist/components/layout/Layout.js.map +1 -1
  11. package/dist/components/workspace-app-host.d.ts.map +1 -1
  12. package/dist/components/workspace-app-host.js +34 -8
  13. package/dist/components/workspace-app-host.js.map +1 -1
  14. package/dist/lib/workspace-apps.d.ts.map +1 -1
  15. package/dist/lib/workspace-apps.js +6 -2
  16. package/dist/lib/workspace-apps.js.map +1 -1
  17. package/dist/server/lib/vault-store.d.ts.map +1 -1
  18. package/dist/server/lib/vault-store.js +1 -1
  19. package/dist/server/lib/vault-store.js.map +1 -1
  20. package/package.json +3 -3
  21. package/src/components/app-keys-popover.spec.tsx +60 -2
  22. package/src/components/app-keys-popover.tsx +23 -10
  23. package/src/components/create-app-popover.spec.tsx +20 -0
  24. package/src/components/create-app-popover.tsx +7 -1
  25. package/src/components/layout/Layout.spec.tsx +27 -0
  26. package/src/components/layout/Layout.tsx +35 -30
  27. package/src/components/workspace-app-host.spec.tsx +72 -25
  28. package/src/components/workspace-app-host.tsx +54 -8
  29. package/src/lib/workspace-apps.spec.ts +51 -0
  30. package/src/lib/workspace-apps.ts +7 -2
  31. package/src/server/lib/vault-store.spec.ts +5 -3
  32. package/src/server/lib/vault-store.ts +5 -2
@@ -216,6 +216,26 @@ describe("CreateAppFlow", () => {
216
216
  ).toBe(false);
217
217
  });
218
218
 
219
+ it("reuses an empty local chat for direct dev-mode app creation", async () => {
220
+ devState.isDevMode = true;
221
+
222
+ await renderAndSubmit("Build a quality dashboard");
223
+
224
+ expect(sendToAgentChatMock).toHaveBeenCalledWith(
225
+ expect.objectContaining({
226
+ submit: true,
227
+ type: "code",
228
+ newTab: true,
229
+ reuseEmptyTab: true,
230
+ }),
231
+ );
232
+ expect(
233
+ fetchSpy.mock.calls.some(([input]) =>
234
+ String(input).includes("start-workspace-app-creation"),
235
+ ),
236
+ ).toBe(false);
237
+ });
238
+
219
239
  it("opens a fresh local chat when the server hands off app creation", async () => {
220
240
  startWorkspaceAppCreationResponse.result = {
221
241
  mode: "local-agent",
@@ -253,7 +253,13 @@ export function CreateAppFlow({
253
253
  setStatusMessage("Sent to Builder chat.");
254
254
  onClose?.();
255
255
  } else if (isDevMode) {
256
- sendToAgentChat({ message, submit: true, type: "code", newTab: true });
256
+ sendToAgentChat({
257
+ message,
258
+ submit: true,
259
+ type: "code",
260
+ newTab: true,
261
+ reuseEmptyTab: true,
262
+ });
257
263
  setStatusMessage("Sent to the local agent.");
258
264
  onClose?.();
259
265
  } else {
@@ -220,6 +220,33 @@ describe("Dispatch NavContent", () => {
220
220
  expect(lists[0].querySelector("a")?.className).toContain("size-9");
221
221
  });
222
222
 
223
+ it("keeps chat-first primary actions in the collapsed sidebar", async () => {
224
+ await act(async () => {
225
+ root.render(
226
+ <MemoryRouter initialEntries={["/chat"]}>
227
+ <TooltipProvider>
228
+ <NavContent
229
+ chatFirstMode
230
+ collapsed
231
+ chatFirstApps={[{ id: "mail", name: "Mail" }]}
232
+ />
233
+ </TooltipProvider>
234
+ </MemoryRouter>,
235
+ );
236
+ });
237
+
238
+ for (const label of ["New chat", "Integrations", "Search"]) {
239
+ expect(
240
+ [...container.querySelectorAll("button")].find(
241
+ (button) => button.textContent?.trim() === label,
242
+ ),
243
+ ).toBeDefined();
244
+ }
245
+ expect(
246
+ container.querySelector("[data-chat-first-apps-rail]"),
247
+ ).not.toBeNull();
248
+ });
249
+
223
250
  it("keeps management routes out of the primary navigation", async () => {
224
251
  await act(async () => {
225
252
  root.render(
@@ -569,6 +569,7 @@ function DispatchChatsSection({
569
569
  prelude,
570
570
  chatFirstMode = false,
571
571
  chatFirstEmbedded = false,
572
+ collapsed = false,
572
573
  chatFirstNavigation,
573
574
  }: {
574
575
  onNavigate?: () => void;
@@ -576,6 +577,7 @@ function DispatchChatsSection({
576
577
  prelude?: ReactNode;
577
578
  chatFirstMode?: boolean;
578
579
  chatFirstEmbedded?: boolean;
580
+ collapsed?: boolean;
579
581
  chatFirstNavigation?: {
580
582
  activeTab?: ChatFirstPrimaryTab;
581
583
  onNewChat?: () => void;
@@ -722,6 +724,8 @@ function DispatchChatsSection({
722
724
  if (threadId) openThread(threadId, { isNew: true });
723
725
  }
724
726
 
727
+ const collapsedChatFirst = collapsed && chatFirstMode;
728
+
725
729
  return (
726
730
  <div
727
731
  className={cn(
@@ -730,7 +734,7 @@ function DispatchChatsSection({
730
734
  )}
731
735
  >
732
736
  {showNewChat && chatFirstNavigation ? (
733
- <nav className="space-y-0.5 px-2 py-2">
737
+ <nav className={cn("space-y-0.5 py-2", collapsed ? "px-1.5" : "px-2")}>
734
738
  <ChatFirstPrimaryNavigation
735
739
  copy={chatFirstCopy}
736
740
  onNewChat={() => {
@@ -741,11 +745,12 @@ function DispatchChatsSection({
741
745
  onOpenScheduled={chatFirstNavigation.onOpenScheduled}
742
746
  onSearch={openCommandMenu}
743
747
  activeTab={chatFirstNavigation.activeTab}
748
+ collapsed={collapsed}
744
749
  />
745
750
  </nav>
746
751
  ) : null}
747
752
  {prelude}
748
- {!chatFirstMode ? (
753
+ {!collapsedChatFirst && !chatFirstMode ? (
749
754
  <div className="flex justify-end px-2 pt-0.5">
750
755
  <Tooltip>
751
756
  <TooltipTrigger asChild>
@@ -784,7 +789,8 @@ function DispatchChatsSection({
784
789
  </Tooltip>
785
790
  </div>
786
791
  ) : null}
787
- {!chatFirstMode &&
792
+ {!collapsedChatFirst &&
793
+ !chatFirstMode &&
788
794
  chatsLoading &&
789
795
  visibleThreads.length === 0 &&
790
796
  Array.from({ length: 3 }).map((_, index) => (
@@ -796,7 +802,9 @@ function DispatchChatsSection({
796
802
  <Skeleton className="h-3 w-3/4 rounded" />
797
803
  </div>
798
804
  ))}
799
- {chatFirstMode && (chatsLoading || visibleThreads.length > 0) ? (
805
+ {!collapsedChatFirst &&
806
+ chatFirstMode &&
807
+ (chatsLoading || visibleThreads.length > 0) ? (
800
808
  <ChatFirstChatHistory
801
809
  items={chatItems}
802
810
  activeId={displayedActiveThreadId}
@@ -870,7 +878,7 @@ function DispatchChatsSection({
870
878
  )}
871
879
  className="min-w-0 px-2"
872
880
  />
873
- ) : (
881
+ ) : !collapsedChatFirst ? (
874
882
  <ChatHistoryRail
875
883
  items={chatItems}
876
884
  activeId={displayedActiveThreadId}
@@ -938,7 +946,7 @@ function DispatchChatsSection({
938
946
  )}
939
947
  className="min-w-0 px-2"
940
948
  />
941
- )}
949
+ ) : null}
942
950
  </div>
943
951
  );
944
952
  }
@@ -1273,29 +1281,26 @@ export function NavContent({
1273
1281
 
1274
1282
  {chatFirstMode ? (
1275
1283
  <div className="flex min-h-0 flex-1 flex-col overflow-y-auto">
1276
- {!collapsed ? (
1277
- <DispatchChatsSection
1278
- onNavigate={onNavigate}
1279
- showNewChat
1280
- chatFirstMode
1281
- chatFirstEmbedded={chatFirstEmbedded}
1282
- chatFirstNavigation={{
1283
- activeTab: chatFirstActivePrimaryTab,
1284
- onNewChat: onChatFirstNewChat,
1285
- onOpenIntegrations: () => {
1286
- navigate(dispatchNavLinkTarget("/admin/integrations"));
1287
- onNavigate?.();
1288
- },
1289
- onOpenScheduled: () => {
1290
- navigate(dispatchNavLinkTarget("/admin/automations"));
1291
- onNavigate?.();
1292
- },
1293
- }}
1294
- prelude={chatFirstAppsRail}
1295
- />
1296
- ) : (
1297
- chatFirstAppsRail
1298
- )}
1284
+ <DispatchChatsSection
1285
+ onNavigate={onNavigate}
1286
+ showNewChat
1287
+ chatFirstMode
1288
+ chatFirstEmbedded={chatFirstEmbedded}
1289
+ collapsed={collapsed}
1290
+ chatFirstNavigation={{
1291
+ activeTab: chatFirstActivePrimaryTab,
1292
+ onNewChat: onChatFirstNewChat,
1293
+ onOpenIntegrations: () => {
1294
+ navigate(dispatchNavLinkTarget("/admin/integrations"));
1295
+ onNavigate?.();
1296
+ },
1297
+ onOpenScheduled: () => {
1298
+ navigate(dispatchNavLinkTarget("/admin/automations"));
1299
+ onNavigate?.();
1300
+ },
1301
+ }}
1302
+ prelude={chatFirstAppsRail}
1303
+ />
1299
1304
  </div>
1300
1305
  ) : null}
1301
1306
  <div
@@ -2374,7 +2379,7 @@ export function Layout({
2374
2379
  const content = isChatRoute ? (
2375
2380
  <div
2376
2381
  className={cn(
2377
- "agent-layout-main-surface flex min-w-0 flex-1 overflow-hidden",
2382
+ "agent-layout-main-surface flex h-full min-w-0 flex-1 overflow-hidden",
2378
2383
  chatFirstMode && "dispatch-chat-first-surface",
2379
2384
  )}
2380
2385
  >
@@ -14,6 +14,13 @@ const clientState = vi.hoisted(() => {
14
14
  const actionNames: string[] = [];
15
15
  return {
16
16
  actionNames,
17
+ grantedApps: [
18
+ {
19
+ id: "analytics.agent-native.com",
20
+ name: "Analytics",
21
+ url: "https://analytics.agent-native.com",
22
+ },
23
+ ],
17
24
  legacyMutateAsync,
18
25
  theme: "dark" as "dark" | "light",
19
26
  workspaceSsoEnabled: false,
@@ -22,6 +29,13 @@ const clientState = vi.hoisted(() => {
22
29
  });
23
30
 
24
31
  vi.mock("@agent-native/core/client/chat-first", () => ({
32
+ CHAT_FIRST_DEFAULT_APP_IDS: [
33
+ "content",
34
+ "design",
35
+ "mail",
36
+ "calendar",
37
+ "clips",
38
+ ],
25
39
  ChatFirstAppPane: ({
26
40
  app,
27
41
  embedUrl,
@@ -56,31 +70,40 @@ vi.mock("@agent-native/core/client/hooks", () => ({
56
70
  : clientState.legacyMutateAsync,
57
71
  };
58
72
  },
59
- useActionQuery: () => ({
60
- data: [
61
- { id: "mail", name: "Mail", path: "/mail", url: null, status: "ready" },
62
- {
63
- id: "calendar",
64
- name: "Calendar",
65
- path: "/calendar",
66
- url: null,
67
- status: "ready",
68
- },
69
- {
70
- id: "documents",
71
- name: "Documents",
72
- path: "/documents",
73
- url: null,
74
- status: "ready",
75
- },
76
- {
77
- id: "settings",
78
- name: "Settings",
79
- path: "/settings",
80
- url: null,
81
- status: "ready",
82
- },
83
- ],
73
+ useActionQuery: (name: string) => ({
74
+ data:
75
+ name === "list_apps"
76
+ ? { apps: clientState.grantedApps }
77
+ : [
78
+ {
79
+ id: "mail",
80
+ name: "Mail",
81
+ path: "/mail",
82
+ url: null,
83
+ status: "ready",
84
+ },
85
+ {
86
+ id: "calendar",
87
+ name: "Calendar",
88
+ path: "/calendar",
89
+ url: null,
90
+ status: "ready",
91
+ },
92
+ {
93
+ id: "documents",
94
+ name: "Documents",
95
+ path: "/documents",
96
+ url: null,
97
+ status: "ready",
98
+ },
99
+ {
100
+ id: "settings",
101
+ name: "Settings",
102
+ path: "/settings",
103
+ url: null,
104
+ status: "ready",
105
+ },
106
+ ],
84
107
  isError: false,
85
108
  isLoading: false,
86
109
  refetch: vi.fn(),
@@ -150,6 +173,30 @@ describe("WorkspaceAppKeepAlive", () => {
150
173
  expect(container.querySelectorAll("iframe")).toHaveLength(2);
151
174
  });
152
175
 
176
+ it("resolves a granted external app instead of showing app not found", async () => {
177
+ await act(async () => {
178
+ root.render(
179
+ <WorkspaceAppKeepAlive activeAppId="analytics.agent-native.com" />,
180
+ );
181
+ await Promise.resolve();
182
+ await Promise.resolve();
183
+ });
184
+
185
+ expect(
186
+ container.querySelector(
187
+ '[data-dispatch-workspace-app-cache-entry="analytics.agent-native.com"]',
188
+ ),
189
+ ).not.toBeNull();
190
+ expect(
191
+ container.querySelector('[data-chat-first-app-status="ready"]'),
192
+ ).not.toBeNull();
193
+ expect(clientState.legacyMutateAsync).toHaveBeenCalledWith({
194
+ app: "analytics.agent-native.com",
195
+ url: "https://analytics.agent-native.com",
196
+ chrome: "minimal",
197
+ });
198
+ });
199
+
153
200
  it("uses the app-scoped workspace session action when the rollout is enabled", async () => {
154
201
  clientState.workspaceSsoEnabled = true;
155
202
 
@@ -23,6 +23,7 @@ import { Link } from "react-router";
23
23
 
24
24
  import { isEmbedSessionExpiredMessage } from "../lib/embed-session-recovery";
25
25
  import {
26
+ mergeChatFirstWorkspaceApps,
26
27
  workspaceAppDirectHref,
27
28
  workspaceAppEmbedTarget,
28
29
  workspaceAppHref,
@@ -45,6 +46,16 @@ interface EmbedSessionInput {
45
46
  chrome: "minimal";
46
47
  }
47
48
 
49
+ interface GrantedWorkspaceAppSummary {
50
+ id: string;
51
+ name: string;
52
+ url?: string | null;
53
+ }
54
+
55
+ interface GrantedWorkspaceAppsResult {
56
+ apps: GrantedWorkspaceAppSummary[];
57
+ }
58
+
48
59
  type WorkspaceAppTheme = "light" | "dark";
49
60
  type WorkspaceAppAuthState = "unknown" | "authenticated" | "unauthenticated";
50
61
 
@@ -326,23 +337,58 @@ export function WorkspaceAppFrame({
326
337
 
327
338
  export function WorkspaceAppHost({ appId }: { appId?: string }) {
328
339
  const t = useT();
329
- const appsQuery = useActionQuery("list-workspace-apps", {
330
- includeAgentCards: false,
331
- });
332
- const { data: apps = [], isLoading } = appsQuery;
340
+ const workspaceAppsQuery = useActionQuery<WorkspaceAppSummary[]>(
341
+ "list-workspace-apps",
342
+ { includeAgentCards: false },
343
+ );
344
+ const grantedAppsQuery = useActionQuery<GrantedWorkspaceAppsResult>(
345
+ "list_apps",
346
+ {},
347
+ );
348
+ const apps = useMemo(() => {
349
+ const merged = new Map<string, WorkspaceAppSummary>();
350
+
351
+ for (const app of mergeChatFirstWorkspaceApps(workspaceAppsQuery.data)) {
352
+ merged.set(app.id.trim().toLowerCase(), app);
353
+ }
354
+ for (const app of grantedAppsQuery.data?.apps ?? []) {
355
+ const id = app.id.trim();
356
+ if (!id || merged.has(id.toLowerCase())) continue;
357
+ merged.set(id.toLowerCase(), {
358
+ id,
359
+ name: app.name.trim() || id,
360
+ path: "",
361
+ url: app.url?.trim() || null,
362
+ status: "ready",
363
+ });
364
+ }
365
+
366
+ return [...merged.values()];
367
+ }, [grantedAppsQuery.data?.apps, workspaceAppsQuery.data]);
333
368
  const app = useMemo(
334
369
  () =>
335
- (apps as WorkspaceAppSummary[]).find((item) => item.id === appId) ?? null,
370
+ apps.find(
371
+ (item) => item.id.trim().toLowerCase() === appId?.trim().toLowerCase(),
372
+ ) ?? null,
336
373
  [appId, apps],
337
374
  );
375
+ const isLoading = workspaceAppsQuery.isLoading || grantedAppsQuery.isLoading;
376
+ const queryError = workspaceAppsQuery.isError
377
+ ? workspaceAppsQuery.error
378
+ : grantedAppsQuery.isError
379
+ ? grantedAppsQuery.error
380
+ : null;
338
381
 
339
- if (appsQuery.isError) {
382
+ if (queryError && !app) {
340
383
  return (
341
384
  <div className="flex h-full min-h-0 items-center justify-center p-6">
342
385
  <div className="w-full max-w-2xl">
343
386
  <ActionQueryError
344
- error={appsQuery.error}
345
- onRetry={() => void appsQuery.refetch()}
387
+ error={queryError}
388
+ onRetry={() => {
389
+ void workspaceAppsQuery.refetch();
390
+ void grantedAppsQuery.refetch();
391
+ }}
346
392
  />
347
393
  </div>
348
394
  </div>
@@ -4,6 +4,7 @@ import {
4
4
  isDefaultWorkspaceAppHiddenId,
5
5
  isDispatchWorkspaceAppId,
6
6
  isWorkspaceAppVisibleInDefaultLaunchers,
7
+ mergeChatFirstWorkspaceApps,
7
8
  workspaceAppIdFromRoute,
8
9
  workspaceAppRoute,
9
10
  } from "./workspace-apps";
@@ -41,4 +42,54 @@ describe("workspace app routes", () => {
41
42
  ).toBe(false);
42
43
  expect(isWorkspaceAppVisibleInDefaultLaunchers({ id: "mail" })).toBe(true);
43
44
  });
45
+
46
+ it("maps default first-party apps to their canonical hosted origins", () => {
47
+ const apps = mergeChatFirstWorkspaceApps(undefined);
48
+ expect(apps).toEqual(
49
+ expect.arrayContaining([
50
+ expect.objectContaining({
51
+ id: "content",
52
+ path: "/",
53
+ url: "https://content.agent-native.com",
54
+ }),
55
+ expect.objectContaining({
56
+ id: "design",
57
+ path: "/",
58
+ url: "https://design.agent-native.com",
59
+ }),
60
+ expect.objectContaining({
61
+ id: "mail",
62
+ path: "/",
63
+ url: "https://mail.agent-native.com",
64
+ }),
65
+ expect.objectContaining({
66
+ id: "calendar",
67
+ path: "/",
68
+ url: "https://calendar.agent-native.com",
69
+ }),
70
+ expect.objectContaining({
71
+ id: "clips",
72
+ path: "/",
73
+ url: "https://clips.agent-native.com",
74
+ }),
75
+ ]),
76
+ );
77
+ });
78
+
79
+ it("lets a mounted workspace app override a default row", () => {
80
+ const apps = mergeChatFirstWorkspaceApps([
81
+ {
82
+ id: "mail",
83
+ name: "Internal Mail",
84
+ path: "/internal-mail",
85
+ url: null,
86
+ status: "ready",
87
+ },
88
+ ]);
89
+ expect(apps.find((app) => app.id === "mail")).toMatchObject({
90
+ name: "Internal Mail",
91
+ path: "/internal-mail",
92
+ url: null,
93
+ });
94
+ });
44
95
  });
@@ -1,6 +1,8 @@
1
1
  import { CHAT_FIRST_DEFAULT_APP_IDS } from "@agent-native/core/client/chat-first";
2
2
  import { withBuilderUtmTrackingParams } from "@agent-native/core/shared/builder-link-tracking";
3
3
 
4
+ import { CANONICAL_WORKSPACE_SSO_APP_ORIGINS } from "../shared/workspace-sso";
5
+
4
6
  export interface WorkspaceAppSummary {
5
7
  id: string;
6
8
  name: string;
@@ -169,8 +171,11 @@ export function mergeChatFirstWorkspaceApps(
169
171
  merged.set(id, {
170
172
  id,
171
173
  name: id.charAt(0).toUpperCase() + id.slice(1),
172
- path: `/${id}`,
173
- url: null,
174
+ // The five default rows are hosted sibling apps, not routes owned by
175
+ // Dispatch. Keep a mounted path for legacy callers, but give embed
176
+ // session resolution the exact canonical origin.
177
+ path: "/",
178
+ url: CANONICAL_WORKSPACE_SSO_APP_ORIGINS[id],
174
179
  status: "ready",
175
180
  });
176
181
  }
@@ -102,9 +102,11 @@ describe("vault authorization", () => {
102
102
  execute: vi.fn().mockResolvedValue({ rows: [{ role: "member" }] }),
103
103
  });
104
104
 
105
- await expect(assertCanManageVault()).rejects.toThrow(
106
- "Only organization owners and admins can manage the workspace vault.",
107
- );
105
+ await expect(assertCanManageVault()).rejects.toMatchObject({
106
+ message:
107
+ "Only organization owners and admins can manage the workspace vault.",
108
+ statusCode: 403,
109
+ });
108
110
  });
109
111
 
110
112
  it("rejects organization members before listing or reading grants", async () => {
@@ -173,8 +173,11 @@ export async function assertCanManageVault(): Promise<void> {
173
173
  }
174
174
 
175
175
  if (role !== "owner" && role !== "admin") {
176
- throw new Error(
177
- "Only organization owners and admins can manage the workspace vault.",
176
+ throw Object.assign(
177
+ new Error(
178
+ "Only organization owners and admins can manage the workspace vault.",
179
+ ),
180
+ { statusCode: 403 },
178
181
  );
179
182
  }
180
183
  }