@openagents-org/agent-launcher 0.2.76 → 0.2.77

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.2.76",
3
+ "version": "0.2.77",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -257,6 +257,7 @@ class OpenClawAdapter extends BaseAdapter {
257
257
  const proc = spawn(spawnBin, spawnArgs, {
258
258
  stdio: ['ignore', 'pipe', stderrFd],
259
259
  env: spawnEnv,
260
+ cwd: this.workingDir || process.env.HOME || '/',
260
261
  timeout: 600000,
261
262
  windowsHide: true,
262
263
  });