@agent-native/core 0.176.5-nightly-20260903182257 → 0.176.5
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.
- package/corpus/templates/calendar/CHANGELOG.md +18 -0
- package/corpus/templates/clips/app/components/recorder/storage-setup-card.tsx +13 -7
- package/corpus/templates/content/CHANGELOG.md +1 -0
- package/corpus/templates/design/CHANGELOG.md +1 -0
- package/corpus/templates/factory/CHANGELOG.md +20 -0
- package/corpus/templates/mail/CHANGELOG.md +12 -0
- package/corpus/templates/plan/CHANGELOG.md +6 -0
- package/corpus/templates/slides/CHANGELOG.md +9 -0
- package/dist/automation/index.d.ts +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/notifications/routes.d.ts +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/resources/handlers.d.ts +1 -1
- package/dist/secrets/routes.d.ts +6 -6
- package/dist/server/realtime-token.d.ts +1 -1
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/package.json +3 -3
|
@@ -3,8 +3,26 @@
|
|
|
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-03
|
|
7
|
+
|
|
8
|
+
### Improved
|
|
9
|
+
|
|
10
|
+
- Calendar now supports reliable batch event updates and booking cancellations.
|
|
11
|
+
- The agent now asks for your approval before it deletes events in bulk, emails your guests about a cancellation or change, or moves an event to another calendar.
|
|
12
|
+
|
|
13
|
+
## 2026-09-02
|
|
14
|
+
|
|
15
|
+
### Improved
|
|
16
|
+
|
|
17
|
+
- Creating an event with guests now uses Save while still sending invitations
|
|
18
|
+
- Updated the booking-link OG preview image with the new monochrome logo and dark background.
|
|
19
|
+
|
|
6
20
|
## 2026-09-01
|
|
7
21
|
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Calendars shared with your connected Google accounts can now appear alongside your primary calendars.
|
|
25
|
+
|
|
8
26
|
### Improved
|
|
9
27
|
|
|
10
28
|
- Calendar keeps the learn-more link clear of the language control on every screen size.
|
|
@@ -96,6 +96,12 @@ export function StorageSetupCard({
|
|
|
96
96
|
}
|
|
97
97
|
stopVisibilityHandler();
|
|
98
98
|
};
|
|
99
|
+
const showTimeout = (): void => {
|
|
100
|
+
if (!mountedRef.current || Date.now() - start <= timeoutMs) return;
|
|
101
|
+
stop();
|
|
102
|
+
setConnecting(false);
|
|
103
|
+
setErr(t("storageSetup.builderTimeout"));
|
|
104
|
+
};
|
|
99
105
|
const tick = async () => {
|
|
100
106
|
if (document.hidden || inFlightRef.current) return;
|
|
101
107
|
inFlightRef.current = true;
|
|
@@ -112,7 +118,10 @@ export function StorageSetupCard({
|
|
|
112
118
|
).toString(),
|
|
113
119
|
{ signal: controller.signal },
|
|
114
120
|
);
|
|
115
|
-
if (!r.ok)
|
|
121
|
+
if (!r.ok) {
|
|
122
|
+
showTimeout();
|
|
123
|
+
return;
|
|
124
|
+
}
|
|
116
125
|
const s = (await r.json()) as { configured: boolean };
|
|
117
126
|
if (!mountedRef.current) {
|
|
118
127
|
stop();
|
|
@@ -123,14 +132,11 @@ export function StorageSetupCard({
|
|
|
123
132
|
setConnecting(false);
|
|
124
133
|
setConnected(true);
|
|
125
134
|
setTimeout(() => void onConfigured(), 800);
|
|
126
|
-
} else
|
|
127
|
-
|
|
128
|
-
setConnecting(false);
|
|
129
|
-
setErr(t("storageSetup.builderTimeout"));
|
|
135
|
+
} else {
|
|
136
|
+
showTimeout();
|
|
130
137
|
}
|
|
131
138
|
} catch {
|
|
132
|
-
|
|
133
|
-
// timeoutMs bound above surfaces builderTimeout if it never succeeds.
|
|
139
|
+
showTimeout();
|
|
134
140
|
} finally {
|
|
135
141
|
clearTimeout(abortTimer);
|
|
136
142
|
inFlightRef.current = false;
|
|
@@ -7,6 +7,7 @@ time from the command menu (Cmd+K → "What's new").
|
|
|
7
7
|
|
|
8
8
|
### Fixed
|
|
9
9
|
|
|
10
|
+
- Builder Publish connections made in Settings can now discover, attach, and refresh read-only database sources without separate legacy keys or Builder write access.
|
|
10
11
|
- Delegated Content requests now stay on Content's own actions for every authorized caller, including managed Slack channels.
|
|
11
12
|
|
|
12
13
|
## 2026-08-26
|
|
@@ -7,6 +7,7 @@ from the command menu (Cmd+K → "What's new") or from Settings.
|
|
|
7
7
|
|
|
8
8
|
### Fixed
|
|
9
9
|
|
|
10
|
+
- Edit with AI now opens a focused editing prompt for selected elements in multi-screen view and reliably returns generated options without misclassifying an active request as superseded.
|
|
10
11
|
- A greeting or question as the first message in a new design no longer ends with a false "couldn't confirm that a Design artifact was saved" reply.
|
|
11
12
|
|
|
12
13
|
## 2026-09-01
|
|
@@ -3,6 +3,26 @@
|
|
|
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-02
|
|
7
|
+
|
|
8
|
+
### Improved
|
|
9
|
+
|
|
10
|
+
- PR babysitting no longer fills an inbox item with the same “needs attention” line every few minutes. After it asks once, it steps out of the review queue until new human review feedback or a real merge conflict shows up.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- Factory automations stay listed, savable, runnable, and on schedule after a scheduler run updates their status.
|
|
15
|
+
- PR babysitting now asks Builder when a reviewer leaves body-only feedback, not only inline comments.
|
|
16
|
+
- PR babysitting no longer reopens a parked pull request when the author replies on an existing review thread.
|
|
17
|
+
- PR babysitting now reopens a parked pull request for a new reviewer body, and for a later merge conflict after an earlier one was cleared.
|
|
18
|
+
|
|
19
|
+
## 2026-09-01
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- Deleting a factory now removes its automations, their run history, and polling cursors so leftover jobs cannot keep running.
|
|
24
|
+
- PR babysitting posts one ask to Builder and does not poke again when GitHub finishes mergeability or the bot pushes a commit.
|
|
25
|
+
|
|
6
26
|
## 2026-08-31
|
|
7
27
|
|
|
8
28
|
### Improved
|
|
@@ -3,6 +3,18 @@
|
|
|
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-03
|
|
7
|
+
|
|
8
|
+
### Improved
|
|
9
|
+
|
|
10
|
+
- Mail keeps Gmail labels and agent-created drafts in sync with the inbox.
|
|
11
|
+
|
|
12
|
+
## 2026-09-02
|
|
13
|
+
|
|
14
|
+
### Improved
|
|
15
|
+
|
|
16
|
+
- Mail now links pasted URLs, offers a combined inbox, and restores recipient contact autocomplete.
|
|
17
|
+
|
|
6
18
|
## 2026-08-28
|
|
7
19
|
|
|
8
20
|
### 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-02
|
|
7
|
+
|
|
8
|
+
### Improved
|
|
9
|
+
|
|
10
|
+
- Recommended question choices now appear first and are selected by default.
|
|
11
|
+
|
|
6
12
|
## 2026-08-29
|
|
7
13
|
|
|
8
14
|
### Improved
|
|
@@ -3,6 +3,15 @@
|
|
|
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-03
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- Send to front and send to back now restack a slide layer above or below the
|
|
11
|
+
layers it overlaps, instead of quietly doing nothing or nudging the layer down
|
|
12
|
+
the slide.
|
|
13
|
+
- Dragging a text box's left or right handle now changes only its width, so the box grows and shrinks as the text rewraps. Corner handles still set the height manually.
|
|
14
|
+
|
|
6
15
|
## 2026-08-29
|
|
7
16
|
|
|
8
17
|
### Improved
|
|
@@ -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
|
}>>;
|
|
@@ -41,27 +41,27 @@ export declare function createObservabilityHandler(): import("h3").EventHandlerW
|
|
|
41
41
|
thumbsUpRate: number;
|
|
42
42
|
avgEvalScore: number;
|
|
43
43
|
} | {
|
|
44
|
-
error?: undefined;
|
|
45
|
-
ok?: undefined;
|
|
46
44
|
summary: import("./types.js").TraceSummary;
|
|
47
45
|
spans: import("./types.js").TraceSpan[];
|
|
48
46
|
id?: undefined;
|
|
49
|
-
} | {
|
|
50
47
|
error?: undefined;
|
|
51
48
|
ok?: undefined;
|
|
49
|
+
} | {
|
|
52
50
|
summary?: undefined;
|
|
53
51
|
spans?: undefined;
|
|
54
52
|
id: string;
|
|
55
|
-
|
|
53
|
+
error?: undefined;
|
|
56
54
|
ok?: undefined;
|
|
55
|
+
} | {
|
|
57
56
|
summary?: undefined;
|
|
58
57
|
spans?: undefined;
|
|
59
58
|
id?: undefined;
|
|
60
59
|
error: any;
|
|
60
|
+
ok?: undefined;
|
|
61
61
|
} | {
|
|
62
|
-
error?: undefined;
|
|
63
62
|
summary?: undefined;
|
|
64
63
|
spans?: undefined;
|
|
65
64
|
id?: undefined;
|
|
65
|
+
error?: undefined;
|
|
66
66
|
ok: boolean;
|
|
67
67
|
}>>;
|
|
@@ -48,8 +48,8 @@ export declare function handleUpdateResource(event: any): Promise<import("./stor
|
|
|
48
48
|
}>;
|
|
49
49
|
/** DELETE /_agent-native/resources/:id — delete a resource */
|
|
50
50
|
export declare function handleDeleteResource(event: any): Promise<{
|
|
51
|
-
ok?: undefined;
|
|
52
51
|
error: string;
|
|
52
|
+
ok?: undefined;
|
|
53
53
|
} | {
|
|
54
54
|
error?: undefined;
|
|
55
55
|
ok: boolean;
|
package/dist/secrets/routes.d.ts
CHANGED
|
@@ -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
|
}>>;
|
|
@@ -59,8 +59,8 @@ export declare function createRealtimeTokenHandler(): import("h3").EventHandlerW
|
|
|
59
59
|
expiresAt?: undefined;
|
|
60
60
|
ttlSeconds?: undefined;
|
|
61
61
|
} | {
|
|
62
|
+
error?: undefined;
|
|
62
63
|
token: string;
|
|
63
64
|
expiresAt: string;
|
|
64
65
|
ttlSeconds: number;
|
|
65
|
-
error?: undefined;
|
|
66
66
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.176.5
|
|
3
|
+
"version": "0.176.5",
|
|
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": {
|
|
@@ -439,8 +439,8 @@
|
|
|
439
439
|
"y-protocols": "^1.0.7",
|
|
440
440
|
"yjs": "^13.6.32",
|
|
441
441
|
"zod": "^4.3.6",
|
|
442
|
-
"@agent-native/recap-cli": "0.5.
|
|
443
|
-
"@agent-native/toolkit": "^0.19.3
|
|
442
|
+
"@agent-native/recap-cli": "0.5.25",
|
|
443
|
+
"@agent-native/toolkit": "^0.19.3"
|
|
444
444
|
},
|
|
445
445
|
"devDependencies": {
|
|
446
446
|
"@ai-sdk/anthropic": "^3.0.71",
|