nothumanallowed 9.2.3 → 9.2.4

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/README.md CHANGED
@@ -1,8 +1,12 @@
1
- # NotHumanAllowed
1
+ # NotHumanAllowed (v9.2)
2
2
 
3
- **Your agents. Your machine. Your rules.**
3
+ **Tell the AI what you need. It does it.**
4
4
 
5
- 38 specialized AI agents + 50 productivity tools + web search. Install via npm, connect your Google account, and manage email, calendar, contacts, tasks, Drive, GitHub, Slack, Notion all from your terminal or Android app. Streaming responses, multi-conversation history, export. 100% local. Zero data on our servers.
5
+ Your AI assistant for email, calendar, web search, files, and everything else. Type what you want in plain language NHA handles it. Read emails, schedule meetings, search the web, manage tasks, analyze documents, browse Google Drive, check GitHub, Slack, Notion all from one place.
6
+
7
+ 38 AI agents. 50 tools. Web search built in. Streaming chat. Multiple conversations with history and export. Voice chat. Available on **PC, Mac, Linux, and Android**.
8
+
9
+ 100% private — your data never leaves your machine. Zero data on our servers. Free and open source.
6
10
 
7
11
  ## Install
8
12
 
@@ -185,19 +189,21 @@ Runs in the background. Alerts you before meetings, monitors email, auto-respond
185
189
 
186
190
  Run `nha agents` to see all 38 with capabilities.
187
191
 
