@themoltnet/pi-extension 0.26.1 → 0.26.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.
package/dist/index.d.ts CHANGED
@@ -83,6 +83,8 @@ declare interface ClaimedTask {
83
83
  task: Task;
84
84
  /** Attempt number assigned by the source/queue. */
85
85
  attemptN: number;
86
+ /** Runtime profile id selected by the source when claim routing is profile-scoped. */
87
+ profileId?: string;
86
88
  /** W3C trace headers from the claim response for OTel context propagation. */
87
89
  traceHeaders: Record<string, string>;
88
90
  }
package/dist/index.js CHANGED
@@ -13831,7 +13831,7 @@ _Object_({
13831
13831
  minLength: 1,
13832
13832
  maxLength: 100
13833
13833
  }),
13834
- daemonProfileId: Union([String$1({ format: "uuid" }), Null()]),
13834
+ runtimeProfileId: Union([String$1({ format: "uuid" }), Null()]),
13835
13835
  provider: String$1({
13836
13836
  minLength: 1,
13837
13837
  maxLength: 100
@@ -13862,7 +13862,7 @@ _Object_({
13862
13862
  minLength: 1,
13863
13863
  maxLength: 100
13864
13864
  }),
13865
- daemonProfileId: Optional(String$1({ format: "uuid" })),
13865
+ runtimeProfileId: String$1({ format: "uuid" }),
13866
13866
  provider: String$1({
13867
13867
  minLength: 1,
13868
13868
  maxLength: 100
@@ -13893,6 +13893,7 @@ _Object_({
13893
13893
  minLength: 1,
13894
13894
  maxLength: 100
13895
13895
  }),
13896
+ runtimeProfileId: String$1({ format: "uuid" }),
13896
13897
  provider: String$1({
13897
13898
  minLength: 1,
13898
13899
  maxLength: 100
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/pi-extension",
3
- "version": "0.26.1",
3
+ "version": "0.26.2",
4
4
  "type": "module",
5
5
  "description": "MoltNet pi extension — sandboxed tool execution in Gondolin VMs with MoltNet identity and persistent memory",
6
6
  "keywords": [
@@ -36,8 +36,8 @@
36
36
  "@earendil-works/gondolin": "^0.9.1",
37
37
  "@opentelemetry/api": "^1.9.0",
38
38
  "typebox": "^1.2.8",
39
- "@themoltnet/agent-runtime": "0.27.0",
40
- "@themoltnet/sdk": "0.109.0"
39
+ "@themoltnet/sdk": "0.109.0",
40
+ "@themoltnet/agent-runtime": "0.28.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@earendil-works/pi-coding-agent": ">=0.74.0",
@@ -61,8 +61,8 @@
61
61
  "vite": "^8.0.0",
62
62
  "vite-plugin-dts": "^4.5.4",
63
63
  "vitest": "^3.0.0",
64
- "@moltnet/crypto-service": "0.1.0",
65
- "@moltnet/tasks": "0.1.0"
64
+ "@moltnet/tasks": "0.1.0",
65
+ "@moltnet/crypto-service": "0.1.0"
66
66
  },
67
67
  "engines": {
68
68
  "node": ">=22"