nothumanallowed 13.5.13 → 13.5.14
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 +14 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.14",
|
|
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.14';
|
|
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
|
@@ -3807,7 +3807,7 @@ function isoCharSvg(opts) {
|
|
|
3807
3807
|
var glowColor = isActive ? accentColor : (isDone ? \x27#22c55e\x27 : \x27transparent\x27);
|
|
3808
3808
|
var glowFilter = (isActive || isDone) ? (\x27filter:drop-shadow(0 0 8px \x27+glowColor+\x27aa)\x27) : \x27\x27;
|
|
3809
3809
|
var badgeHtml = isDone
|
|
3810
|
-
? \x27<div style="position:absolute;top:-4px;right:-4px;width:18px;height:18px;background:#
|
|
3810
|
+
? \x27<div style="position:absolute;top:-4px;right:-4px;width:18px;height:18px;background:#1f2937;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;color:#fff;box-shadow:0 2px 6px rgba(0,0,0,.4)">✓</div>\x27
|
|
3811
3811
|
: (isActive
|
|
3812
3812
|
? \x27<div style="position:absolute;top:-4px;right:-4px;width:14px;height:14px;background:\x27+accentColor+\x27;border-radius:50%;animation:statusPulse 1s ease-in-out infinite;box-shadow:0 0 8px \x27+accentColor+\x27"></div>\x27
|
|
3813
3813
|
: \x27\x27);
|
|
@@ -3916,7 +3916,7 @@ function renderStudioNodes() {
|
|
|
3916
3916
|
var phaseLabel2 = hasActive
|
|
3917
3917
|
? (\x27Workflow in esecuzione \u2014 \x27+doneCount+\x27/\x27+totalCount)
|
|
3918
3918
|
: (doneCount===totalCount && totalCount>0 ? \x27Workflow completato\x27 : \x27Workflow pianificato\x27);
|
|
3919
|
-
var phaseColor2 = hasActive ? \x27#6366f1\x27 : (doneCount===totalCount && totalCount>0 ? \x27#
|
|
3919
|
+
var phaseColor2 = hasActive ? \x27#6366f1\x27 : (doneCount===totalCount && totalCount>0 ? \x27#1f2937\x27 : \x27#6b7280\x27);
|
|
3920
3920
|
|
|
3921
3921
|
// ── CSS Grid layout: 100% width, responsive ──────────────────────────────
|
|
3922
3922
|
// All stations (orch + agents) in a grid, max 4 per row
|
|
@@ -3934,19 +3934,19 @@ function renderStudioNodes() {
|
|
|
3934
3934
|
|
|
3935
3935
|
// Build all station cards (orchestrator first, then agents)
|
|
3936
3936
|
function buildStation2(label, toolEmoji, isOrch, isActive, isDone, isErr, emojiIdx) {
|
|
3937
|
-
var accentColor = isOrch ? \x27#818cf8\x27 : (isActive ? \x27#6366f1\x27 : (isDone ? \x27#
|
|
3938
|
-
var nameBg = isDone ? \
|
|
3939
|
-
var nameColor = isDone ? \x27#
|
|
3937
|
+
var accentColor = isOrch ? \x27#818cf8\x27 : (isActive ? \x27#6366f1\x27 : (isDone ? \x27#374151\x27 : (isErr ? \x27#ef4444\x27 : \x27#9ca3af\x27)));
|
|
3938
|
+
var nameBg = isDone ? \x27rgba(0,0,0,.1)\x27 : (isActive ? \x27#ede9fe\x27 : (isOrch ? \x27#e0e7ff\x27 : \x27rgba(255,255,255,.85)\x27));
|
|
3939
|
+
var nameColor = isDone ? \x27#111827\x27 : (isActive ? \x27#4f46e5\x27 : (isOrch ? \x27#4338ca\x27 : (isErr ? \x27#dc2626\x27 : \x27#374151\x27)));
|
|
3940
3940
|
var monScreen = isOrch
|
|
3941
3941
|
? \x27<span style="font-size:11px">🔍</span>\x27
|
|
3942
|
-
: (isDone ? \x27<span style="color:#
|
|
3942
|
+
: (isDone ? \x27<span style="color:#111827;font-size:13px">✓</span>\x27
|
|
3943
3943
|
: (isActive ? \x27<span class="iso-monitor-blink"></span>\x27
|
|
3944
3944
|
: \x27<span style="font-size:8px;opacity:.35;color:#818cf8">■</span>\x27));
|
|
3945
3945
|
var bubbleText = isOrch
|
|
3946
3946
|
? (hasActive ? (\x27Step \x27+doneCount+\x27/\x27+totalCount) : (doneCount===totalCount&&totalCount>0 ? \x27\u2714 Fatto!\x27 : \x27In attesa\x27))
|
|
3947
3947
|
: (isActive ? \x27\u2022\u2022\u2022 lavora\x27 : (isDone ? \x27\u2714 fatto\x27 : (isErr ? \x27\u2715 errore\x27 : \x27\x27)));
|
|
3948
|
-
var bubbleBg = isOrch ? \x27rgba(99,102,241,.15)\x27 : (isActive ? \x27rgba(99,102,241,.12)\x27 : (isDone ? \x27rgba(
|
|
3949
|
-
var glowBox = isActive ? (\x270 0 0 3px \x27+accentColor+\x2744,0 8px 24px \x27+accentColor+\x2733\x27) : (isDone ? (\x270 0 0 2px
|
|
3948
|
+
var bubbleBg = isOrch ? \x27rgba(99,102,241,.15)\x27 : (isActive ? \x27rgba(99,102,241,.12)\x27 : (isDone ? \x27rgba(0,0,0,.08)\x27 : \x27rgba(239,68,68,.12)\x27));
|
|
3949
|
+
var glowBox = isActive ? (\x270 0 0 3px \x27+accentColor+\x2744,0 8px 24px \x27+accentColor+\x2733\x27) : (isDone ? (\x270 0 0 2px rgba(0,0,0,.25)\x27) : \x27none\x27);
|
|
3950
3950
|
var orchWalkClass = (isOrch && hasActive) ? \x27 iso-orch-walking\x27 : (isOrch && doneCount===totalCount&&totalCount>0 ? \x27 iso-orch-done\x27 : \x27\x27);
|
|
3951
3951
|
var charHtml = isoCharSvg({emojiIdx: isOrch ? 99 : emojiIdx, isActive: isActive, isDone: isDone, scale: 1.1, accentColor: accentColor});
|
|
3952
3952
|
var clickAttr = isOrch ? \x27\x27 : (\x27data-agent-label="\x27+esc(label)+\x27" onclick="studioScrollToAgent(this.getAttribute(String.fromCharCode(100,97,116,97,45,97,103,101,110,116,45,108,97,98,101,108)))"\x27);
|
|
@@ -4948,11 +4948,11 @@ async function runStudio() {
|
|
|
4948
4948
|
else if (!isActive && !isDone) actionStr2 = \x27in attesa\x27;
|
|
4949
4949
|
bubbleEl.textContent = actionStr2;
|
|
4950
4950
|
bubbleEl.style.display = actionStr2 ? \x27\x27 : \x27none\x27;
|
|
4951
|
-
bubbleEl.style.borderColor = isActive ? phaseColor : (isDone ? \
|
|
4952
|
-
bubbleEl.style.color = isActive ? phaseColor : (isDone ? \x27#
|
|
4951
|
+
bubbleEl.style.borderColor = isActive ? phaseColor : (isDone ? \x27rgba(0,0,0,.25)\x27 : \x27rgba(0,0,0,.15)\x27);
|
|
4952
|
+
bubbleEl.style.color = isActive ? phaseColor : (isDone ? \x27#111827\x27 : \x27#6b7280\x27);
|
|
4953
4953
|
}
|
|
4954
4954
|
if (nameEl) {
|
|
4955
|
-
nameEl.style.color = isDone ? \x27#
|
|
4955
|
+
nameEl.style.color = isDone ? \x27#111827\x27 : (isActive ? phaseColor : \x27#374151\x27);
|
|
4956
4956
|
}
|
|
4957
4957
|
});
|
|
4958
4958
|
|
|
@@ -6639,7 +6639,7 @@ input:focus,textarea:focus{border-color:var(--green3)}
|
|
|
6639
6639
|
/* Individual seat card */
|
|
6640
6640
|
.br-seat{display:flex;flex-direction:column;align-items:center;gap:2px;transition:transform .3s;padding:6px 8px;border-radius:12px;background:rgba(255,255,255,.82);border:1.5px solid rgba(200,180,160,.5);box-shadow:0 2px 8px rgba(0,0,0,.12);backdrop-filter:blur(4px);min-width:64px;cursor:default}
|
|
6641
6641
|
.br-seat--active{transform:scale(1.07);border-color:var(--sc,#6366f1);box-shadow:0 0 16px rgba(99,102,241,.35),0 2px 8px rgba(0,0,0,.12)}
|
|
6642
|
-
.br-seat--done{border-color:rgba(
|
|
6642
|
+
.br-seat--done{border-color:rgba(0,0,0,.25);background:rgba(0,0,0,.06)}
|
|
6643
6643
|
/* Orchestrator head seat */
|
|
6644
6644
|
.br-orch{display:flex;flex-direction:column;align-items:center;gap:3px;padding:8px 10px;flex-shrink:0}
|
|
6645
6645
|
.br-orch-speech{font-size:9px;font-weight:800;font-family:var(--mono);letter-spacing:.4px;padding:3px 8px;border:1.5px solid #6366f1;border-radius:8px;background:rgba(255,255,255,.95);color:#4338ca;white-space:nowrap;animation:brSpeechPop .6s ease-in-out infinite alternate;pointer-events:none;margin-bottom:2px}
|
|
@@ -6650,12 +6650,12 @@ input:focus,textarea:focus{border-color:var(--green3)}
|
|
|
6650
6650
|
/* Agent name pill */
|
|
6651
6651
|
.br-seat-name{font-size:9px;font-family:var(--mono);font-weight:700;color:#374151;text-align:center;white-space:normal;word-break:break-word;max-width:90px;line-height:1.3;margin-top:1px;transition:color .3s;background:rgba(0,0,0,.04);border-radius:4px;padding:1px 4px}
|
|
6652
6652
|
.br-seat--active .br-seat-name{color:#4338ca}
|
|
6653
|
-
.br-seat--done .br-seat-name{color:#
|
|
6653
|
+
.br-seat--done .br-seat-name{color:#111827}
|
|
6654
6654
|
/* Convergence */
|
|
6655
6655
|
.br-convergence{margin-top:10px;padding:8px 12px;background:rgba(34,197,94,.06);border:1px solid rgba(34,197,94,.22);border-radius:8px}
|
|
6656
6656
|
.br-conv-bar-outer{height:4px;background:rgba(34,197,94,.15);border-radius:4px;overflow:hidden;margin-bottom:6px}
|
|
6657
6657
|
.br-conv-bar-inner{height:100%;background:linear-gradient(90deg,#22c55e,#4ade80);border-radius:4px;transition:width .8s ease}
|
|
6658
|
-
.br-conv-text{font-size:9px;color:#
|
|
6658
|
+
.br-conv-text{font-size:9px;color:#111827;line-height:1.55}
|
|
6659
6659
|
/* Keep old prl-* classes for workflow (not touched) */
|
|
6660
6660
|
.prl-wrap{background:#0b0918;border:1.5px solid #6366f1;border-radius:14px;padding:14px 16px 12px;margin-bottom:16px;animation:stNodeIn .35s ease forwards;overflow:hidden}
|
|
6661
6661
|
@keyframes parlPulse{0%,100%{border-color:#6366f1;box-shadow:none}50%{border-color:#818cf8;box-shadow:0 0 20px rgba(99,102,241,.3)}}
|