@agent-native/core 0.136.4 → 0.137.0

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 (170) hide show
  1. package/corpus/README.md +1 -1
  2. package/corpus/templates/clips/.agents/skills/recording/SKILL.md +53 -0
  3. package/corpus/templates/clips/actions/import-loom-recording.ts +7 -0
  4. package/corpus/templates/clips/actions/lib/loom-import-job.ts +24 -4
  5. package/corpus/templates/clips/app/components/import-menu.tsx +109 -0
  6. package/corpus/templates/clips/app/components/library/library-grid.tsx +8 -18
  7. package/corpus/templates/clips/app/components/library/library-layout.tsx +14 -50
  8. package/corpus/templates/clips/app/components/library/sort-menu.tsx +20 -6
  9. package/corpus/templates/clips/app/components/recorder/pre-record-panel.tsx +10 -34
  10. package/corpus/templates/clips/app/routes/_app.library._index.tsx +0 -2
  11. package/corpus/templates/clips/changelog/2026-08-03-restart-during-a-recording-now-immediately-starts-a-fresh-ta.md +6 -0
  12. package/corpus/templates/clips/changelog/2026-08-04-cleaner-library-controls-with-an-icon-only-sort-button.md +6 -0
  13. package/corpus/templates/clips/changelog/2026-08-04-upload-and-loom-imports-now-live-under-one-import-menu.md +6 -0
  14. package/corpus/templates/clips/desktop/src/app.tsx +81 -30
  15. package/corpus/templates/clips/desktop/src/lib/recorder.ts +436 -158
  16. package/corpus/templates/clips/server/lib/post-finalize-dispatch.ts +14 -1
  17. package/corpus/templates/clips/server/plugins/auth.ts +9 -0
  18. package/corpus/templates/clips/server/routes/api/_agent-native-background/post-finalize-worker.post.ts +13 -0
  19. package/corpus/templates/content/actions/_database-utils.ts +6 -0
  20. package/corpus/templates/content/actions/bind-content-database-source-field.ts +273 -97
  21. package/corpus/templates/content/actions/change-content-database-source-role.ts +65 -29
  22. package/corpus/templates/content/actions/configure-document-property.ts +113 -32
  23. package/corpus/templates/content/actions/delete-content-database.ts +5 -7
  24. package/corpus/templates/content/actions/delete-document-property.ts +109 -62
  25. package/corpus/templates/content/actions/delete-document.ts +178 -36
  26. package/corpus/templates/content/actions/duplicate-database-item.ts +27 -0
  27. package/corpus/templates/content/actions/duplicate-database-items.ts +31 -1
  28. package/corpus/templates/content/actions/permanently-delete-document.ts +4 -6
  29. package/corpus/templates/content/actions/remove-database-items.ts +13 -0
  30. package/corpus/templates/content/actions/set-document-property.ts +69 -1
  31. package/corpus/templates/content/actions/upsert-database-item-by-key.ts +814 -0
  32. package/corpus/templates/content/parity/matrix.md +1 -1
  33. package/corpus/templates/content/parity/matrix.ts +1 -0
  34. package/corpus/templates/content/server/db/schema.ts +27 -0
  35. package/corpus/templates/content/server/plugins/db.ts +24 -0
  36. package/corpus/templates/design/app/components/design/BreakpointBar.tsx +122 -114
  37. package/corpus/templates/design/app/components/design/CanvasContextMenu.tsx +2 -2
  38. package/corpus/templates/design/app/components/design/EditPanel.tsx +68 -34
  39. package/corpus/templates/design/app/components/design/KeyboardShortcutsPanel.tsx +78 -4
  40. package/corpus/templates/design/app/components/design/MultiScreenCanvas.tsx +8 -0
  41. package/corpus/templates/design/app/components/design/QuestionFlow.tsx +5 -2
  42. package/corpus/templates/design/app/components/design/edit-panel/panel-primitives.tsx +10 -9
  43. package/corpus/templates/design/app/components/design/inspector/AutoLayoutMatrix.tsx +31 -69
  44. package/corpus/templates/design/app/components/design/inspector/design-icons.tsx +80 -106
  45. package/corpus/templates/design/app/components/design/multi-screen/types.ts +4 -0
  46. package/corpus/templates/design/app/hooks/use-editor-preferences.ts +75 -0
  47. package/corpus/templates/design/app/i18n-data.ts +8 -0
  48. package/corpus/templates/design/app/i18n-keyboard-shortcuts.ts +61 -0
  49. package/corpus/templates/design/app/pages/design-editor/editor-preferences.ts +98 -0
  50. package/corpus/templates/design/app/pages/design-editor/nudge-intent.ts +491 -0
  51. package/corpus/templates/design/app/pages/design-editor/paste-placement.ts +133 -0
  52. package/corpus/templates/design/app/pages/design-editor/png-export-render.ts +8 -0
  53. package/corpus/templates/design/app/pages/design-editor/selection-state.ts +5 -12
  54. package/corpus/templates/design/changelog/2026-08-03-arrow-keys-now-reorder-a-layer-inside-an-auto-layout-frame.md +6 -0
  55. package/corpus/templates/design/changelog/2026-08-03-auto-layout-flow-icons-show-the-direction-at-a-glance-instea.md +6 -0
  56. package/corpus/templates/design/changelog/2026-08-03-auto-layout-icons-share-one-outlined-square-style-so-flow-ga.md +6 -0
  57. package/corpus/templates/design/changelog/2026-08-03-export-has-a-named-preview-section-you-can-expand-replacing-.md +6 -0
  58. package/corpus/templates/design/changelog/2026-08-03-export-preview-shows-the-selected-element-instead-of-the-who.md +6 -0
  59. package/corpus/templates/design/changelog/2026-08-03-inspector-sections-show-an-expand-indicator-so-it-is-clear-w.md +6 -0
  60. package/corpus/templates/design/changelog/2026-08-03-paste-lands-inside-a-selected-frame-instead-of-beside-it.md +6 -0
  61. package/corpus/templates/design/changelog/2026-08-03-the-add-breakpoint-button-sits-outside-the-breakpoint-select.md +6 -0
  62. package/corpus/templates/design/changelog/2026-08-03-the-agent-s-follow-up-questions-keep-space-below-the-continu.md +6 -0
  63. package/corpus/templates/design/changelog/2026-08-03-the-agent-s-follow-up-questions-share-the-chat-panel-s-backg.md +6 -0
  64. package/corpus/templates/design/changelog/2026-08-03-the-export-panel-no-longer-stacks-a-duplicate-export-block-o.md +6 -0
  65. package/corpus/templates/design/changelog/2026-08-03-the-text-tool-uses-a-t-icon-matching-the-letter-it-inserts.md +6 -0
  66. package/corpus/templates/factory/.env.example +17 -0
  67. package/corpus/templates/factory/AGENTS.md +27 -17
  68. package/corpus/templates/factory/README.md +19 -9
  69. package/corpus/templates/factory/actions/get-slack-feedback-context.ts +90 -0
  70. package/corpus/templates/factory/actions/get-triage-config.ts +14 -3
  71. package/corpus/templates/factory/actions/govern-agent-native-pull-request.ts +386 -0
  72. package/corpus/templates/factory/actions/list-factory-automations.ts +53 -0
  73. package/corpus/templates/factory/actions/list-triage-items.ts +7 -2
  74. package/corpus/templates/factory/actions/poll-github-sources.ts +203 -0
  75. package/corpus/templates/factory/actions/poll-sentry-errors.ts +161 -0
  76. package/corpus/templates/factory/actions/poll-slack-channel.ts +4 -2
  77. package/corpus/templates/factory/actions/run-factory-automation.ts +42 -0
  78. package/corpus/templates/factory/actions/save-factory-automation.ts +69 -0
  79. package/corpus/templates/factory/actions/save-triage-config.ts +28 -2
  80. package/corpus/templates/factory/actions/start-builder-for-item.ts +411 -0
  81. package/corpus/templates/factory/app/components/factory/FactoryCanvas.tsx +14 -3
  82. package/corpus/templates/factory/app/components/ui/checkbox.tsx +1 -0
  83. package/corpus/templates/factory/app/hooks/use-navigation-state.ts +7 -0
  84. package/corpus/templates/factory/app/i18n/en-US.ts +35 -1
  85. package/corpus/templates/factory/app/routes/factory.tsx +462 -9
  86. package/corpus/templates/factory/changelog/2026-08-04-added-organization-owned-factory-automations-for-slack-bug-t.md +6 -0
  87. package/corpus/templates/factory/changelog/2026-08-04-automation-editor-controls-and-model-picker.md +6 -0
  88. package/corpus/templates/factory/netlify.toml +2 -2
  89. package/corpus/templates/factory/server/connectors/credentials.ts +6 -5
  90. package/corpus/templates/factory/server/connectors/slack.ts +133 -5
  91. package/corpus/templates/factory/server/db/schema.ts +6 -0
  92. package/corpus/templates/factory/server/lib/require-factory-automation.ts +65 -0
  93. package/corpus/templates/factory/server/plugins/agent-chat.ts +29 -11
  94. package/corpus/templates/factory/server/plugins/auth.ts +1 -0
  95. package/corpus/templates/factory/server/plugins/factory-migrations.ts +12 -0
  96. package/corpus/templates/factory/server/plugins/factory-scheduler-job.ts +218 -67
  97. package/corpus/templates/factory/server/triage/builder-executor.ts +4 -0
  98. package/corpus/templates/factory/server/triage/contracts.ts +14 -1
  99. package/corpus/templates/factory/server/triage/github-client.ts +404 -0
  100. package/corpus/templates/factory/server/triage/metadata.ts +44 -0
  101. package/corpus/templates/factory/server/triage/pr-babysit.ts +5 -5
  102. package/corpus/templates/factory/server/triage/pr-policy.ts +144 -0
  103. package/corpus/templates/factory/server/triage/sentry-client.ts +180 -0
  104. package/corpus/templates/factory/server/triage/slack-client.ts +43 -0
  105. package/corpus/templates/factory/server/triage/slack-poller.ts +9 -2
  106. package/corpus/templates/plan/.agents/skills/visual-plan/SKILL.md +27 -0
  107. package/corpus/templates/plan/.agents/skills/visual-plan/references/canvas.md +14 -4
  108. package/corpus/templates/plan/.agents/skills/visual-plan/references/wireframe.md +7 -0
  109. package/corpus/templates/plan/.agents/skills/visual-recap/references/wireframe.md +7 -0
  110. package/corpus/templates/plan/actions/create-plan-design.ts +8 -6
  111. package/corpus/templates/plan/actions/create-prototype-plan.ts +8 -6
  112. package/corpus/templates/plan/actions/create-ui-plan.ts +7 -7
  113. package/corpus/templates/plan/actions/get-plan-blocks.ts +7 -1
  114. package/corpus/templates/plan/actions/validate-plan-input.ts +39 -0
  115. package/corpus/templates/plan/app/components/plan/CanvasArea.tsx +167 -11
  116. package/corpus/templates/plan/app/i18n/en-US.ts +1 -0
  117. package/corpus/templates/plan/changelog/2026-08-04-canvas-zoom-controls-now-explain-the-command-ctrl-plus-scrol.md +6 -0
  118. package/corpus/templates/plan/changelog/2026-08-04-pinch-to-zoom-is-now-supported-on-touchscreens-in-visual-pla.md +6 -0
  119. package/corpus/templates/plan/shared/plan-content.ts +17 -2
  120. package/dist/cli/skills-content/canvas.d.ts +3 -3
  121. package/dist/cli/skills-content/canvas.js +16 -5
  122. package/dist/cli/skills-content/visual-plan-skill.d.ts +1 -1
  123. package/dist/cli/skills-content/visual-plan-skill.js +27 -0
  124. package/dist/cli/skills-content/wireframe.d.ts +2 -2
  125. package/dist/cli/skills-content/wireframe.js +7 -0
  126. package/dist/client/AgentPanel.js +23 -8
  127. package/dist/client/api-path.d.ts +6 -0
  128. package/dist/client/api-path.js +55 -0
  129. package/dist/client/onboarding/FirstRunOnboarding.d.ts +3 -0
  130. package/dist/client/onboarding/FirstRunOnboarding.js +93 -0
  131. package/dist/client/onboarding/first-run-enabled.d.ts +2 -0
  132. package/dist/client/onboarding/first-run-enabled.js +9 -0
  133. package/dist/client/onboarding/index.d.ts +2 -1
  134. package/dist/client/onboarding/index.js +1 -0
  135. package/dist/client/onboarding/use-onboarding.d.ts +6 -1
  136. package/dist/client/onboarding/use-onboarding.js +32 -1
  137. package/dist/client/route-state.js +10 -0
  138. package/dist/client/settings/SecretsSection.js +32 -8
  139. package/dist/collab/struct-routes.d.ts +1 -1
  140. package/dist/connections/catalog.d.ts +4 -4
  141. package/dist/connections/catalog.js +3 -3
  142. package/dist/db/index.d.ts +1 -1
  143. package/dist/db/index.js +1 -1
  144. package/dist/localization/default-messages.d.ts +5 -0
  145. package/dist/localization/default-messages.js +5 -0
  146. package/dist/mcp/screen-memory-stdio.d.ts +7 -7
  147. package/dist/observability/routes.d.ts +3 -3
  148. package/dist/onboarding/app-profile.d.ts +4 -0
  149. package/dist/onboarding/app-profile.js +378 -0
  150. package/dist/onboarding/index.d.ts +2 -1
  151. package/dist/onboarding/index.js +1 -0
  152. package/dist/onboarding/plugin.d.ts +2 -0
  153. package/dist/onboarding/plugin.js +21 -1
  154. package/dist/onboarding/types.d.ts +19 -0
  155. package/dist/progress/routes.d.ts +1 -1
  156. package/dist/provider-api/actions/custom-provider-registration.d.ts +9 -9
  157. package/dist/provider-api/actions/provider-api.d.ts +12 -12
  158. package/dist/secrets/routes.d.ts +2 -2
  159. package/dist/secrets/routes.js +41 -17
  160. package/dist/server/auth.js +21 -1
  161. package/dist/server/better-auth-instance.d.ts +3 -2
  162. package/dist/server/better-auth-instance.js +9 -7
  163. package/dist/server/email-markdown.js +3 -8
  164. package/dist/server/transcribe-voice.d.ts +1 -1
  165. package/dist/shared/first-run-onboarding.d.ts +3 -0
  166. package/dist/shared/first-run-onboarding.js +3 -0
  167. package/dist/triggers/index.d.ts +3 -0
  168. package/dist/triggers/index.js +5 -0
  169. package/docs/content/cross-app-sso.mdx +26 -0
  170. package/package.json +1 -1