188
- ## Android App
192
+ ## Android App (v1.2)
193
+
194
+ Download: [nothumanallowed.com/NHAapp-1.2.apk](https://nothumanallowed.com/NHAapp-1.2.apk)
189
195
 
190
- NHA is also available as an Android app with the same 50 tools:
196
+ Everything the CLI does, on your phone:
191
197
 
192
- - Chat with all tools (email, calendar, tasks, contacts, Drive)
193
- - 38 agents accessible from a grid
194
- - Week calendar with event creation
195
- - Gmail inbox with caching
196
- - Notes, tasks, birthdays, smart scheduler
197
- - Google Drive browser
198
- - GitHub, Slack, Notion integration
199
- - Voice chat with text-to-speech
200
- - Daily plan generator
198
+ - **Streaming chat** see words appear as the AI thinks
199
+ - **Web search** search the internet and read any webpage, right from chat
200
+ - **Multiple conversations** save, switch, export your chats
201
+ - **50 tools** email, calendar, tasks, contacts, Drive, GitHub, Slack, Notion
202
+ - **38 agents** — tap any agent, ask anything
203
+ - **Voice chat** — talk instead of typing, in 6 languages
204
+ - **Daily plan** AI analyzes your emails + calendar every morning
205
+ - **Files & images** — attach PDFs, photos, documents for analysis
206
+ - **Tool indicators** — see "Searching the web...", "Reading email..." in real time
201
207
 
202
208
  All API calls go directly from your phone to providers. Zero data through NHA servers.
203
209
 
@@ -284,12 +290,38 @@ nha doctor # Health check
284
290
  nha mcp # Start MCP server
285
291
  ```
286
292
 
293
+ ## Web Dashboard
294
+
295
+ ```bash
296
+ nha ui
297
+ ```
298
+
299
+ Opens a local web dashboard on `localhost:3847` with streaming chat, multi-conversation, email, calendar, tasks, contacts, drive, agents, notes, settings — all in your browser. Zero framework, pure HTML/CSS/JS.
300
+
301
+ ## NHA vs OpenClaw
302
+
303
+ NHA was built after the [OpenClaw/Moltbook security breach](https://nothumanallowed.com/vs-openclaw) — 7 CVEs, 1.49M leaked records, 1.5M exposed API keys. See the [full comparison](https://nothumanallowed.com/vs-openclaw).
304
+
305
+ | | OpenClaw | NHA |
306
+ |---|---|---|
307
+ | Security | 7 CVEs, no WAF | SENTINEL WAF (Rust), 0 CVEs |
308
+ | Agents | 1 generic | 38 specialists |
309
+ | Tools | Install from hub | 50 built-in + web search |
310
+ | Knowledge | None | 2.6M facts from 16 datasets |
311
+ | Daily Plan | None | 5-agent analysis |
312
+ | Dependencies | Electron + Chrome | Zero |
313
+ | Privacy | Moltbook leaked 1.49M records | Zero data on our servers |
314
+
287
315
  ## Links
288
316
 
289
317
  - [Website](https://nothumanallowed.com)
290
318
  - [Documentation](https://nothumanallowed.com/docs/cli)
319
+ - [Android App](https://nothumanallowed.com/NHAapp-1.2.apk)
320
+ - [NHA vs OpenClaw](https://nothumanallowed.com/vs-openclaw)
321
+ - [Agents Guide](https://nothumanallowed.com/docs/agents)
322
+ - [Mobile Docs](https://nothumanallowed.com/docs/mobile)
323
+ - [GitHub](https://github.com/adoslabsproject-gif/nothumanallowed)
291
324
  - [Privacy Policy](https://nothumanallowed.com/privacy)
292
- - [Terms of Service](https://nothumanallowed.com/terms)
293
325
 
294
326
  ## License
295
327
 
package/bin/nha.mjs CHANGED
@@ -1,3 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { main } from '../src/cli.mjs';
3
- main(process.argv.slice(2));
2
+ import { main, showUiTipOnce } from '../src/cli.mjs';
3
+ const cmd = process.argv[2] || 'help';
4
+ await main(process.argv.slice(2));
5
+ showUiTipOnce(cmd);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "9.2.3",
3
+ "version": "9.2.4",
4
4
  "description": "NotHumanAllowed — 38 AI agents + 50 tools + web search. Streaming chat, multi-conversation, export. Gmail, Calendar, Drive, GitHub, Notion, Slack. Zero-dependency CLI.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.mjs CHANGED
@@ -22,6 +22,22 @@ import { cmdVoice } from './commands/voice.mjs';
22
22
  import { cmdPlugin, findPluginForCommand } from './commands/plugin.mjs';
23
23
  import { banner, info, ok, warn, fail, C, G, Y, D, W, BOLD, NC, M, B, R } from './ui.mjs';
24
24
 
25
+ // Show web UI tip once after first real command
26
+ export function showUiTipOnce(cmd) {
27
+ const skipCmds = ['ui', 'help', 'version', 'setup', 'update', 'config', 'doctor', '--help', '-h'];
28
+ if (skipCmds.includes(cmd)) return;
29
+ try {
30
+ const marker = path.join(NHA_DIR, '.ui-tip-shown');
31
+ if (fs.existsSync(marker)) return;
32
+ console.log('');
33
+ console.log(` ${G}Tip:${NC} Run ${C}nha ui${NC} to open the full web dashboard in your browser.`);
34
+ console.log(` Use ${C}nha ui --lan${NC} to access it from your phone or tablet on the same Wi-Fi.`);
35
+ console.log(` ${D}Docs: https://nothumanallowed.com/docs/web-dashboard${NC}`);
36
+ fs.mkdirSync(NHA_DIR, { recursive: true });
37
+ fs.writeFileSync(marker, new Date().toISOString());
38
+ } catch {}
39
+ }
40
+
25
41
  export async function main(argv) {
26
42
  const cmd = argv[0] || 'help';
27
43
  const args = argv.slice(1);
@@ -161,6 +177,7 @@ export async function main(argv) {
161
177
  return spawnCore('legion', [cmd, ...args]);
162
178
  }
163
179
  }
180
+
164
181
  }
165
182
 
166
183
  // ── nha responder ─────────────────────────────────────────────────────────
@@ -552,7 +569,8 @@ function cmdHelp() {
552
569
  console.log(` run "prompt" ${D}--agents saber,zero${NC} Collaborate with specific agents\n`);
553
570
 
554
571
  console.log(` ${C}Daily Operations${NC} ${D}(Gmail + Calendar + Tasks)${NC}`);
555
- console.log(` ui Open local web dashboard (http://127.0.0.1:3847)`);
572
+ console.log(` ui Open local web dashboard (http://localhost:3847)`);
573
+ console.log(` ui --lan Access from phone/tablet on the same Wi-Fi`);
556
574
  console.log(` ui --port=4000 Custom port ui --no-browser Don't auto-open`);
557
575
  console.log(` chat Interactive chat — manage email/calendar/tasks naturally`);
558
576
  console.log(` voice Voice-powered chat (opens browser with mic interface)`);
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 = '9.2.3';
8
+ export const VERSION = '9.2.4';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11