@openagents-org/agent-connector 0.3.5 → 0.3.6

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/package.json +1 -1
  2. package/src/installer.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-connector",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Agent management CLI and library for OpenAgents — install, configure, and run AI coding agents",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/installer.js CHANGED
@@ -470,7 +470,7 @@ class Installer {
470
470
  if (onData) onData(`Downloading ${url}...\n`);
471
471
  await this._downloadFile(url, tarPath, onData);
472
472
 
473
- const nodeDir = path.join(this.config.configDir, 'nodejs');
473
+ const nodeDir = path.join(this.configDir, 'nodejs');
474
474
  fs.mkdirSync(nodeDir, { recursive: true });
475
475
 
476
476
  if (onData) onData(`\nExtracting to ${nodeDir}...\n`);