@@ -277,8 +277,8 @@ async function handleDelete(event, secret) {
277
277
  return { ok: true, removed };
278
278
  }
279
279
  /**
280
- * POST /_agent-native/secrets/:key/test — re-run the validator against the
281
- * current stored value without changing anything. Useful for the "Test" button.
280
+ * POST /_agent-native/secrets/:key/test — validate an optional candidate value
281
+ * or the current stored value without changing anything.
282
282
  */
283
283
  export function createTestSecretHandler() {
284
284
  return defineEventHandler(async (event) => {
@@ -301,25 +301,49 @@ export function createTestSecretHandler() {
301
301
  const has = await hasOAuthSecretForEvent(event, secret).catch(() => false);
302
302
  return { ok: has };
303
303
  }
304
- if (!secret.validator) {
305
- return { ok: true, note: "No validator registered" };
304
+ const body = (await readBody(event).catch(() => ({})));
305
+ const hasCandidateValue = Object.hasOwn(body, "value");
306
+ const candidateValue = typeof body.value === "string" ? body.value.trim() : undefined;
307
+ if (hasCandidateValue && !candidateValue) {
308
+ setResponseStatus(event, 400);
309
+ return { error: "value must be a non-empty string" };
306
310
  }
307
- const { scopeId } = await resolveScopeId(event, secret.scope);
311
+ const { scopeId, reason } = await resolveScopeId(event, secret.scope);
308
312
  if (!scopeId) {
309
313
  setResponseStatus(event, 401);
310
- return { error: "Unable to resolve scope" };
314
+ return { error: reason ?? "Unable to resolve scope" };
311
315
  }
312
- const stored = await readAppSecret({
313
- key: secret.key,
314
- scope: secret.scope,
315
- scopeId,
316
- });
317
- if (!stored) {
318
- setResponseStatus(event, 404);
319
- return { error: "No value stored" };
316
+ if (secret.scope === "workspace" &&
317
+ !(await canMutateWorkspaceScope(event, scopeId))) {
318
+ setResponseStatus(event, 403);
319
+ return {
320
+ error: "Only organization owners and admins can set workspace-scoped secrets",
321
+ };
322
+ }
323
+ if (secret.scope === "org" && !(await canMutateOrgScope(event, scopeId))) {
324
+ setResponseStatus(event, 403);
325
+ return {
326
+ error: "Only organization owners and admins can set org-scoped secrets",
327
+ };
328
+ }
329
+ if (!secret.validator) {
330
+ return { ok: true, note: "No validator registered" };
331
+ }
332
+ let value = candidateValue;
333
+ if (!value) {
334
+ const stored = await readAppSecret({
335
+ key: secret.key,
336
+ scope: secret.scope,
337
+ scopeId,
338
+ });
339
+ if (!stored) {
340
+ setResponseStatus(event, 404);
341
+ return { error: "No value stored" };
342
+ }
343
+ value = stored.value;
320
344
  }
321
345
  try {
322
- const result = await secret.validator(stored.value);
346
+ const result = await secret.validator(value);
323
347
  const ok = typeof result === "boolean" ? result : result?.ok === true;
324
348
  if (!ok) {
325
349
  const err = typeof result === "object" && result && result.error
@@ -327,7 +351,7 @@ export function createTestSecretHandler() {
327
351
  : "Validator rejected the value";
328
352
  return {
329
353
  ok: false,
330
- error: redactSecretFromMessage(err, stored.value),
354
+ error: redactSecretFromMessage(err, value),
331
355
  };
332
356
  }
333
357
  return { ok: true };
@@ -338,7 +362,7 @@ export function createTestSecretHandler() {
338
362
  : "Validator threw";
339
363
  return {
340
364
  ok: false,
341
- error: redactSecretFromMessage(message, stored.value),
365
+ error: redactSecretFromMessage(message, value),
342
366
  };
343
367
  }
344
368
  });
@@ -2,6 +2,7 @@ import crypto from "node:crypto";
2
2
  import { defineEventHandler, getMethod, getQuery, getRequestIP, setResponseHeader, setResponseStatus, getCookie, setCookie, deleteCookie, getHeader, } from "h3";
3
3
  import { EMBED_START_PATH } from "../shared/embed-auth.js";
4
4
  import { EMBED_TARGET_HEADER } from "../shared/embed-auth.js";
5
+ import { FIRST_RUN_ONBOARDING_COOKIE, FIRST_RUN_ONBOARDING_MAX_AGE, } from "../shared/first-run-onboarding.js";
5
6
  import { EMBED_TRANSPLANT_HEADER, isMcpEmbedCorsOrigin, MCP_EMBED_CORS_ALLOW_HEADERS, shouldAllowMcpEmbedCredentials, } from "../shared/mcp-embed-headers.js";
6
7
  import { isEmbedCapabilityScope, requestHasEmbedAuthMarker, resolveEmbedSessionFromRequest, } from "./embed-session.js";
7
8
  // In h3 v2, `event.req` IS the web Request — but in Nitro's dev server (srvx
@@ -1880,6 +1881,14 @@ function crossSiteCookieAttrs(event) {
1880
1881
  ? { sameSite: "none", secure: true, partitioned: true }
1881
1882
  : { sameSite: "lax", secure: false };
1882
1883
  }
1884
+ function setFirstRunOnboardingCookie(event) {
1885
+ setCookie(event, FIRST_RUN_ONBOARDING_COOKIE, "1", {
1886
+ ...crossSiteCookieAttrs(event),
1887
+ httpOnly: false,
1888
+ path: "/",
1889
+ maxAge: FIRST_RUN_ONBOARDING_MAX_AGE,
1890
+ });
1891
+ }
1883
1892
  export function setFrameworkSessionCookie(event, token) {
1884
1893
  clearFrameworkSessionCookies(event);
1885
1894
  setCookie(event, COOKIE_NAME, token, {
@@ -2293,11 +2302,14 @@ async function mountBetterAuthRoutes(app, options) {
2293
2302
  if (!googleAccountId) {
2294
2303
  throw new Error("Could not get Google account id");
2295
2304
  }
2296
- await ensureGoogleAuthIdentity({
2305
+ const isNewGoogleUser = await ensureGoogleAuthIdentity({
2297
2306
  email,
2298
2307
  accountId: googleAccountId,
2299
2308
  name: typeof user.name === "string" ? user.name : undefined,
2300
2309
  });
2310
+ if (isNewGoogleUser === true) {
2311
+ setFirstRunOnboardingCookie(event);
2312
+ }
2301
2313
  if (typeof user.picture === "string" && user.picture.trim()) {
2302
2314
  await putSetting(`avatar:${email}`, {
2303
2315
  image: user.picture,
@@ -2633,6 +2645,12 @@ async function mountBetterAuthRoutes(app, options) {
2633
2645
  // Best-effort — don't block the response
2634
2646
  }
2635
2647
  }
2648
+ if (reqPath.includes("/sign-up/email") &&
2649
+ isResponse &&
2650
+ response.status >= 200 &&
2651
+ response.status < 300) {
2652
+ setFirstRunOnboardingCookie(event);
2653
+ }
2636
2654
  return response;
2637
2655
  }));
2638
2656
  // Backward-compat: POST /_agent-native/auth/login
@@ -2721,6 +2739,7 @@ async function mountBetterAuthRoutes(app, options) {
2721
2739
  body: { email, password, name: email.split("@")[0], callbackURL },
2722
2740
  headers: event.headers,
2723
2741
  });
2742
+ setFirstRunOnboardingCookie(event);
2724
2743
  return { ok: true };
2725
2744
  }
2726
2745
  catch (e) {
@@ -2939,6 +2958,7 @@ function mountAuthFallbackRoutes(app) {
2939
2958
  body: { email, password, name: email.split("@")[0] },
2940
2959
  headers: event.headers,
2941
2960
  });
2961
+ setFirstRunOnboardingCookie(event);
2942
2962
  return { ok: true };
2943
2963
  }
2944
2964
  catch (e) {
@@ -193,9 +193,10 @@ export interface GoogleAuthIdentity {
193
193
  * Ensure a verified Google identity has a canonical Better Auth user/account
194
194
  * before the legacy email-keyed session is issued. This prevents a later
195
195
  * password signup from becoming the first canonical identity for that email.
196
+ * Returns whether this call created the canonical user.
196
197
  */
197
- export declare function ensureGoogleAuthIdentity(identity: GoogleAuthIdentity): Promise<void>;
198
- export declare function ensureGoogleAuthIdentityWithAdapter(adapter: BetterAuthInternalAdapter, identity: GoogleAuthIdentity): Promise<void>;
198
+ export declare function ensureGoogleAuthIdentity(identity: GoogleAuthIdentity): Promise<boolean>;
199
+ export declare function ensureGoogleAuthIdentityWithAdapter(adapter: BetterAuthInternalAdapter, identity: GoogleAuthIdentity): Promise<boolean>;
199
200
  /** Reset for testing */
200
201
  export declare function resetBetterAuth(): Promise<void>;
201
202
  /**
@@ -709,13 +709,14 @@ export async function getBetterAuthInternalAdapter(config) {
709
709
  * Ensure a verified Google identity has a canonical Better Auth user/account
710
710
  * before the legacy email-keyed session is issued. This prevents a later
711
711
  * password signup from becoming the first canonical identity for that email.
712
+ * Returns whether this call created the canonical user.
712
713
  */
713
714
  export async function ensureGoogleAuthIdentity(identity) {
714
715
  const adapter = await getBetterAuthInternalAdapter();
715
716
  if (!adapter) {
716
717
  throw new Error("Better Auth internal adapter is unavailable");
717
718
  }
718
- await ensureGoogleAuthIdentityWithAdapter(adapter, identity);
719
+ return ensureGoogleAuthIdentityWithAdapter(adapter, identity);
719
720
  }
720
721
  export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
721
722
  const email = identity.email.trim().toLowerCase();
@@ -731,13 +732,13 @@ export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
731
732
  if (!existing || linkedAccount.userId !== existing.user.id) {
732
733
  throw new Error("Google account is already linked to another user");
733
734
  }
734
- return;
735
+ return false;
735
736
  }
736
737
  if (!existing) {
737
738
  if (adapter.createOAuthUser) {
738
739
  try {
739
740
  await adapter.createOAuthUser({ email, name, emailVerified: true }, { providerId: "google", accountId });
740
- return;
741
+ return true;
741
742
  }
742
743
  catch (error) {
743
744
  // A concurrent first sign-in may have won the unique-email race. Only
@@ -754,7 +755,7 @@ export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
754
755
  if (linkedAccount.userId !== existing.user.id) {
755
756
  throw new Error("Google account is already linked to another user");
756
757
  }
757
- return;
758
+ return false;
758
759
  }
759
760
  }
760
761
  }
@@ -769,7 +770,7 @@ export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
769
770
  providerId: "google",
770
771
  accountId,
771
772
  });
772
- return;
773
+ return true;
773
774
  }
774
775
  }
775
776
  if (!existing) {
@@ -777,7 +778,7 @@ export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
777
778
  }
778
779
  const alreadyLinked = existing.accounts.some((account) => account.providerId === "google" && account.accountId === accountId);
779
780
  if (alreadyLinked)
780
- return;
781
+ return false;
781
782
  // A password signup reserves the email before verification. If that row is
782
783
  // credential-only, remove the unverified credential and promote the same
783
784
  // canonical user to the verified Google identity. Any other linked account
@@ -793,13 +794,14 @@ export async function ensureGoogleAuthIdentityWithAdapter(adapter, identity) {
793
794
  email,
794
795
  accountId,
795
796
  });
796
- return;
797
+ return false;
797
798
  }
798
799
  await adapter.linkAccount({
799
800
  userId: existing.user.id,
800
801
  providerId: "google",
801
802
  accountId,
802
803
  });
804
+ return false;
803
805
  }
804
806
  /** Reset for testing */
805
807
  export async function resetBetterAuth() {
@@ -25,14 +25,9 @@ function inlineMarkdown(value) {
25
25
  trailing = url.slice(-1) + trailing;
26
26
  url = url.slice(0, -1);
27
27
  }
28
- let label = "Open link";
29
- const normalizedUrl = url.replace(/&amp;/g, "&");
30
- if (URL.canParse(normalizedUrl)) {
31
- const host = new URL(normalizedUrl).hostname.replace(/^www\./, "");
32
- if (host)
33
- label = `Open ${host}`;
34
- }
35
- return `${prefix}<a href="${url}" style="color:${EMAIL_TEXT};text-decoration:underline;">${label}</a>${trailing}`;
28
+ // A bare URL stays its own link text: a recipient who cannot read the
29
+ // destination cannot tell a digest link from a phishing one.
30
+ return `${prefix}<a href="${url}" style="color:${EMAIL_TEXT};text-decoration:underline;">${url}</a>${trailing}`;
36
31
  });
