nothumanallowed 13.5.30 → 13.5.31
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 +1 -1
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +15 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.31",
|
|
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.5.
|
|
8
|
+
export const VERSION = '13.5.31';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|
package/src/services/web-ui.mjs
CHANGED
|
@@ -3325,7 +3325,7 @@ var studioAbortController = null;
|
|
|
3325
3325
|
var parlActiveAgent = null; // active agent label during parliament streaming
|
|
3326
3326
|
var parlDoneAgents = {}; // set of completed agent labels during parliament
|
|
3327
3327
|
var _parlPersistHtml = null; // persists parliament block HTML across tab navigations
|
|
3328
|
-
var _PARL_STAMP = '<!--nha-parl-v13.5.
|
|
3328
|
+
var _PARL_STAMP = '<!--nha-parl-v13.5.31-->';
|
|
3329
3329
|
|
|
3330
3330
|
function stopStudio() {
|
|
3331
3331
|
if (!studioState.running) return;
|
|
@@ -5347,18 +5347,21 @@ function renderStudioSessionsBar() {
|
|
|
5347
5347
|
var sessions = loadStudioSessions();
|
|
5348
5348
|
if (!sessions.length) { el.style.display = 'none'; return; }
|
|
5349
5349
|
el.style.display = 'block';
|
|
5350
|
-
el.innerHTML = '<div style="
|
|
5351
|
-
|
|
5350
|
+
el.innerHTML = '<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:10px">' +
|
|
5351
|
+
'<span style="font-size:11px;font-weight:700;color:#f8fafc;text-transform:uppercase;letter-spacing:.8px">' + t('recent_sessions') + '</span>' +
|
|
5352
|
+
'<span style="font-size:10px;color:#94a3b8">' + sessions.length + ' saved</span>' +
|
|
5353
|
+
'</div>' +
|
|
5354
|
+
'<div style="max-height:240px;overflow-y:auto;padding-right:2px;display:flex;flex-direction:column;gap:6px">' +
|
|
5352
5355
|
sessions.map(function(s,i) {
|
|
5353
|
-
return '<div
|
|
5354
|
-
'<div style="display:flex;align-items:
|
|
5355
|
-
'<span
|
|
5356
|
-
'<
|
|
5356
|
+
return '<div style="background:#1e293b;border:1px solid #334155;border-radius:8px;padding:10px 12px">' +
|
|
5357
|
+
'<div style="display:flex;align-items:flex-start;justify-content:space-between;gap:8px;margin-bottom:7px">' +
|
|
5358
|
+
'<span style="font-size:11px;color:#f1f5f9;font-weight:600;line-height:1.4;flex:1">' + esc(s.task.slice(0,65)) + (s.task.length>65?'...':'') + '</span>' +
|
|
5359
|
+
'<button onclick="deleteStudioSession('+i+')" style="flex-shrink:0;font-size:14px;line-height:1;background:none;border:none;color:#64748b;cursor:pointer;padding:0 2px" title="Delete">×</button>' +
|
|
5357
5360
|
'</div>' +
|
|
5358
|
-
'<div style="
|
|
5359
|
-
|
|
5360
|
-
'<button onclick="
|
|
5361
|
-
'<button onclick="
|
|
5361
|
+
'<div style="font-size:10px;color:#64748b;margin-bottom:8px">' + esc(s.ts) + '</div>' +
|
|
5362
|
+
'<div style="display:flex;gap:6px">' +
|
|
5363
|
+
'<button onclick="restoreStudioSession('+i+')" style="font-size:10px;font-weight:600;padding:4px 10px;background:#0ea5e9;border:none;border-radius:5px;color:#fff;cursor:pointer">Restore</button>' +
|
|
5364
|
+
'<button onclick="importStudioToChat('+i+')" style="font-size:10px;font-weight:600;padding:4px 10px;background:#334155;border:1px solid #475569;border-radius:5px;color:#cbd5e1;cursor:pointer">Send to Chat</button>' +
|
|
5362
5365
|
'</div>' +
|
|
5363
5366
|
'</div>';
|
|
5364
5367
|
}).join('') + '</div>';
|
|
@@ -5910,7 +5913,7 @@ function renderStudio(el) {
|
|
|
5910
5913
|
'<div id="sideToolsList">'+toolsHtml+'</div>' +
|
|
5911
5914
|
'<div id="sideAgentsList" style="display:none">'+specialistHtml+'</div>' +
|
|
5912
5915
|
'</div>' +
|
|
5913
|
-
'<div id="studioSessionsBar" style="display:none;border:1px solid
|
|
5916
|
+
'<div id="studioSessionsBar" style="display:none;border:1px solid #334155;border-radius:10px;padding:12px 14px;background:#0f172a"></div>' +
|
|
5914
5917
|
'</div>' +
|
|
5915
5918
|
'</div>';
|
|
5916
5919
|
|