neoagent 2.5.1 → 2.5.2-beta.1
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/README.md +6 -24
- package/flutter_app/lib/main_operations.dart +7 -0
- package/package.json +1 -1
- package/server/public/.last_build_id +1 -1
- package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +3159 -3157
- package/server/routes/triggers.js +36 -18
- package/server/services/ai/engine.js +545 -46
- package/server/services/ai/tools.js +26 -16
- package/server/services/tasks/adapters/android_notification_received.js +18 -0
- package/server/services/tasks/adapters/index.js +2 -0
package/README.md
CHANGED
|
@@ -42,30 +42,12 @@ service to a network.
|
|
|
42
42
|
|
|
43
43
|
## ✨ What makes it different
|
|
44
44
|
|
|
45
|
-
**It is a service, not just a chat window.** NeoAgent keeps tasks, integrations,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
**
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
integration content with source references. See [How memory works](docs/memory.md).
|
|
52
|
-
|
|
53
|
-
**It operates real devices.** The agent can use an isolated browser and shell,
|
|
54
|
-
control an Android device or emulator over ADB, or work through a paired Chrome
|
|
55
|
-
extension and desktop companion.
|
|
56
|
-
|
|
57
|
-
**Automation can start without a message.** Tasks can run on a schedule or from
|
|
58
|
-
supported Gmail, Outlook, Slack, Teams, personal WhatsApp, and weather events.
|
|
59
|
-
Android notifications can also start an agent run.
|
|
60
|
-
|
|
61
|
-
**Agents and users have separate state.** Specialist agents can have their own
|
|
62
|
-
memory, settings, tools, account assignments, conversations, and task history.
|
|
63
|
-
Multi-user deployments include administrative account controls and optional
|
|
64
|
-
email confirmation.
|
|
65
|
-
|
|
66
|
-
**The same server has several interfaces.** NeoAgent includes web, Android,
|
|
67
|
-
desktop, and Android launcher clients, messaging bridges, a Chrome extension,
|
|
68
|
-
and firmware for a supported ESP32-S3 wearable.
|
|
45
|
+
- **It is a service, not just a chat window.** NeoAgent keeps tasks, integrations, memory, connected devices, and messaging channels available between sessions.
|
|
46
|
+
- **Memory is stored as structured local data.** Durable facts are separated from conversation history, scoped by user and agent, and updated when newer information replaces older information. NeoAgent can also index supported integration content with source references. See [How memory works](docs/memory.md).
|
|
47
|
+
- **It operates real devices.** The agent can use an isolated browser and shell, control an Android device or emulator over ADB, or work through a paired Chrome extension and desktop companion.
|
|
48
|
+
- **Automation can start without a message.** Tasks can run on a schedule or from supported Gmail, Outlook, Slack, Teams, personal WhatsApp, and weather events. Android notifications can also start an agent run.
|
|
49
|
+
- **Agents and users have separate state.** Specialist agents can have their own memory, settings, tools, account assignments, conversations, and task history. Multi-user deployments include administrative account controls and optional email confirmation.
|
|
50
|
+
- **The same server has several interfaces.** NeoAgent includes web, Android, desktop, and Android launcher clients, messaging bridges, a Chrome extension, and firmware for a supported ESP32-S3 wearable.
|
|
69
51
|
|
|
70
52
|
## 🖥️ Interfaces
|
|
71
53
|
|
|
@@ -4946,6 +4946,13 @@ const List<_TaskTriggerOption> _taskTriggerOptions = <_TaskTriggerOption>[
|
|
|
4946
4946
|
providerKey: 'whatsapp_personal',
|
|
4947
4947
|
appKey: 'personal',
|
|
4948
4948
|
),
|
|
4949
|
+
_TaskTriggerOption(
|
|
4950
|
+
type: 'android_notification_received',
|
|
4951
|
+
section: 'System',
|
|
4952
|
+
label: 'Android Notification Received',
|
|
4953
|
+
description: 'Run when a notification arrives on your device.',
|
|
4954
|
+
icon: Icons.notifications_active_rounded,
|
|
4955
|
+
),
|
|
4949
4956
|
];
|
|
4950
4957
|
|
|
4951
4958
|
_TaskTriggerOption _taskTriggerOptionForType(String type) {
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ba6aacaef21b83c9a89d3e2339762a15
|
|
Binary file
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"77e2e94772b6eb43759e34ed1ad7da4674e19c
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "2340588088" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|