nothumanallowed 6.3.2 → 6.3.3
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/constants.mjs +1 -1
- package/src/services/web-ui.mjs +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nothumanallowed",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3",
|
|
4
4
|
"description": "NotHumanAllowed — 38 AI agents for security, code, DevOps, data & daily ops. Per-agent memory, Telegram + Discord auto-responder, proactive intelligence daemon, voice chat, plugin system.",
|
|
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 = '6.3.
|
|
8
|
+
export const VERSION = '6.3.3';
|
|
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
|
@@ -655,16 +655,16 @@ function renderSettings(el) {
|
|
|
655
655
|
|
|
656
656
|
el.innerHTML = '<div style="max-width:600px;margin:0 auto">' +
|
|
657
657
|
settingsSection('profile', 'User Profile', 'Agents use this when you say "my home", "my city", etc.', [
|
|
658
|
-
['name', 'Name', '
|
|
659
|
-
['email', 'Email', '
|
|
660
|
-
['phone', 'Phone', '+
|
|
661
|
-
['home-address', 'Home Address', '
|
|
662
|
-
['work-address', 'Work Address', '
|
|
663
|
-
['city', 'City', '
|
|
664
|
-
['country', 'Country', '
|
|
665
|
-
['company', 'Company', '
|
|
666
|
-
['role', 'Role', '
|
|
667
|
-
['profile-notes', 'Notes', 'Anything agents should know about you'],
|
|
658
|
+
['name', 'Name', 'e.g. John Smith'],
|
|
659
|
+
['email', 'Email', 'e.g. john@example.com'],
|
|
660
|
+
['phone', 'Phone', 'e.g. +1 555 123 4567'],
|
|
661
|
+
['home-address', 'Home Address', 'e.g. 123 Main St, New York'],
|
|
662
|
+
['work-address', 'Work Address', 'e.g. 456 Office Blvd, New York'],
|
|
663
|
+
['city', 'City', 'e.g. New York'],
|
|
664
|
+
['country', 'Country', 'e.g. USA'],
|
|
665
|
+
['company', 'Company', 'e.g. Acme Inc'],
|
|
666
|
+
['role', 'Role', 'e.g. Software Engineer'],
|
|
667
|
+
['profile-notes', 'Notes', 'Anything else agents should know about you'],
|
|
668
668
|
]) +
|
|
669
669
|
settingsSection('llm', 'LLM Provider', 'The AI model that powers your agents.', [
|
|
670
670
|
['provider', 'Provider', 'anthropic / openai / gemini / deepseek / grok / mistral'],
|