nothumanallowed 15.1.70 → 16.0.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "15.1.70",
3
+ "version": "16.0.1",
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/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.70';
8
+ export const VERSION = '16.0.1';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -459,6 +459,18 @@ export async function startServer({ port = 3847, host = '127.0.0.1', noBrowser =
459
459
  body: JSON.stringify({ platform: 'nha-ui', version: VERSION }),
460
460
  }).catch(() => {});
461
461
 
462
+ // ── AWF: auto-start advanced triggers (file-watch, RSS, IMAP) and the
463
+ // 24h workflow auto-backup. Without this, file-watch / RSS triggers
464
+ // configured by the user never actually fire. Wrapped in try/catch so a
465
+ // bad workflow config can't take down the daemon.
466
+ try {
467
+ const { startAdvancedTriggers, startAutoBackup } = await import('./routes/connectors.mjs');
468
+ startAdvancedTriggers();
469
+ startAutoBackup(24);
470
+ } catch (e) {
471
+ console.log(` ${R}⚠${NC} ${D}AWF triggers/backup failed to start - ${e.message}${NC}`);
472
+ }
473
+
462
474
  if (!noBrowser) openBrowser(`http://localhost:${port}`);
463
475
 
464
476
  // Cleanup sandbox processes on server shutdown