@themoltnet/agent-daemon 0.34.1 → 0.34.2

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.
Files changed (2) hide show
  1. package/dist/cli.js +9 -1
  2. package/package.json +7 -7
package/dist/cli.js CHANGED
@@ -889,7 +889,11 @@ var ProblemDetailsSchema = Type.Object({
889
889
  }),
890
890
  code: ProblemCodeSchema,
891
891
  detail: Type.Optional(Type.String()),
892
- instance: Type.Optional(Type.String())
892
+ instance: Type.Optional(Type.String()),
893
+ retryAfter: Type.Optional(Type.Integer({
894
+ minimum: 0,
895
+ description: "Non-negative delay in seconds before retrying, matching the Retry-After response header when present."
896
+ }))
893
897
  }, {
894
898
  $id: "ProblemDetails",
895
899
  additionalProperties: true
@@ -3692,6 +3696,10 @@ Type.Object({
3692
3696
  taskId: Uuid,
3693
3697
  attemptN: Type.Number({ minimum: 1 }),
3694
3698
  claimedByAgentId: Uuid,
3699
+ leaseId: Type.Union([Uuid, Type.Null()]),
3700
+ runtimeProfileId: Type.Union([Uuid, Type.Null()]),
3701
+ runtimeProfileRevision: Type.Union([Type.Integer({ minimum: 1 }), Type.Null()]),
3702
+ policySnapshotHash: Type.Union([Type.String({ pattern: "^sha256:[0-9a-f]{64}$" }), Type.Null()]),
3695
3703
  runtimeId: Type.Union([Uuid, Type.Null()]),
3696
3704
  claimedAt: IsoTimestamp,
3697
3705
  startedAt: Type.Union([IsoTimestamp, Type.Null()]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/agent-daemon",
3
- "version": "0.34.1",
3
+ "version": "0.34.2",
4
4
  "license": "AGPL-3.0-only",
5
5
  "type": "module",
6
6
  "description": "Universal MoltNet agent daemon host with a built-in Pi/Gondolin runtime and support for trusted operator-owned runtime modules. CLI: moltnet-agent.",
@@ -62,9 +62,9 @@
62
62
  "pino": "^10.3.1",
63
63
  "pino-pretty": "^13.1.3",
64
64
  "typebox": "^1.2.8",
65
- "@themoltnet/agent-runtime": "0.38.0",
66
- "@themoltnet/pi-runtime": "0.3.0",
67
- "@themoltnet/sdk": "0.128.0"
65
+ "@themoltnet/pi-runtime": "0.4.0",
66
+ "@themoltnet/sdk": "0.128.0",
67
+ "@themoltnet/agent-runtime": "0.39.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "tsx": "^4.7.0",
@@ -72,10 +72,10 @@
72
72
  "vite": "^8.0.0",
73
73
  "vite-plugin-dts": "^4.5.4",
74
74
  "vitest": "^3.0.0",
75
- "@moltnet/bootstrap": "0.1.0",
76
- "@moltnet/tasks": "0.1.0",
77
75
  "@moltnet/crypto-service": "0.1.0",
78
- "@moltnet/observability": "0.1.0"
76
+ "@moltnet/bootstrap": "0.1.0",
77
+ "@moltnet/observability": "0.1.0",
78
+ "@moltnet/tasks": "0.1.0"
79
79
  },
80
80
  "nx": {
81
81
  "projectType": "application",