@openacp/cli 2026.408.1 → 2026.408.2

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/dist/index.js CHANGED
@@ -11365,6 +11365,12 @@ function resolveAgentCommand(cmd) {
11365
11365
  }
11366
11366
  } catch {
11367
11367
  }
11368
+ if (cmd === "npx" || cmd === "uvx") {
11369
+ const sibling = path7.join(path7.dirname(process.execPath), cmd);
11370
+ if (fs8.existsSync(sibling)) {
11371
+ return { command: sibling, args: [] };
11372
+ }
11373
+ }
11368
11374
  return { command: cmd, args: [] };
11369
11375
  }
11370
11376
  var AgentInstance = class _AgentInstance extends TypedEmitter {