nothumanallowed 6.0.0 → 6.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": "6.0.0",
3
+ "version": "6.0.1",
4
4
  "description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Per-agent memory, Telegram + Discord auto-responder, proactive intelligence daemon, voice chat, plugin system.",
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 = '6.0.0';
8
+ export const VERSION = '6.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
 
@@ -21,7 +21,7 @@ import path from 'path';
21
21
  import http from 'http';
22
22
  import crypto from 'crypto';
23
23
  import { spawn } from 'child_process';
24
- import { NHA_DIR } from '../constants.mjs';
24
+ import { NHA_DIR, DAEMON_SCRIPT } from '../constants.mjs';
25
25
  import { loadConfig } from '../config.mjs';
26
26
  import { hasMailProvider, getUnreadImportant, getUpcomingEvents, getTodayEmails, listEvents } from './mail-router.mjs';
27
27
  import { notify } from './notification.mjs';
@@ -68,7 +68,6 @@ export function startDaemon() {
68
68
 
69
69
  // The daemon runs this same file with --daemon-loop flag
70
70
  const logFd = fs.openSync(LOG_FILE, 'a');
71
- const { DAEMON_SCRIPT } = await import('../constants.mjs');
72
71
  const child = spawn(process.execPath, [
73
72
  DAEMON_SCRIPT,
74
73
  '--daemon-loop',