nothumanallowed 13.2.88 → 13.2.89

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": "13.2.88",
3
+ "version": "13.2.89",
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": {
@@ -3218,7 +3218,16 @@ RULES:
3218
3218
  if (isCanvasAgent) {
3219
3219
  sysPrompt = canvasSystemPrompt;
3220
3220
  const canvasData = [attachmentText, context].filter(Boolean).join('\n\n');
3221
- userMsg = `Create a professional dashboard report for this data. Output ONLY the inner HTML body content (starting with <div class="header">):\n\n${canvasData}`;
3221
+ userMsg = `Create a professional dashboard report in ${language}. CRITICAL RULES:
3222
+ 1. Start immediately with <div class="header"> — no preamble
3223
+ 2. Every <div class="section"> MUST contain actual content from the data below — NEVER leave a section empty
3224
+ 3. If data for a section exists, include it verbatim with all details
3225
+ 4. If data for a section does NOT exist, omit that section entirely — do NOT create empty placeholder sections
3226
+ 5. Copy specific facts, names, dates, numbers exactly as they appear in the data
3227
+ 6. Output ONLY HTML starting with <div class="header">
3228
+
3229
+ DATA FROM AGENTS:
3230
+ ${canvasData}`;
3222
3231
  } else if (isLiveDataAgent) {
3223
3232
  // These agents fetched real data — use a focused prompt (no tool definitions to avoid JSON output)
3224
3233
  // Live data agents that fetched their own data: do NOT inject previous context
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 = '13.2.88';
8
+ export const VERSION = '13.2.89';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11