@themoltnet/pi-extension 0.13.3 → 0.13.4

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/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -14110,7 +14110,7 @@ async function executePiTask(claimedTask, reporter, opts) {
14110
14110
  correlationId: task.correlationId ?? null
14111
14111
  })
14112
14112
  });
14113
- const piAuthDir = join(homedir(), ".pi", "agent");
14113
+ const piAuthDir = process.env.PI_CODING_AGENT_DIR ?? join(homedir(), ".pi", "agent");
14114
14114
  const modelHandle = getModel(opts.provider, opts.model);
14115
14115
  const piOtelExtension = createPiOtelExtension({
14116
14116
  agentName: opts.agentName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@themoltnet/pi-extension",
3
- "version": "0.13.3",
3
+ "version": "0.13.4",
4
4
  "type": "module",
5
5
  "description": "MoltNet pi extension — sandboxed tool execution in Gondolin VMs with MoltNet identity and persistent memory",
6
6
  "license": "MIT",
@@ -28,7 +28,7 @@
28
28
  ]
29
29
  },
30
30
  "dependencies": {
31
- "@earendil-works/gondolin": "^0.7.0",
31
+ "@earendil-works/gondolin": "^0.9.1",
32
32
  "@opentelemetry/api": "^1.9.0",
33
33
  "@sinclair/typebox": "^0.34.0",
34
34
  "@themoltnet/agent-runtime": "0.10.0",