nothumanallowed 13.2.68 → 13.2.70
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 +4 -1
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.70",
|
|
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": {
|
|
@@ -53,6 +53,9 @@
|
|
|
53
53
|
"url": "https://github.com/adoslabsproject-gif/nothumanallowed"
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://nothumanallowed.com",
|
|
56
|
+
"scripts": {
|
|
57
|
+
"check-bundle": "node check-bundle.mjs"
|
|
58
|
+
},
|
|
56
59
|
"dependencies": {
|
|
57
60
|
"ws": "^8.18.0"
|
|
58
61
|
}
|
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.
|
|
8
|
+
export const VERSION = '13.2.70';
|
|
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
|
@@ -3202,7 +3202,7 @@ function renderSidebar() {
|
|
|
3202
3202
|
\x27<a href="https://nothumanallowed.com/docs/agents" target="_blank" class="nav-item" style="text-decoration:none"><span class="nav-item__icon">🤖</span> \x27+t(\x27nav_agents_guide\x27)+\x27</a>\x27+
|
|
3203
3203
|
\x27<a href="https://nothumanallowed.com/docs/mobile" target="_blank" class="nav-item" style="text-decoration:none"><span class="nav-item__icon">📱</span> \x27+t(\x27nav_mobile\x27)+\x27</a>\x27+
|
|
3204
3204
|
\x27</div>\x27+
|
|
3205
|
-
\x27<div style="padding:12px 16px;margin-top:auto;border-top:1px solid var(--border);font-size:10px;color:var(--dim)">nothumanallowed.com</div>\x27;
|
|
3205
|
+
\x27<div style="padding:12px 16px;margin-top:auto;border-top:1px solid var(--border);font-size:10px;color:var(--dim)">nothumanallowed.com<span style="margin-left:6px;opacity:.5">v${VERSION}</span></div>\x27;
|
|
3206
3206
|
}
|
|
3207
3207
|
|
|
3208
3208
|
var studioState = {
|
|
@@ -3516,8 +3516,9 @@ async function runStudio() {
|
|
|
3516
3516
|
|
|
3517
3517
|
try {
|
|
3518
3518
|
// Step 1: plan the workflow
|
|
3519
|
+
var nl = String.fromCharCode(10);
|
|
3519
3520
|
var taskForPlan = studioState.attachmentContext
|
|
3520
|
-
? task + '
|
|
3521
|
+
? task + nl + nl + '[User has attached a file: ' + studioState.attachmentName + '. Agents will receive the full content.]'
|
|
3521
3522
|
: task;
|
|
3522
3523
|
var planRes = await apiPost('/api/studio/plan', {task: taskForPlan});
|
|
3523
3524
|
if (!planRes || !planRes.steps || !planRes.steps.length) {
|
|
@@ -3781,7 +3782,7 @@ function runStudioStep(idx, node, task, context, stepDef, signal) {
|
|
|
3781
3782
|
var canvasHtml = null;
|
|
3782
3783
|
// Inject attachment context into first step (idx===0) if present
|
|
3783
3784
|
var effectiveContext = (idx === 0 && studioState.attachmentContext)
|
|
3784
|
-
? (studioState.attachmentContext + (context ?
|
|
3785
|
+
? (studioState.attachmentContext + (context ? String.fromCharCode(10) + String.fromCharCode(10) + context : ''))
|
|
3785
3786
|
: context;
|
|
3786
3787
|
var body = JSON.stringify({stepIdx: idx, agent: node.agent, task: task, context: effectiveContext, stepDef: stepDef});
|
|
3787
3788
|
var fetchOpts = {method: 'POST', headers: {'Content-Type': 'application/json'}, body: body};
|
|
@@ -4204,7 +4205,7 @@ function init(){
|
|
|
4204
4205
|
if(cp)makeDraggable(cp,\x27.cvs-header\x27);
|
|
4205
4206
|
// Telemetry ping — fire and forget
|
|
4206
4207
|
setTimeout(function(){
|
|
4207
|
-
fetch(\x27https://nothumanallowed.com/api/v1/telemetry/ping\x27,{method:\x27POST\x27,headers:{\x27Content-Type\x27:\x27application/json\x27},body:JSON.stringify({platform:\x27web-ui\x27,version
|
|
4208
|
+
fetch(\x27https://nothumanallowed.com/api/v1/telemetry/ping\x27,{method:\x27POST\x27,headers:{\x27Content-Type\x27:\x27application/json\x27},body:JSON.stringify({platform:\x27web-ui\x27,version:\x27${VERSION}\x27})}).catch(function(){});
|
|
4208
4209
|
},3000);
|
|
4209
4210
|
}
|
|
4210
4211
|
init();
|