@sammorrowdrums/mcpi 0.70.7 → 0.70.9

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.
@@ -1874,7 +1874,11 @@ export class AgentSession {
1874
1874
  ]))
1875
1875
  : createAllToolDefinitions(this._cwd, {
1876
1876
  read: { autoResizeImages },
1877
- bash: { commandPrefix: shellCommandPrefix, shellPath },
1877
+ bash: {
1878
+ commandPrefix: shellCommandPrefix,
1879
+ shellPath,
1880
+ getSessionEnv: () => this._extensionRunner?.getSessionEnv() ?? new Map(),
1881
+ },
1878
1882
  });
1879
1883
  this._baseToolDefinitions = new Map(Object.entries(baseToolDefinitions).map(([name, tool]) => [name, tool]));
1880
1884
  const extensionsResult = this._resourceLoader.getExtensions();