agentgui 1.0.631 → 1.0.632

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.
@@ -10,6 +10,8 @@ function getSpawnOptions(cwd, additionalOptions = {}) {
10
10
  if (!options.env) {
11
11
  options.env = { ...process.env };
12
12
  }
13
+ // Allow spawning claude inside another claude session
14
+ delete options.env.CLAUDECODE;
13
15
  return options;
14
16
  }
15
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.631",
3
+ "version": "1.0.632",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",