nothumanallowed 14.0.0 → 14.0.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nothumanallowed",
3
- "version": "14.0.0",
3
+ "version": "14.0.1",
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 = '14.0.0';
8
+ export const VERSION = '14.0.1';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -174,6 +174,10 @@ export function register(router) {
174
174
  const parsed = parseAgentFile(fs.readFileSync(agentFile, 'utf-8'), body.agent);
175
175
  if (parsed.systemPrompt) effectiveSystemPrompt = parsed.systemPrompt;
176
176
  }
177
+ // Fallback: use system prompt sent directly by client (from agent card)
178
+ if (!effectiveSystemPrompt && body._agentSystemPrompt) {
179
+ effectiveSystemPrompt = body._agentSystemPrompt;
180
+ }
177
181
  } else {
178
182
  // @agent inline routing
179
183
  const atMatch = msg.match(/^@(\w+)\s+([\s\S]*)/);