@agent-native/core 0.178.0-nightly-20260909185938 → 0.178.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.
@@ -3,6 +3,22 @@
3
3
  All notable user-facing changes to Agent-Native Analytics are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new") or from Settings.
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Collaborator avatars use a slimmer border.
11
+
12
+ ## 2026-09-08
13
+
14
+ ### Improved
15
+
16
+ - Login pages use the same mouse-reactive wave background as the docs and booking experiences.
17
+
18
+ ### Fixed
19
+
20
+ - Analytics dashboards and daily emails include current zero-activity dates.
21
+
6
22
  ## 2026-09-04
7
23
 
8
24
  ### Improved
@@ -3,6 +3,25 @@
3
3
  All notable user-facing changes to Agent-Native Calendar are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new") or from Settings.
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Calendar can color Google events by meeting type again
11
+ - Connected account avatars use a slimmer border.
12
+
13
+ ## 2026-09-08
14
+
15
+ ### Improved
16
+
17
+ - Login pages use the same mouse-reactive wave background as the docs and booking experiences.
18
+
19
+ ### Fixed
20
+
21
+ - Calendar overlay status now queries a valid one-day range
22
+ - Calendar shows proposed-time actions for Google event invitations
23
+ - Provider-supplied full-day meetings stay in the compact top bar.
24
+
6
25
  ## 2026-09-05
7
26
 
8
27
  ### Improved
@@ -3,6 +3,12 @@
3
3
  All notable user-facing changes to Clips are documented here. Open it any time
4
4
  from the command menu (Cmd+K → "What's new") or from Settings.
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Attendee and viewer avatars use a slimmer border.
11
+
6
12
  ## 2026-09-04
7
13
 
8
14
  ### Fixed
@@ -5,8 +5,13 @@ time from the command menu (Cmd+K → "What's new").
5
5
 
6
6
  ## 2026-09-09
7
7
 
8
+ ### Added
9
+
10
+ - Connected agents can set up ordinary databases, configure fields and table views, and recover them from Trash with verified results.
11
+
8
12
  ### Fixed
9
13
 
14
+ - First title edits no longer hit a stale-version conflict, open databases recover after agent Trash and restore actions, and database settings preserve keyboard focus when closing or returning to Add property. Source-managed database fields stay read-only in tables, page property editors, and agent actions, while local fields remain editable. Property editors stay inside mobile Info so edits can be saved without closing the panel.
10
15
  - Remote collaborator cursors in the document editor now stay compact above the text instead of expanding into full-width color bars.
11
16
 
12
17
  ## 2026-09-03
