neoagent 2.0.6 → 2.0.8
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 +1 -21
- package/package.json +1 -1
- package/server/public/flutter_bootstrap.js +1 -1
- package/server/public/main.dart.js +31782 -31656
- package/server/routes/recordings.js +20 -0
- package/server/routes/scheduler.js +2 -2
- package/server/routes/settings.js +32 -0
- package/server/services/ai/tools.js +6 -0
- package/server/services/recordings/manager.js +66 -3
- package/server/services/scheduler/cron.js +33 -17
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](LICENSE)
|
|
11
11
|
|
|
12
12
|
A self-hosted, proactive AI agent with a Flutter client for web and Android.
|
|
13
|
-
Connects to OpenAI, xAI, Google, and local Ollama
|
|
13
|
+
Connects to OpenAI, xAI, Google, and local Ollama.
|
|
14
14
|
Runs tasks on a schedule, controls a browser, manages files, and talks to you over Telegram, Discord, or WhatsApp.
|
|
15
15
|
|
|
16
16
|
```bash
|
|
@@ -18,11 +18,6 @@ npm install -g neoagent
|
|
|
18
18
|
neoagent install
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
-
From source:
|
|
22
|
-
```bash
|
|
23
|
-
bash <(curl -fsSL https://raw.githubusercontent.com/NeoLabs-Systems/NeoAgent/main/install.sh)
|
|
24
|
-
```
|
|
25
|
-
|
|
26
21
|
Manage the service:
|
|
27
22
|
```bash
|
|
28
23
|
neoagent status
|
|
@@ -30,21 +25,6 @@ neoagent update
|
|
|
30
25
|
neoagent logs
|
|
31
26
|
```
|
|
32
27
|
|
|
33
|
-
Build the Flutter web client:
|
|
34
|
-
```bash
|
|
35
|
-
npm run flutter:build:web
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
The installer and npm package ship the bundled web client from `server/public`, so Flutter is only needed when you want to rebuild the frontend locally.
|
|
39
|
-
|
|
40
|
-
Local development helpers live in `dev/`:
|
|
41
|
-
```bash
|
|
42
|
-
./dev/backend.sh
|
|
43
|
-
./dev/web.sh
|
|
44
|
-
./dev/stack.sh
|
|
45
|
-
./dev/test.sh
|
|
46
|
-
```
|
|
47
|
-
|
|
48
28
|
---
|
|
49
29
|
|
|
50
30
|
[⚙️ Configuration](docs/configuration.md) · [🧰 Skills](docs/skills.md) · [🐛 Issues](https://github.com/NeoLabs-Systems/NeoAgent/issues)
|
package/package.json
CHANGED
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"052f31d115eceda8cbff1b3481fcde4330c4ae
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "1086801673" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|