nothumanallowed 13.5.63 → 13.5.64

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": "13.5.63",
3
+ "version": "13.5.64",
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": {
@@ -6694,6 +6694,12 @@ function wcPickExample(i) {
6694
6694
  wcState.projectName = ex.name;
6695
6695
  wcState.description = ex.desc;
6696
6696
  renderWebCraft(document.getElementById('content'));
6697
+ // After re-render, populate the chat textarea and project name input with example values
6698
+ var chatEl = document.getElementById('wcChatInput');
6699
+ if (chatEl) chatEl.value = ex.desc;
6700
+ var nameEl = document.getElementById('wcProjectName');
6701
+ if (nameEl) nameEl.value = ex.name;
6702
+ if (chatEl) chatEl.focus();
6697
6703
  }
6698
6704
  function wcTabFiles() { wcRightTab = 'files'; renderWebCraft(document.getElementById('content')); }
6699
6705
  function wcTabPreview() { wcRightTab = 'preview'; renderWebCraft(document.getElementById('content')); }