nothumanallowed 14.1.67 → 14.1.68

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.67",
3
+ "version": "14.1.68",
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.67';
8
+ export const VERSION = '14.1.68';
9
9
  export const BASE_URL = 'https://nothumanallowed.com/cli';
10
10
  export const API_BASE = 'https://nothumanallowed.com/api/v1';
11
11
 
@@ -215,12 +215,24 @@ export function register(router) {
215
215
  const contextBlock = context ? `\n\n## CONTEXT FROM PREVIOUS STEPS:\n${context.slice(0, 8000)}` : '';
216
216
  const proposalContextBlock = body.proposalContext ? `\n\n## OTHER AGENTS' PROPOSALS (CROSS-READING):\n${body.proposalContext.slice(0, 6000)}` : '';
217
217
 
218
+ const formatInstructions = `\n\nFORMATTING RULES (CRITICAL — your output will be rendered as HTML):
219
+ - Use MARKDOWN TABLES with | pipes | for ALL tabular data. Example:
220
+ | Header 1 | Header 2 | Header 3 |
221
+ |----------|----------|----------|
222
+ | data | data | data |
223
+ - NEVER use ASCII art boxes (┌─┐│└─┘╔═╗║╚═╝). They render as ugly <pre> blocks.
224
+ - NEVER use ASCII art charts/graphs (├─●──┤). Describe data in tables instead.
225
+ - Use **bold**, *italic*, headers (## ##), bullet points, numbered lists, blockquotes (>).
226
+ - For emphasis boxes, use blockquotes: > **Key insight:** text here
227
+ - Write COMPLETE content under every heading — never leave a section empty.`;
228
+
218
229
  const sysParts = [
219
230
  agentSysDef || `You are ${agent}, a specialist AI agent in NHA Studio. Respond entirely in ${language}. Today is ${today}.`,
220
231
  `\n\n## WORKFLOW GOAL: ${task}`,
221
232
  contextBlock,
222
233
  proposalContextBlock,
223
234
  stepDef?.prompt ? `\n\n## YOUR SPECIFIC TASK:\n${stepDef.prompt}` : '',
235
+ formatInstructions,
224
236
  ];
225
237
  const systemPrompt = sysParts.join('');
226
238
  const userMessage = stepDef?.prompt || task;