nothumanallowed 8.9.1 → 8.9.2

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": "8.9.1",
3
+ "version": "8.9.2",
4
4
  "description": "NotHumanAllowed — 38 AI agents + unified productivity suite. Gmail, Calendar, Drive, Contacts, Tasks, GitHub, Notion, Slack, voice chat, smart scheduler. Zero-dependency CLI.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -754,7 +754,7 @@ export async function cmdUI(args) {
754
754
  parts.push(`${prefix} ${turn.content}`);
755
755
  }
756
756
  parts.push(`[User] ${body.message}`);
757
- const userMessage = parts.join('\n\n');
757
+ let userMessage = parts.join('\n\n');
758
758
 
759
759
  // Inject episodic memory context into the system prompt
760
760
  const basePrompt = effectiveSystemPrompt || chatSystemPrompt;
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.9.1';
8
+ export const VERSION = '8.9.2';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11