nothumanallowed 13.5.29 → 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 +18 -15
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;
|
|
@@ -5005,7 +5005,7 @@ async function runStudio() {
|
|
|
5005
5005
|
bubbleEl.textContent = actionStr2;
|
|
5006
5006
|
bubbleEl.style.display = actionStr2 ? \x27\x27 : \x27none\x27;
|
|
5007
5007
|
bubbleEl.style.borderColor = isActive ? phaseColor : (isDone ? \x27rgba(0,0,0,.25)\x27 : \x27rgba(0,0,0,.15)\x27);
|
|
5008
|
-
bubbleEl.style.color = isActive ?
|
|
5008
|
+
bubbleEl.style.color = isActive ? \x27#000000\x27 : (isDone ? \x27#111827\x27 : \x27#6b7280\x27);
|
|
5009
5009
|
bubbleEl.style.background = isActive ? \x27rgba(255,255,255,.95)\x27 : \x27rgba(255,255,255,.82)\x27;
|
|
5010
5010
|
bubbleEl.style.fontWeight = isActive ? \x27700\x27 : \x27500\x27;
|
|
5011
5011
|
}
|
|
@@ -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
|
|
|
@@ -6592,8 +6595,8 @@ input:focus,textarea:focus{border-color:var(--green3)}
|
|
|
6592
6595
|
.iso-orch-wrap.prl-head{animation:isoCharBob 1.4s ease-in-out infinite}
|
|
6593
6596
|
/* Thought bubble / speech bubble above character */
|
|
6594
6597
|
.iso-bubble{font-size:9px;font-family:var(--mono);padding:3px 9px;border-radius:12px;border:1px solid #ccc;background:rgba(255,255,255,.9);color:#6b7280;white-space:normal;word-break:break-word;max-width:160px;line-height:1.4;transition:all .25s;pointer-events:none;backdrop-filter:blur(6px);text-align:center}
|
|
6595
|
-
.iso-bubble--active{background:#
|
|
6596
|
-
.iso-bubble--orch{font-size:9px;padding:3px 9px;border-radius:12px;border-color:#
|
|
6598
|
+
.iso-bubble--active{background:#ffffff;border-color:#1d4ed8;color:#000000;animation:isoBubblePop .35s ease;white-space:normal;max-width:160px;word-break:break-word;line-height:1.35}
|
|
6599
|
+
.iso-bubble--orch{font-size:9px;padding:3px 9px;border-radius:12px;border-color:#374151;color:#111827;background:rgba(255,255,255,.92)}
|
|
6597
6600
|
@keyframes isoBubblePop{0%{transform:scale(.8) translateY(4px);opacity:.4}100%{transform:scale(1) translateY(0);opacity:1}}
|
|
6598
6601
|
.iso-name{font-size:10px;font-family:var(--mono);font-weight:700;letter-spacing:.3px;text-align:center;max-width:160px;white-space:normal;word-break:break-word;line-height:1.3;background:rgba(255,255,255,.85);border-radius:6px;padding:2px 6px;pointer-events:none;backdrop-filter:blur(4px)}
|
|
6599
6602
|
/* Desks row — kept for boardroom compat */
|