neoagent 2.1.18-beta.77 → 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/assets/NOTICES +32 -0
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +66345 -65410
- 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
|
@@ -24581,6 +24581,38 @@ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
24581
24581
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
24582
24582
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
24583
24583
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
24584
|
+
--------------------------------------------------------------------------------
|
|
24585
|
+
package_info_plus
|
|
24586
|
+
package_info_plus_platform_interface
|
|
24587
|
+
|
|
24588
|
+
Copyright 2017 The Chromium Authors. All rights reserved.
|
|
24589
|
+
|
|
24590
|
+
Redistribution and use in source and binary forms, with or without
|
|
24591
|
+
modification, are permitted provided that the following conditions are
|
|
24592
|
+
met:
|
|
24593
|
+
|
|
24594
|
+
* Redistributions of source code must retain the above copyright
|
|
24595
|
+
notice, this list of conditions and the following disclaimer.
|
|
24596
|
+
* Redistributions in binary form must reproduce the above
|
|
24597
|
+
copyright notice, this list of conditions and the following disclaimer
|
|
24598
|
+
in the documentation and/or other materials provided with the
|
|
24599
|
+
distribution.
|
|
24600
|
+
* Neither the name of Google Inc. nor the names of its
|
|
24601
|
+
contributors may be used to endorse or promote products derived from
|
|
24602
|
+
this software without specific prior written permission.
|
|
24603
|
+
|
|
24604
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
24605
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
24606
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
24607
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
24608
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
24609
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
24610
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
24611
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
24612
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
24613
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
24614
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
24615
|
+
|
|
24584
24616
|
--------------------------------------------------------------------------------
|
|
24585
24617
|
perfetto
|
|
24586
24618
|
|
|
Binary file
|
|
@@ -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
|
});
|