@agent-native/core 0.77.14 → 0.77.16
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/core/CHANGELOG.md +26 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/production-agent.ts +329 -204
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +97 -15
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/collab/awareness.d.ts +2 -2
- package/dist/collab/awareness.d.ts.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/resources/handlers.d.ts +2 -2
- package/dist/server/transcribe-voice.d.ts +1 -1
- package/package.json +1 -1
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.77.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 02af11c: Extend the background-worker pre-send instrumentation: also time out the required
|
|
8
|
+
suspect branches (system prompt / `extraContext`, enriched message) and record
|
|
9
|
+
which branch hit its timeout/error fallback into the run's setup diagnostic
|
|
10
|
+
(`to=...` in `setupDetail`). The hanging op is then identifiable via
|
|
11
|
+
`/runs/active` even when the Netlify function-log drain is unreadable, and the
|
|
12
|
+
timeout lets the worker claim past a stuck required read.
|
|
13
|
+
|
|
14
|
+
## 0.77.15
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- d5ec2d0: Diagnostic + defensive instrumentation for the durable background-agent worker's
|
|
19
|
+
pre-send setup. Adds stdout breadcrumbs (`bgLog`, gated on the worker → Netlify
|
|
20
|
+
function logs, independent of DB writes which stall in the failing case) across
|
|
21
|
+
the post-`model_done` / pre-claim sequence and each parallel pre-send branch
|
|
22
|
+
(enrich, loop settings, system prompt, view-screen, url, selection, files
|
|
23
|
+
inventory) with start/done/error/timeout. The OPTIONAL context reads
|
|
24
|
+
(view-screen, url, selection, files) now race a short timeout with a safe `""`
|
|
25
|
+
fallback so one stuck read cannot block the worker from reaching
|
|
26
|
+
`claimBackgroundRun`. Used to localize the analytics-only worker freeze that the
|
|
27
|
+
DB-based diagnostic can't see.
|
|
28
|
+
|
|
3
29
|
## 0.77.14
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.77.
|
|
3
|
+
"version": "0.77.16",
|
|
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": {
|