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 +1 -1
- package/src/constants.mjs +1 -1
- package/src/server/index.mjs +12 -0
- package/src/server/routes/connectors.mjs +1142 -10
- package/src/ui-dist/assets/index-BjqGA-KY.css +1 -0
- package/src/ui-dist/assets/index-CQY4us37.js +863 -0
- package/src/ui-dist/index.html +2 -2
- package/src/ui-dist/assets/index-DKPyRmuw.js +0 -862
- package/src/ui-dist/assets/index-IQn8QiFW.css +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "
|
|
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 = '
|
|
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
|
|
package/src/server/index.mjs
CHANGED
|
@@ -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
|