@jami-studio/core 0.92.30 → 0.92.31
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 +14 -0
- package/corpus/core/package.json +1 -1
- package/corpus/core/src/agent/production-agent.ts +7360 -7302
- package/dist/agent/production-agent.d.ts +15 -1
- package/dist/agent/production-agent.d.ts.map +1 -1
- package/dist/agent/production-agent.js +61 -15
- package/dist/agent/production-agent.js.map +1 -1
- package/dist/collab/routes.d.ts +1 -1
- package/dist/collab/struct-routes.d.ts +1 -1
- package/dist/file-upload/actions/upload-image.d.ts +1 -1
- package/dist/observability/routes.d.ts +5 -5
- package/dist/progress/routes.d.ts +1 -1
- package/dist/resources/handlers.d.ts +2 -2
- package/package.json +1 -1
package/corpus/core/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @agent-native/core
|
|
2
2
|
|
|
3
|
+
## 0.92.31
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7dda086: Agent raw-tool-input validation survives codegen-restricted runtimes. Ajv
|
|
8
|
+
compiles JSON-schema validators via `new Function`, which Cloudflare's
|
|
9
|
+
workerd rejects (`EvalError: Code generation from strings disallowed`) — on
|
|
10
|
+
the unified worker EVERY tool whose action entry lacks a live zod schema was
|
|
11
|
+
refused with "tool schema is invalid" before execution (the slides agent was
|
|
12
|
+
fully paralyzed; dispatch's tool-search failed every call). When Ajv cannot
|
|
13
|
+
compile, validation now degrades to a non-codegen structural check (object-
|
|
14
|
+
ness + `required` keys); the action's own parameter validation remains
|
|
15
|
+
authoritative at execution time. Node runtimes keep full Ajv validation.
|
|
16
|
+
|
|
3
17
|
## 0.92.30
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/corpus/core/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-native/core",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.31",
|
|
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/studio-jami/jami-studio#readme",
|
|
6
6
|
"bugs": {
|