nothumanallowed 13.2.91 → 13.2.92

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.91",
3
+ "version": "13.2.92",
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,15 +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 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:
3221
+ userMsg = `Create a complete professional dashboard report in ${language} using the CSS classes defined in the system prompt.
3222
+
3223
+ RULES:
3224
+ - Start with <div class="header"><h1>TITLE</h1><p>Subtitle</p><div class="meta"><span>DATE</span></div></div>
3225
+ - Use <div class="section"><div class="section-title">SECTION NAME</div> ... </div> for EACH agent's findings
3226
+ - Each section MUST reproduce the agent's actual findings in full use <h3>, <p>, <ul><li>, tables
3227
+ - Output ONLY HTML (no markdown, no \`\`\`html fences, no explanations)
3228
+ - End with <div class="footer">NHA Studio · ${today}</div>
3229
+
3230
+ AGENT DATA TO INCLUDE IN FULL:
3230
3231
  ${canvasData}`;
3231
3232
  } else if (isLiveDataAgent) {
3232
3233
  // These agents fetched real data — use a focused prompt (no tool definitions to avoid JSON output)
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.91';
8
+ export const VERSION = '13.2.92';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11