agentgui 1.0.670 → 1.0.671

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.
@@ -95,6 +95,8 @@ class AgentRunner {
95
95
  if (v === undefined) delete spawnOpts.env[k];
96
96
  }
97
97
  }
98
+ // Tell hooks the actual project dir (used by mcp-thorns/codebasesearch)
99
+ if (cwd) spawnOpts.env.CLAUDE_PROJECT_DIR = cwd;
98
100
  if (this.closeStdin) {
99
101
  spawnOpts.stdio = ['ignore', 'pipe', 'pipe'];
100
102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.670",
3
+ "version": "1.0.671",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",