neoagent 2.1.18-beta.78 → 2.1.18-beta.79
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/docs/capabilities.md +2 -2
- package/docs/configuration.md +1 -1
- package/docs/integrations.md +3 -3
- package/package.json +1 -1
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +57752 -57671
- package/server/routes/integrations.js +106 -0
- package/server/services/integrations/manager.js +36 -2
- package/server/services/integrations/registry.js +3 -1
- package/server/services/integrations/whatsapp/index.js +7 -0
- package/server/services/integrations/whatsapp/provider.js +873 -0
- package/server/services/manager.js +1 -1
package/docs/capabilities.md
CHANGED
|
@@ -78,10 +78,10 @@ The agent tool `read_health_data` returns summaries and recent samples. It is de
|
|
|
78
78
|
|
|
79
79
|
NeoAgent has two separate integration layers:
|
|
80
80
|
|
|
81
|
-
- Official
|
|
81
|
+
- Official integrations expose structured tools for Google Workspace, Microsoft 365, Notion, Slack, Figma, and a separate personal WhatsApp connection.
|
|
82
82
|
- Messaging platforms let the agent talk through WhatsApp, Telegram, Discord, Slack, Google Chat, Teams, Matrix, Signal, iMessage/BlueBubbles, IRC, Twitch, LINE, Mattermost, configurable webhook bridges, and Telnyx Voice.
|
|
83
83
|
|
|
84
|
-
Official integration examples include Gmail thread search and send mail, Google Calendar events, Drive upload/download/export/share links, Docs create/append/replace, Sheets read/update/append/create, Microsoft Outlook/Calendar/OneDrive/Teams tools, Notion search/page/block/database tools, Slack conversation/message tools,
|
|
84
|
+
Official integration examples include Gmail thread search and send mail, Google Calendar events, Drive upload/download/export/share links, Docs create/append/replace, Sheets read/update/append/create, Microsoft Outlook/Calendar/OneDrive/Teams tools, Notion search/page/block/database tools, Slack conversation/message tools, Figma file/node/comment/image tools, and a personal WhatsApp integration with isolated chat read/send tools and per-account read-only versus read/write access.
|
|
85
85
|
|
|
86
86
|
Messaging examples include Telegram and Discord messages, Slack channel replies, Matrix room messages, Google Chat and Teams webhook delivery, Signal bridge delivery, iMessage/BlueBubbles sends, WhatsApp text and media sends, Telnyx inbound voice, Telnyx outbound calls, and scheduled-task call delivery.
|
|
87
87
|
|
package/docs/configuration.md
CHANGED
|
@@ -68,7 +68,7 @@ Recording insight generation is controlled in app AI settings with `auto_recordi
|
|
|
68
68
|
|
|
69
69
|
## Official Integrations
|
|
70
70
|
|
|
71
|
-
Official integrations use OAuth and expose structured tools to the agent. The built-in registry currently covers Google Workspace, Notion, Microsoft 365, Slack, and
|
|
71
|
+
Official integrations use OAuth or provider-native account linking and expose structured tools to the agent. The built-in registry currently covers Google Workspace, Notion, Microsoft 365, Slack, Figma, and personal WhatsApp.
|
|
72
72
|
|
|
73
73
|
All OAuth callbacks default to `PUBLIC_URL + /api/integrations/oauth/callback` unless you set a provider-specific redirect URI.
|
|
74
74
|
|
package/docs/integrations.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Integrations
|
|
2
2
|
|
|
3
|
-
NeoAgent has two integration layers: official
|
|
3
|
+
NeoAgent has two integration layers: official integrations for structured app tools, and messaging platforms for talking to the agent.
|
|
4
4
|
|
|
5
|
-
## Official
|
|
5
|
+
## Official Integrations
|
|
6
6
|
|
|
7
7
|
The built-in registry includes:
|
|
8
8
|
|
|
@@ -41,7 +41,7 @@ NeoAgent can talk through:
|
|
|
41
41
|
|
|
42
42
|
| Platform | Notes |
|
|
43
43
|
|---|---|
|
|
44
|
-
| WhatsApp |
|
|
44
|
+
| WhatsApp | Messaging-platform bridge in app settings for talking to the agent; separate official personal WhatsApp integration for structured read/send tools |
|
|
45
45
|
| Telegram | Bot token plus approved chats |
|
|
46
46
|
| Discord | Bot token plus server or channel access |
|
|
47
47
|
| Slack | Bot token sends plus Events API callbacks |
|
package/package.json
CHANGED
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"59aa584fdf100e6c78c785d8a5b565d1de4b48
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "2040832567" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|