nothumanallowed 13.5.134 → 13.5.135
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/commands/ui.mjs +1 -0
- package/src/constants.mjs +1 -1
- package/src/services/web-tools.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.135",
|
|
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/commands/ui.mjs
CHANGED
|
@@ -4242,6 +4242,7 @@ ${task}
|
|
|
4242
4242
|
CRITICAL: Do NOT invent, hallucinate, or add any data not present in the DATA sections below. ONLY use the exact data provided.
|
|
4243
4243
|
Do NOT output JSON, tool calls, or code blocks. Write in plain text with markdown headers.
|
|
4244
4244
|
Always apply your analysis specifically to the subject mentioned in the WORKFLOW GOAL.
|
|
4245
|
+
FILTER: If the DATA sections contain content from web pages that is NOT relevant to the WORKFLOW GOAL (e.g. ads, unrelated articles, off-topic blog posts), IGNORE that content entirely. Only extract and present information that directly answers the WORKFLOW GOAL.
|
|
4245
4246
|
|
|
4246
4247
|
${attachmentText ? `## ATTACHED FILE CONTENT:\n${attachmentText}\n` : ''}${toolData ? `## DATA FROM TOOLS:\n${toolData}\n` : '## DATA: No data was retrieved by this agent.\n'}
|
|
4247
4248
|
${contextBlock}
|
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.135';
|
|
9
9
|
export const BASE_URL = 'https://nothumanallowed.com/cli';
|
|
10
10
|
export const API_BASE = 'https://nothumanallowed.com/api/v1';
|
|
11
11
|
|
|
@@ -410,7 +410,7 @@ export async function webSearchDeep(query, fetchCount = 3) {
|
|
|
410
410
|
title: content.title || result.title,
|
|
411
411
|
url: result.url,
|
|
412
412
|
snippet: result.snippet,
|
|
413
|
-
content: content.body,
|
|
413
|
+
content: content.body ? content.body.slice(0, 2000) : '',
|
|
414
414
|
excerpt: content.excerpt,
|
|
415
415
|
};
|
|
416
416
|
}
|