@@ -3118,7 +3118,7 @@ const localFilesMessages = {
3118
3118
  importedLocalFiles: "Imported local files",
3119
3119
  importedSource: "Imported source",
3120
3120
  lastSync: "Last sync",
3121
- localFolders: "Local folders",
3121
+ localFolders: "Folders",
3122
3122
  mainFolder: "Main folder",
3123
3123
  metaTitle: "Local files - Content",
3124
3124
  noFoldersLinked: "No folders linked",
@@ -3659,7 +3659,7 @@ const rawLiteralLocaleMessages: Partial<Record<LocaleCode, PartialMessages>> = {
3659
3659
  folderLinked: "已链接 {{count}} 个文件夹",
3660
3660
  foldersLinked: "已链接 {{count}} 个文件夹",
3661
3661
  lastSync: "上次同步",
3662
- localFolders: "本地文件夹",
3662
+ localFolders: "文件夹",
3663
3663
  mainFolder: "主文件夹",
3664
3664
  metaTitle: "本地文件 - Content",
3665
3665
  noFoldersLinked: "未链接文件夹",
@@ -3900,7 +3900,7 @@ const rawLiteralLocaleMessages: Partial<Record<LocaleCode, PartialMessages>> = {
3900
3900
  folderLinked: "{{count}} carpeta enlazada",
3901
3901
  foldersLinked: "{{count}} carpetas enlazadas",
3902
3902
  lastSync: "Última sincronización",
3903
- localFolders: "Carpetas locales",
3903
+ localFolders: "Carpetas",
3904
3904
  mainFolder: "Carpeta principal",
3905
3905
  metaTitle: "Archivos locales - Content",
3906
3906
  noFoldersLinked: "No hay carpetas enlazadas",
@@ -22,6 +22,15 @@ export function hasInterruptedNativeFolderPickerAttempt(
22
22
  }
23
23
  }
24
24
 
25
+ export function isUserCancelledFolderPickerError(error: unknown): boolean {
26
+ // DOMException does not extend Error, so check by name/code instead of
27
+ // `instanceof Error`. `showDirectoryPicker()` rejects with this shape when
28
+ // the user dismisses the native picker without choosing a folder.
29
+ if (typeof error !== "object" || error === null) return false;
30
+ const named = error as { name?: unknown; code?: unknown };
31
+ return named.name === "AbortError" || named.code === DOMException.ABORT_ERR;
32
+ }
33
+
25
34
  export async function runNativeFolderPickerWithCrashSentinel<T>(
26
35
  operation: () => Promise<T>,
27
36
  options: {
@@ -53,6 +53,7 @@ import {
53
53
  } from "@/lib/local-folder-live-sync";
54
54
  import {
55
55
  hasInterruptedNativeFolderPickerAttempt,
56
+ isUserCancelledFolderPickerError,
56
57
  runNativeFolderPickerWithCrashSentinel,
57
58
  } from "@/lib/local-folder-picker-safety";
58
59
  import { isUnsafeNativeFolderPickerHost } from "@/lib/local-folder-picker-support";
@@ -1163,6 +1164,10 @@ export default function LocalFilesRoute() {
1163
1164
  toast.success(t("localFiles.pulledLocalFiles"));
1164
1165
  await connectLocalComponentWorkspaces([selected]);
1165
1166
  } catch (err) {
1167
+ if (isUserCancelledFolderPickerError(err)) {
1168
+ // Backing out of the native picker isn't a failure worth surfacing.
1169
+ return;
1170
+ }
1166
1171
  setStatus({
1167
1172
  kind: "error",
1168
1173
  title: t("localFiles.folderAddFailed"),
@@ -3,6 +3,12 @@
3
3
  All notable user-facing changes to Design are documented here. Open it any time
4
4
  from the command menu (Cmd+K → "What's new") or from Settings.
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Collaborator avatars in the design editor use a slimmer border.
11
+
6
12
  ## 2026-09-04
7
13
 
8
14
  ### Improved
@@ -3,10 +3,28 @@
3
3
  All notable user-facing changes to Chat are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new").
5
5
 
6
+ ## 2026-09-08
7
+
8
+ ### Fixed
9
+
10
+ - A second GitHub or Sentry automation no longer flips to Slack, and author filters, destinations, and Run now keep the job you actually saved.
11
+ - The automation editor now shows the saved values after you save, refuses to Run now while edits are unsaved, and says so when the automation you opened no longer exists.
12
+ - Factory automations keep Slack channels and display names after enable, disable, or schedule updates.
13
+ - Tagging @builderio-bot now works for factories whose GitHub repository comes from their automation instead of the factory's own field, and a dispatch that would post to a different repository than the factory is configured for is refused instead of posting there.
14
+ - GitHub polling now looks past a page of filtered-out authors or already-queued items to find the pull requests and issues you asked for, and a run that stopped early is recorded as incomplete with the reason named — more pages remained, the author filter skipped something, or the inbox limit was reached — instead of blaming the author filter for all three.
15
+ - PR governance now accepts the repository configured on the automation, so pull requests polled into the inbox are no longer rejected as out of scope when the factory's own repository field is empty.
16
+
6
17
  ## 2026-09-04
7
18
 
19
+ ### Improved
20
+
21
+ - Inbox rows now show the GitHub pull request or issue title instead of the first line of its description, and the detail view gives every item a title, a single metadata line, and separated Reason, Evidence, and Log sections so Slack and GitHub items read the same way.
22
+
8
23
  ### Fixed
9
24
 
25
+ - Audit run rows now show the GitHub pull request or issue title in the collapsible header instead of the first line of its description, and Slack rows keep using the message text because those items have no title of their own.
26
+ - An automation's GitHub author filter now applies when items are polled instead of only when the inbox is read, so pull requests from other authors no longer fill the inbox and consume the item limit ahead of the authors you asked for.
27
+ - PR babysitting now accepts the repository configured on the automation, so pull requests that were polled into the inbox no longer sit unreviewed when the factory's own repository field is empty.
10
28
  - The Automations tab still lists Factory jobs after their domain tag is missing.
11
29
  - The built-in Factory map can be saved the first time without a stale-version error.
12
30
  - Agent view-screen follows the Factory tab you are looking at when more than one is open.
@@ -3,6 +3,26 @@
3
3
  All notable user-facing changes to Agent-Native Mail are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new") or from Settings.
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Account avatars use a slimmer border.
11
+
12
+ ### Fixed
13
+
14
+ - Select the first top label by default on open, cycle labels with Tab from anywhere, and eliminate skeleton flicker on label change
15
+
16
+ ## 2026-09-08
17
+
18
+ ### Improved
19
+
20
+ - Login pages use the same mouse-reactive wave background as the docs and booking experiences.
21
+
22
+ ### Fixed
23
+
24
+ - Mail renders Gmail signature email and social links correctly
25
+
6
26
  ## 2026-09-04
7
27
 
8
28
  ### Fixed
@@ -3,6 +3,12 @@
3
3
  All notable user-facing changes to Agent-Native Plan are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new").
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Collaborator avatars use a slimmer border.
11
+
6
12
  ## 2026-09-02
7
13
 
8
14
  ### Improved
@@ -3,6 +3,17 @@
3
3
  All notable user-facing changes to Agent-Native Slides are documented here. Open it any
4
4
  time from the command menu (Cmd+K → "What's new").
5
5
 
6
+ ## 2026-09-09
7
+
8
+ ### Improved
9
+
10
+ - Comment and editor avatars use a slimmer border.
11
+ - Slides use a polished light visual style by default when no brand system is selected.
12
+
13
+ ### Fixed
14
+
15
+ - When an agent's slide edit does not match the slide, it now says so instead of reporting an internal server error, so the agent can correct the edit rather than retrying the same one.
16
+
6
17
  ## 2026-09-03
7
18
 
8
19
  ### Fixed
@@ -186,8 +186,8 @@ export declare function createAutomationCallbackHandler(runtime: AutomationRunti
186
186
  duplicate?: undefined;
187
187
  eventId?: undefined;
188
188
  } | {
189
+ error?: undefined;
189
190
  accepted: boolean;
190
191
  duplicate: boolean;
191
192
  eventId: string;
192
- error?: undefined;
193
193
  }>;
@@ -62,11 +62,11 @@ export declare const postAwareness: import("h3").EventHandlerWithFetch<import("h
62
62
  error: string;
63
63
  states?: undefined;
64
64
  } | {
65
+ error?: undefined;
65
66
  states: {
66
67
  clientId: number;
67
68
  state: string;
68
69
  }[];
69
- error?: undefined;
70
70
  }>>;
71
71
  /**
72
72
  * GET /_agent-native/collab/:docId/users
@@ -77,9 +77,9 @@ export declare const getActiveUsers: import("h3").EventHandlerWithFetch<import("
77
77
  error: string;
78
78
  users?: undefined;
79
79
  } | {
80
+ error?: undefined;
80
81
  users: {
81
82
  clientId: number;
82
83
  lastSeen: number;
83
84
  }[];
84
- error?: undefined;
85
85
  }>>;
@@ -26,8 +26,8 @@ export declare const getCollabState: import("h3").EventHandlerWithFetch<import("
26
26
  * Body: { update: string (base64), requestSource?: string }
27
27
  */
28
28
  export declare const postCollabUpdate: import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
29
- ok?: undefined;
30
29
  error: string;
30
+ ok?: undefined;
31
31
  } | {
32
32
  error?: undefined;
33
33
  ok: boolean;
@@ -13,8 +13,8 @@
13
13
  * Body: { json: any, fieldName?: string, type?: "map"|"array", requestSource?: string }
14
14
  */
15
15
  export declare const postCollabJson: import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<{
16
- error: string;
17
16
  ok?: undefined;
17
+ error: string;
18
18
  } | {
19
19
  error?: undefined;
20
20
  ok: boolean;
@@ -17,11 +17,11 @@ declare const _default: import("../../action.js").ActionDefinition<{
17
17
  id?: undefined;
18
18
  provider?: undefined;
19
19
  } | {
20
- error?: undefined;
21
20
  configured?: undefined;
22
21
  connectPath?: undefined;
23
22
  url: string;
24
23
  id: string;
25
24
  provider: string;
25
+ error?: undefined;
26
26
  }>;
27
27
  export default _default;
@@ -13,13 +13,13 @@
13
13
  export declare function createNotificationsHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<"" | import("./types.js").Notification[] | {
14
14
  count: number;
15
15
  updated?: undefined;
16
- ok?: undefined;
17
16
  error?: undefined;
17
+ ok?: undefined;
18
18
  } | {
19
19
  count?: undefined;
20
20
  updated: number;
21
- ok?: undefined;
22
21
  error?: undefined;
22
+ ok?: undefined;
23
23
  } | {
24
24
  count?: undefined;
25
25
  updated?: undefined;
@@ -43,25 +43,25 @@ export declare function createObservabilityHandler(): import("h3").EventHandlerW
43
43
  } | {
44
44
  summary: import("./types.js").TraceSummary;
45
45
  spans: import("./types.js").TraceSpan[];
46
- ok?: undefined;
47
- error?: undefined;
48
46
  id?: undefined;
47
+ error?: undefined;
48
+ ok?: undefined;
49
49
  } | {
50
50
  summary?: undefined;
51
51
  spans?: undefined;
52
52
  id: string;
53
- ok?: undefined;
54
53
  error?: undefined;
54
+ ok?: undefined;
55
55
  } | {
56
56
  summary?: undefined;
57
57
  spans?: undefined;
58
58
  error: any;
59
- ok?: undefined;
60
59
  id?: undefined;
60
+ ok?: undefined;
61
61
  } | {
62
62
  summary?: undefined;
63
63
  spans?: undefined;
64
64
  ok: boolean;
65
- error?: undefined;
66
65
  id?: undefined;
66
+ error?: undefined;
67
67
  }>>;
@@ -15,6 +15,6 @@ export declare function createProgressHandler(): import("h3").EventHandlerWithFe
15
15
  error: string;
16
16
  ok?: undefined;
17
17
  } | {
18
- ok: boolean;
19
18
  error?: undefined;
19
+ ok: boolean;
20
20
  }>>;
@@ -37,17 +37,17 @@ export declare function createWriteSecretHandler(): import("h3").EventHandlerWit
37
37
  ok?: undefined;
38
38
  status?: undefined;
39
39
  } | {
40
+ error?: undefined;
40
41
  ok: boolean;
41
42
  status: string;
42
- error?: undefined;
43
43
  } | {
44
44
  ok?: undefined;
45
45
  error: string;
46
46
  removed?: undefined;
47
47
  } | {
48
+ error?: undefined;
48
49
  ok: boolean;
49
50
  removed: boolean;
50
- error?: undefined;
51
51
  }>>;
52
52
  /**
53
53
  * POST /_agent-native/secrets/:key/test — validate an optional candidate value
@@ -58,13 +58,13 @@ export declare function createTestSecretHandler(): import("h3").EventHandlerWith
58
58
  error: string;
59
59
  note?: undefined;
60
60
  } | {
61
+ error?: undefined;
61
62
  ok: boolean;
62
63
  note?: undefined;
63
- error?: undefined;
64
64
  } | {
65
+ error?: undefined;
65
66
  ok: boolean;
66
67
  note: string;
67
- error?: undefined;
68
68
  } | {
69
69
  note?: undefined;
70
70
  ok: boolean;
@@ -95,11 +95,11 @@ export interface AdHocSecretPayload {
95
95
  export declare function createAdHocSecretHandler(): import("h3").EventHandlerWithFetch<import("h3").EventHandlerRequest, Promise<AdHocSecretPayload[] | {
96
96
  error: string;
97
97
  } | {
98
+ error?: undefined;
98
99
  ok: boolean;
99
100
  key: string;
100
- error?: undefined;
101
101
  } | {
102
+ error?: undefined;
102
103
  ok: boolean;
103
104
  removed: boolean;
104
- error?: undefined;
105
105
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-native/core",
3
- "version": "0.178.0-nightly-20260909185938",
3
+ "version": "0.178.0",
4
4
  "description": "The agentic application framework for building autonomous agents with intuitive UIs",
5
5
  "homepage": "https://github.com/BuilderIO/agent-native#readme",
6
6
  "bugs": {
@@ -445,8 +445,8 @@
445
445
  "y-protocols": "^1.0.7",
446
446
  "yjs": "^13.6.32",
447
447
  "zod": "^4.3.6",
448
- "@agent-native/toolkit": "^0.19.6-nightly-20260909185938",
449
- "@agent-native/recap-cli": "0.5.27"
448
+ "@agent-native/recap-cli": "0.5.28",
449
+ "@agent-native/toolkit": "^0.19.6"
450
450
  },
451
451
  "devDependencies": {
452
452
  "@ai-sdk/anthropic": "^3.0.71",