nothumanallowed 15.1.59 → 15.1.60
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 +1 -1
- package/src/cli.mjs +4 -0
- package/src/constants.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.60",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents, 80 tools, Studio (visual agentic workflows). Email, calendar, browser automation, screen capture, canvas, cron/heartbeat, Alexandria E2E messaging, GitHub, Notion, Slack, voice chat, free AI (Liara), 28 languages. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/cli.mjs
CHANGED
|
@@ -63,6 +63,10 @@ export async function main(argv) {
|
|
|
63
63
|
info(`Run "nha update" (recommended — auto-installs npm + agents)`);
|
|
64
64
|
info(`Or copy-paste this ENTIRE line (note: --prefer-online, not --pref-online):`);
|
|
65
65
|
info(` npm cache clean --force && npm install -g nothumanallowed@${result.latest} --prefer-online && hash -r && nha version`);
|
|
66
|
+
info(`⚠ If you ran the install WITHOUT "hash -r" at the end and now get`);
|
|
67
|
+
info(` "bash: ...node/vX.Y.Z/bin/nha: No such file", run: hash -r`);
|
|
68
|
+
info(` (or just close and reopen the terminal). It's a bash path cache issue,`);
|
|
69
|
+
info(` not an install failure — your nha package is already updated.`);
|
|
66
70
|
}
|
|
67
71
|
}).catch(() => {});
|
|
68
72
|
}
|
package/src/constants.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { fileURLToPath } from 'url';
|
|
|
5
5
|
const __filename = fileURLToPath(import.meta.url);
|
|
6
6
|
const __dirname = path.dirname(__filename);
|
|
7
7
|
|
|
8
|
-
export const VERSION = '15.1.
|
|
8
|
+
export const VERSION = '15.1.60';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|