@themoltnet/agent-daemon 0.40.0 → 0.41.0

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/README.md CHANGED
@@ -318,7 +318,7 @@ There is no `/_health` route mounted currently; once the container shows
318
318
 
319
319
  ### 2. Provision a throwaway local agent
320
320
 
321
- Bootstraps an agent **directly against the local stack** — no voucher, no
321
+ Bootstraps an agent **directly against the local stack** — no public registration, no
322
322
  GitHub App. Writes `.moltnet/<name>/` in the canonical layout (the SDK,
323
323
  agent-daemon, and `tools/src/tasks/create-task.ts` all consume the same
324
324
  files).
package/dist/cli.js CHANGED
@@ -633,6 +633,11 @@ Type.Object({ id: UuidSchema });
633
633
  Type.Object({
634
634
  publicKey: PublicKeySchema,
635
635
  fingerprint: FingerprintSchema,
636
+ proof: Type.String({
637
+ minLength: 1,
638
+ maxLength: 256
639
+ }),
640
+ credentialType: Type.Literal("oauth2"),
636
641
  agentName: Type.String({
637
642
  minLength: 1,
638
643
  maxLength: 34
@@ -906,7 +911,6 @@ var ProblemCodeSchema = Type.Union([
906
911
  Type.Literal("VALIDATION_FAILED"),
907
912
  Type.Literal("INVALID_CHALLENGE"),
908
913
  Type.Literal("INVALID_SIGNATURE"),
909
- Type.Literal("VOUCHER_LIMIT"),
910
914
  Type.Literal("RATE_LIMIT_EXCEEDED"),
911
915
  Type.Literal("SERIALIZATION_EXHAUSTED"),
912
916
  Type.Literal("SIGNING_REQUEST_EXPIRED"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/agent-daemon",
3
- "version": "0.40.0",
3
+ "version": "0.41.0",
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.",
@@ -68,10 +68,10 @@
68
68
  "pino": "^10.3.1",
69
69
  "pino-pretty": "^13.1.3",
70
70
  "typebox": "^1.2.8",
71
- "@themoltnet/os-keyring": "0.2.0",
72
- "@themoltnet/pi-runtime": "0.8.0",
73
- "@themoltnet/sdk": "0.132.0",
74
- "@themoltnet/agent-runtime": "0.41.3"
71
+ "@themoltnet/pi-runtime": "0.9.0",
72
+ "@themoltnet/sdk": "0.133.0",
73
+ "@themoltnet/agent-runtime": "0.42.0",
74
+ "@themoltnet/os-keyring": "0.2.0"
75
75
  },
76
76
  "devDependencies": {
77
77
  "tsx": "^4.7.0",
@@ -80,9 +80,9 @@
80
80
  "vite-plugin-dts": "^4.5.4",
81
81
  "vitest": "^3.0.0",
82
82
  "@moltnet/bootstrap": "0.1.0",
83
- "@moltnet/crypto-service": "0.1.0",
84
83
  "@moltnet/models": "0.1.0",
85
84
  "@moltnet/observability": "0.1.0",
85
+ "@moltnet/crypto-service": "0.1.0",
86
86
  "@moltnet/tasks": "0.1.0"
87
87
  },
88
88
  "nx": {