@tangle-network/agent-eval 0.126.6 → 0.126.7

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/dist/index.d.ts CHANGED
@@ -3036,7 +3036,7 @@ type RawAnalystFinding = z.infer<typeof RawAnalystFindingSchema>;
3036
3036
  * item so persisted rows and older model fixtures remain readable. New output
3037
3037
  * always receives the plural shape.
3038
3038
  */
3039
- declare const CanonicalRawAnalystFindingSchema: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodObject<{
3039
+ declare const CanonicalRawAnalystFindingSchema: z.ZodPreprocess<z.ZodObject<{
3040
3040
  evidence: z.ZodArray<z.ZodObject<{
3041
3041
  uri: z.ZodString;
3042
3042
  excerpt: z.ZodOptional<z.ZodString>;
package/dist/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "@tangle-network/agent-eval — wire protocol",
5
- "version": "0.126.6",
5
+ "version": "0.126.7",
6
6
  "description": "HTTP and stdio RPC interface to agent-eval. The TypeScript runtime is the source of truth; this spec is the contract that cross-language clients (Python, Rust, Go) generate from.\n\nWire-protocol version: 1.0.0. Bumps on breaking changes to request/response schemas.",
7
7
  "contact": {
8
8
  "name": "Tangle Network",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-eval",
3
- "version": "0.126.6",
3
+ "version": "0.126.7",
4
4
  "description": "Evaluate and improve AI agents from runs, traces, judges, and feedback. Compare candidates, cluster failures, measure lift, and gate releases.",
5
5
  "homepage": "https://github.com/tangle-network/agent-eval#readme",
6
6
  "repository": {
@@ -160,30 +160,36 @@
160
160
  "verify:package": "pnpm run check:skill && node scripts/verify-package-exports.mjs"
161
161
  },
162
162
  "dependencies": {
163
- "@asteasolutions/zod-to-openapi": "^8.5.0",
164
- "@ax-llm/ax": "^23.0.1",
165
- "@hono/node-server": "^2.0.0",
163
+ "@asteasolutions/zod-to-openapi": "^9.1.0",
164
+ "@ax-llm/ax": "^23.0.5",
165
+ "@hono/node-server": "^2.0.11",
166
166
  "@tangle-network/agent-core": "^0.4.20",
167
167
  "@tangle-network/agent-interface": "^0.32.0",
168
168
  "@tangle-network/tcloud": "^0.4.14",
169
- "hono": "^4.12.30",
170
- "zod": "^4.3.6"
169
+ "hono": "^4.12.32",
170
+ "zod": "^4.4.3"
171
171
  },
172
172
  "devDependencies": {
173
- "@biomejs/biome": "^2.4.15",
174
- "@types/node": "^25.6.0",
173
+ "@biomejs/biome": "^2.5.5",
174
+ "@types/node": "^26.1.1",
175
175
  "husky": "^9.1.7",
176
- "lint-staged": "^17.0.5",
177
- "openapi3-ts": "^4.5.0",
176
+ "lint-staged": "^17.2.0",
177
+ "openapi3-ts": "^4.6.0",
178
178
  "tsup": "^8.0.0",
179
- "typescript": "^5.7.0",
180
- "vitest": "^3.0.0",
179
+ "typescript": "^5.9.3",
180
+ "vitest": "^4.1.10",
181
181
  "yaml": "2.9.0"
182
182
  },
183
183
  "pnpm": {
184
184
  "minimumReleaseAge": 4320,
185
+ "minimumReleaseAgeExclude": [
186
+ "esbuild",
187
+ "vite"
188
+ ],
185
189
  "overrides": {
186
- "postcss@<8.5.10": "^8.5.10",
190
+ "esbuild@>=0.27.3 <0.28.1": "^0.28.1",
191
+ "postcss@<8.5.18": "^8.5.18",
192
+ "vite@>=7.0.0 <=7.3.4": "^7.3.5",
187
193
  "ws@>=8.0.0 <8.21.0": "^8.21.0"
188
194
  }
189
195
  },