neoagent 2.1.18-beta.16 → 2.1.18-beta.18

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.
Files changed (32) hide show
  1. package/docs/integrations.md +4 -2
  2. package/package.json +1 -1
  3. package/server/db/database.js +446 -31
  4. package/server/http/routes.js +1 -0
  5. package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
  6. package/server/public/flutter_bootstrap.js +1 -1
  7. package/server/public/main.dart.js +64295 -63472
  8. package/server/routes/agent_profiles.js +64 -0
  9. package/server/routes/agents.js +25 -16
  10. package/server/routes/integrations.js +7 -2
  11. package/server/routes/mcp.js +16 -7
  12. package/server/routes/memory.js +34 -17
  13. package/server/routes/messaging.js +39 -23
  14. package/server/routes/scheduler.js +3 -1
  15. package/server/routes/settings.js +97 -18
  16. package/server/services/agents/manager.js +339 -0
  17. package/server/services/ai/capabilityHealth.js +16 -14
  18. package/server/services/ai/engine.js +156 -40
  19. package/server/services/ai/history.js +23 -18
  20. package/server/services/ai/models.js +21 -17
  21. package/server/services/ai/multiStep.js +1 -0
  22. package/server/services/ai/settings.js +94 -8
  23. package/server/services/ai/systemPrompt.js +32 -2
  24. package/server/services/ai/tools.js +105 -28
  25. package/server/services/commands/router.js +53 -38
  26. package/server/services/integrations/manager.js +38 -26
  27. package/server/services/mcp/client.js +10 -5
  28. package/server/services/memory/manager.js +103 -82
  29. package/server/services/messaging/automation.js +30 -16
  30. package/server/services/messaging/manager.js +125 -69
  31. package/server/services/scheduler/cron.js +54 -37
  32. package/server/services/websocket.js +66 -32
@@ -44,13 +44,15 @@ NeoAgent can talk through:
44
44
  | Feishu, Nextcloud Talk, Nostr, Synology Chat, Tlon, Zalo, Zalo Personal, WeChat, and WebChat | Configurable webhook bridges |
45
45
  | Telnyx Voice | Inbound and outbound calling with text-to-speech; scheduled tasks can call a number |
46
46
 
47
- Messaging channel credentials are stored through the Flutter app messaging tab rather than `.env`. The generic inbound callback path is:
47
+ Messaging channel credentials are configured through the Flutter app messaging tab (not `.env`) for channel setup and inbound callback routing. The generic inbound callback path is:
48
48
 
49
49
  ```text
50
50
  PUBLIC_URL + /api/messaging/webhook/:platform
51
51
  ```
52
52
 
53
- Use the per-platform inbound secret or native signature fields in the messaging tab for webhook callbacks. Telnyx voice webhooks continue to use `TELNYX_WEBHOOK_TOKEN`.
53
+ Use the per-platform inbound secret or native signature fields in the messaging tab for webhook callbacks.
54
+
55
+ Telnyx exception: only the Telnyx voice webhook verification token stays in server environment variables as `TELNYX_WEBHOOK_TOKEN`, because webhook request verification is performed server-side. Other Telnyx and messaging channel credentials should be configured in the Flutter app messaging tab as part of channel/client configuration.
54
56
 
55
57
  ## Credentials
56
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "2.1.18-beta.16",
3
+ "version": "2.1.18-beta.18",
4
4
  "description": "Proactive personal AI agent with no limits",
5
5
  "license": "MIT",
6
6
  "main": "server/index.js",