37
32
  html = html
38
33
  .replace(/`([^`]+)`/g, `<code style="background:${EMAIL_CODE};padding:2px 5px;border-radius:4px;font-size:0.92em;">$1</code>`)
@@ -20,7 +20,7 @@ export declare function createTranscribeVoiceHandler(): import("h3").EventHandle
20
20
  error: string;
21
21
  text?: undefined;
22
22
  } | {
23
- text: string;
24
23
  error?: undefined;
24
+ text: string;
25
25
  }>>;
26
26
  //# sourceMappingURL=transcribe-voice.d.ts.map
@@ -0,0 +1,3 @@
1
+ export declare const FIRST_RUN_ONBOARDING_COOKIE = "agent-native-first-run";
2
+ export declare const FIRST_RUN_ONBOARDING_MAX_AGE: number;
3
+ //# sourceMappingURL=first-run-onboarding.d.ts.map
@@ -0,0 +1,3 @@
1
+ export const FIRST_RUN_ONBOARDING_COOKIE = "agent-native-first-run";
2
+ export const FIRST_RUN_ONBOARDING_MAX_AGE = 24 * 60 * 60;
3
+ //# sourceMappingURL=first-run-onboarding.js.map
@@ -2,4 +2,7 @@ export type { TriggerFrontmatter, TriggerDispatchContext } from "./types.js";
2
2
  export { initTriggerDispatcher, refreshEventSubscriptions, parseTriggerFrontmatter, buildTriggerContent, type TriggerDispatcherDeps, } from "./dispatcher.js";
3
3
  export { evaluateCondition, __clearConditionCache, } from "./condition-evaluator.js";
4
4
  export { createAutomationToolEntries } from "./actions.js";
5
+ export { defineAutomation, listAutomationDefinitions, updateAutomation, type AutomationActor, type AutomationDefinition, } from "../automations/service.js";
6
+ export { queueAutomationRunNow } from "../jobs/run-now.js";
7
+ export { listAutomationRuns } from "../jobs/run-history.js";
5
8
  //# sourceMappingURL=index.d.ts.map
@@ -1,4 +1,9 @@
1
1
  export { initTriggerDispatcher, refreshEventSubscriptions, parseTriggerFrontmatter, buildTriggerContent, } from "./dispatcher.js";
2
2
  export { evaluateCondition, __clearConditionCache, } from "./condition-evaluator.js";
3
3
  export { createAutomationToolEntries } from "./actions.js";
4
+ // Template-native automation surfaces use the same organization-scoped
5
+ // service and run history as the framework Agent page.
6
+ export { defineAutomation, listAutomationDefinitions, updateAutomation, } from "../automations/service.js";
7
+ export { queueAutomationRunNow } from "../jobs/run-now.js";
8
+ export { listAutomationRuns } from "../jobs/run-history.js";
4
9
  //# sourceMappingURL=index.js.map
@@ -15,6 +15,32 @@ This is the same trust primitive [A2A](/docs/a2a-protocol) and [External Agents]
15
15
 
16
16
  </Callout>
17
17
 
18
+ ## What the user sees {#user-flow}
19
+
20
+ Cross-App SSO should feel like moving between products in one workspace, not
21
+ creating a second account. For example:
22
+
23
+ 1. Sign in to [Dispatch](https://dispatch.agent-native.com), or to any app
24
+ that already uses the workspace identity.
25
+ 2. Open [Mail](https://mail.agent-native.com), [Calendar](https://calendar.agent-native.com),
26
+ or another enabled app in a new tab.
27
+ 3. The app sends the browser to Dispatch only if it does not already have a
28
+ Dispatch session. If the session exists, the redirect is effectively
29
+ invisible.
30
+ 4. Return to the app already signed in, with the same email, records, and org
31
+ context as before.
32
+
33
+ The important distinction is that this is **one sign-in, not one shared
34
+ cookie**. Each separately hosted app still creates and owns its own local
35
+ session. Dispatch proves the user's identity at the app's front door, and the
36
+ app then continues with its normal local auth and access checks.
37
+
38
+ For a product walkthrough, record this exact sequence: sign in once in
39
+ Dispatch, open two other hosted apps, show that neither asks for credentials,
40
+ then sign out of one app and show that the other app's session is independent.
41
+ That last step makes the security boundary visible: SSO removes repeated
42
+ logins without turning every app into one shared session store.
43
+
18
44
  ## What & why {#what-why}
19
45
 
20
46
  Per-app user stores mean there is no single place a browser cookie could live that every app trusts. The federation model instead names one app — **Dispatch** — as the identity authority. Any other app can delegate "who is this person?" to Dispatch, get back a short-lived signed assertion of the user's verified email, and then **link that to its own local account by email**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.136.4",
3
+ "version": "0.137.0",
4
4
  "description": "Framework for agent-native application development — where AI agents and UI share SQL state, actions, and context",
5
5
  "homepage": "https://github.com/BuilderIO/agent-native#readme",
6
6
  "bugs": {