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 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
- memory, connected devices, and messaging channels available between sessions.
47
-
48
- **Memory is stored as structured local data.** Durable facts are separated from
49
- conversation history, scoped by user and agent, and updated when newer
50
- information replaces older information. NeoAgent can also index supported
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,6 +1,6 @@
1
1
  {
2
2
  "name": "neoagent",
3
- "version": "2.5.1",
3
+ "version": "2.5.2-beta.1",
4
4
  "description": "Proactive personal AI agent with no limits",
5
5
  "license": "AGPL-3.0-only",
6
6
  "main": "server/index.js",
@@ -1 +1 @@
1
- 45baab5bdb16d8d23f35dc6f1543ea2e
1
+ ba6aacaef21b83c9a89d3e2339762a15
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"77e2e94772b6eb43759e34ed1ad7da4674e19c
37
37
 
38
38
  _flutter.loader.load({
39
39
  serviceWorkerSettings: {
40
- serviceWorkerVersion: "1385419959" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
40
+ serviceWorkerVersion: "2340588088" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
41
41
  }
42
42
  });