neoagent 1.1.2 → 1.1.3

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/lib/manager.js +2 -2
  2. package/package.json +1 -1
package/lib/manager.js CHANGED
@@ -406,10 +406,10 @@ function cmdUpdate() {
406
406
  logWarn('No git repo detected; attempting npm global update.');
407
407
  if (commandExists('npm')) {
408
408
  try {
409
- runOrThrow('npm', ['update', '-g', 'neoagent']);
409
+ runOrThrow('npm', ['install', '-g', 'neoagent@latest']);
410
410
  logOk('npm global update completed');
411
411
  } catch {
412
- logWarn('npm global update failed. Run: npm update -g neoagent');
412
+ logWarn('npm global update failed. Run: npm install -g neoagent@latest');
413
413
  }
414
414
  } else {
415
415
  logWarn('npm not found. Cannot perform global update.');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Proactive personal AI agent with no limits",
5
5
  "license": "MIT",
6
6
  "main": "server/index.js",