neoagent 2.1.15 → 2.1.16-beta.0
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 +25 -15
- package/package.json +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 +40158 -40093
- package/server/routes/agents.js +15 -0
- package/server/services/ai/engine.js +68 -24
- package/server/services/ai/settings.js +1 -1
- package/server/services/ai/systemPrompt.js +1 -1
- package/server/services/ai/tools.js +9 -3
- package/server/services/manager.js +0 -15
package/README.md
CHANGED
|
@@ -1,24 +1,33 @@
|
|
|
1
|
-
<
|
|
1
|
+
<h1 align="center">NeoAgent</h1>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center"><strong>Your agent. Your server. Your rules.</strong></p>
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node.js-18+-5fa04e?style=flat-square&logo=node.js&logoColor=white" alt="Node.js"></a>
|
|
7
|
+
<a href="https://sqlite.org"><img src="https://img.shields.io/badge/SQLite-WAL-003b57?style=flat-square&logo=sqlite&logoColor=white" alt="SQLite"></a>
|
|
8
|
+
<a href="https://flutter.dev"><img src="https://img.shields.io/badge/Flutter-web%20%2B%20android-02569B?style=flat-square&logo=flutter&logoColor=white" alt="Flutter"></a>
|
|
9
|
+
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-a855f7?style=flat-square" alt="License"></a>
|
|
10
|
+
</p>
|
|
6
11
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
<p align="center">
|
|
13
|
+
A self-hosted, proactive AI agent with a Flutter client for web and Android.<br>
|
|
14
|
+
Connects to OpenAI, xAI, Google, MiniMax Code, and local Ollama.<br>
|
|
15
|
+
Runs tasks on a schedule, controls a browser, manages files, and talks to you over Telegram, Discord, or WhatsApp.
|
|
16
|
+
</p>
|
|
11
17
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
18
|
+
| | |
|
|
19
|
+
| --- | --- |
|
|
20
|
+
| <img alt="WebUI" src="https://github.com/user-attachments/assets/3c76d59a-b6e3-4698-929b-9c94741ccf1e" height="420"> | <img alt="Mobile Telegram" src="https://github.com/user-attachments/assets/1fd41a9b-5452-4aa4-9478-888c8ad7363a" height="420"> |
|
|
21
|
+
|
|
22
|
+
## Install
|
|
15
23
|
|
|
16
24
|
```bash
|
|
17
25
|
npm install -g neoagent
|
|
18
26
|
neoagent install
|
|
19
27
|
```
|
|
20
28
|
|
|
21
|
-
Manage the
|
|
29
|
+
## Manage the Service
|
|
30
|
+
|
|
22
31
|
```bash
|
|
23
32
|
neoagent status
|
|
24
33
|
neoagent channel beta
|
|
@@ -28,12 +37,13 @@ neoagent logs
|
|
|
28
37
|
```
|
|
29
38
|
|
|
30
39
|
Use `neoagent fix` if a self-edit or broken local install leaves NeoAgent in a bad state. On git installs it backs up runtime data, saves local tracked changes, resets tracked source files, reinstalls dependencies, and restarts the service.
|
|
31
|
-
|
|
40
|
+
|
|
41
|
+
## Links
|
|
32
42
|
|
|
33
43
|
[⚙️ Configuration](docs/configuration.md) · [🧰 Skills](docs/skills.md) · [🐛 Issues](https://github.com/NeoLabs-Systems/NeoAgent/issues)
|
|
34
44
|
|
|
35
45
|
---
|
|
36
46
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
</
|
|
47
|
+
<p align="center">
|
|
48
|
+
Made with ❤️ by <a href="https://github.com/neooriginal">Neo</a> · <a href="https://github.com/NeoLabs-Systems">NeoLabs Systems</a>
|
|
49
|
+
</p>
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"052f31d115eceda8cbff1b3481fcde4330c4ae
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "1956345956" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|