nothumanallowed 13.2.34 → 13.2.36

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.34",
3
+ "version": "13.2.36",
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 = '13.2.34';
8
+ export const VERSION = '13.2.36';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -3219,13 +3219,7 @@ function runStudioStep(idx, node, task, context, stepDef, signal) {
3219
3219
  // Tool status tokens (start with '[') shown in dim color, LLM output streamed normally
3220
3220
  var isStatus = ev.token.charAt(0) === '[' && ev.token.indexOf(']') > 0 && ev.token.length < 80;
3221
3221
  if (!isStatus) {
3222
- var tok = ev.token;
3223
- // Insert space between tokens if missing (Qwen3/Liara emits tokens without separators)
3224
- var lastCh = output.charCodeAt(output.length-1); var firstCh = tok.charCodeAt(0);
3225
- if (output && tok && lastCh !== 32 && lastCh !== 10 && lastCh !== 13 && firstCh !== 32 && firstCh !== 10 && firstCh !== 13 && firstCh !== 46 && firstCh !== 44 && firstCh !== 33 && firstCh !== 63 && firstCh !== 41 && firstCh !== 93 && firstCh !== 125 && firstCh !== 39 && firstCh !== 34 && firstCh !== 8217) {
3226
- tok = ' ' + tok;
3227
- }
3228
- output += tok;
3222
+ output += ev.token;
3229
3223
  }
3230
3224
  // Update live log entry
3231
3225
  var entries = document.querySelectorAll('.studio-log-entry');
@@ -3236,7 +3230,9 @@ function runStudioStep(idx, node, task, context, stepDef, signal) {
3236
3230
  if (isStatus) {
3237
3231
  tb.textContent = ev.token.split('\\r').join('').split('\\n').join(' ');
3238
3232
  } else {
3239
- tb.innerHTML = renderMd(output);
3233
+ // Show last 300 chars of output, strip markdown symbols for clean log display
3234
+ var preview = output.slice(-300).replace(/#{1,6}[\\s]*/g,\x27\x27).replace(/\\*\\*/g,\x27\x27).replace(/\\*/g,\x27\x27).replace(/---+/g,\x27\x27).replace(/[\\n]{2,}/g,\x27 \x27).trim();
3235
+ tb.textContent = preview;
3240
3236
  }
3241
3237
  }
3242
3238
  }