nothumanallowed 14.1.42 → 14.1.43

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.1.42",
3
+ "version": "14.1.43",
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.1.42';
8
+ export const VERSION = '14.1.43';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -445,7 +445,7 @@ RULES:
445
445
 
446
446
  // Load memory.md and skills.md for context
447
447
  const ctxDir = SkillStore.dir(projectName);
448
- let contextFiles = '';
448
+ let skillContext = '';
449
449
  try {
450
450
  const memPath = path.join(ctxDir, 'memory.md');
451
451
  const skillsPath = path.join(ctxDir, 'skills.md');
@@ -453,15 +453,15 @@ RULES:
453
453
 
454
454
  if (fs.existsSync(memPath)) {
455
455
  const memContent = fs.readFileSync(memPath, 'utf-8');
456
- contextFiles += `\n### MEMORY:\n${memContent}\n`;
456
+ skillContext += `\n### MEMORY:\n${memContent}\n`;
457
457
  }
458
458
  if (fs.existsSync(skillsPath)) {
459
459
  const skillsContent = fs.readFileSync(skillsPath, 'utf-8');
460
- contextFiles += `\n### SKILLS:\n${skillsContent}\n`;
460
+ skillContext += `\n### SKILLS:\n${skillsContent}\n`;
461
461
  }
462
462
  if (fs.existsSync(providerPath)) {
463
463
  const providerContent = fs.readFileSync(providerPath, 'utf-8');
464
- contextFiles += `\n### MODEL INFO:\n${providerContent}\n`;
464
+ skillContext += `\n### MODEL INFO:\n${providerContent}\n`;
465
465
  }
466
466
  } catch {}
467
467
 
@@ -469,7 +469,7 @@ RULES:
469
469
  `You are WebCraft Agent, an expert full-stack developer. Today is ${today}. Respond in ${language}.`,
470
470
  `\n\n## PROJECT: ${projectName}`,
471
471
  `\n## FILES:\n${fileIndex}`,
472
- contextFiles,
472
+ skillContext,
473
473
  skillCtx ? `\n\n## ADDITIONAL CONTEXT:\n${skillCtx}` : '',
474
474
  attachments?.length ? `\n\n## ATTACHMENTS: ${attachments.map((a) => a.name).join(', ')}` : '',
475
475
  `\n\n## CURRENT FILE CONTENTS:\n${fileContents}`,