nothumanallowed 8.9.0 → 8.9.2
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 -1
- package/src/constants.mjs +1 -1
- package/src/services/web-ui.mjs +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "8.9.
|
|
3
|
+
"version": "8.9.2",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents + unified productivity suite. Gmail, Calendar, Drive, Contacts, Tasks, GitHub, Notion, Slack, voice chat, smart scheduler. Zero-dependency CLI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/commands/ui.mjs
CHANGED
|
@@ -754,7 +754,7 @@ export async function cmdUI(args) {
|
|
|
754
754
|
parts.push(`${prefix} ${turn.content}`);
|
|
755
755
|
}
|
|
756
756
|
parts.push(`[User] ${body.message}`);
|
|
757
|
-
|
|
757
|
+
let userMessage = parts.join('\n\n');
|
|
758
758
|
|
|
759
759
|
// Inject episodic memory context into the system prompt
|
|
760
760
|
const basePrompt = effectiveSystemPrompt || chatSystemPrompt;
|
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 = '8.9.
|
|
8
|
+
export const VERSION = '8.9.2';
|
|
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
|
@@ -1638,6 +1638,12 @@ init();
|
|
|
1638
1638
|
<div class="sidebar__label">Config</div>
|
|
1639
1639
|
<div class="nav-item" data-view="settings" onclick="switchView('settings')"><span class="nav-item__icon">⚙</span> Settings</div>
|
|
1640
1640
|
</div>
|
|
1641
|
+
<div class="sidebar__section">
|
|
1642
|
+
<div class="sidebar__label">Help</div>
|
|
1643
|
+
<a href="https://nothumanallowed.com/docs" target="_blank" class="nav-item" style="text-decoration:none"><span class="nav-item__icon">📖</span> Documentation</a>
|
|
1644
|
+
<a href="https://nothumanallowed.com/docs/agents" target="_blank" class="nav-item" style="text-decoration:none"><span class="nav-item__icon">🤖</span> Agents Guide</a>
|
|
1645
|
+
<a href="https://nothumanallowed.com/docs/mobile" target="_blank" class="nav-item" style="text-decoration:none"><span class="nav-item__icon">📱</span> Mobile App</a>
|
|
1646
|
+
</div>
|
|
1641
1647
|
<div style="padding:12px 16px;margin-top:auto;border-top:1px solid var(--border);font-size:10px;color:var(--dim)">NHA v${VERSION}</div>
|
|
1642
1648
|
</nav>
|
|
1643
1649
|
|