@openagents-org/agent-launcher 0.1.13 → 0.1.14

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/paths.js +3 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagents-org/agent-launcher",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/paths.js CHANGED
@@ -124,6 +124,9 @@ function _addWindowsPaths(dirs) {
124
124
  // npm global bin
125
125
  if (appData) _push(dirs, path.join(appData, 'npm'));
126
126
 
127
+ // Portable Node.js installed by OpenAgents Launcher
128
+ _push(dirs, path.join(HOME, '.openagents', 'nodejs'));
129
+
127
130
  // Node.js install
128
131
  _push(dirs, path.join(programFiles, 'nodejs'));
129
132