neoagent 2.1.10 → 2.1.11
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 +3 -0
- package/docs/configuration.md +1 -1
- 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 +53915 -53242
- package/server/routes/android.js +87 -0
- package/server/services/ai/engine.js +11 -0
- package/server/services/ai/systemPrompt.js +1 -0
- package/server/services/ai/toolCallSalvage.js +117 -0
- package/server/services/ai/toolResult.js +10 -0
- package/server/services/ai/tools.js +43 -0
- package/server/services/android/controller.js +127 -1
package/README.md
CHANGED
|
@@ -22,9 +22,12 @@ Manage the service:
|
|
|
22
22
|
```bash
|
|
23
23
|
neoagent status
|
|
24
24
|
neoagent update
|
|
25
|
+
neoagent fix
|
|
25
26
|
neoagent logs
|
|
26
27
|
```
|
|
27
28
|
|
|
29
|
+
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.
|
|
30
|
+
|
|
28
31
|
---
|
|
29
32
|
|
|
30
33
|
[⚙️ Configuration](docs/configuration.md) · [🧰 Skills](docs/skills.md) · [🐛 Issues](https://github.com/NeoLabs-Systems/NeoAgent/issues)
|
package/docs/configuration.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Configuration
|
|
2
2
|
|
|
3
|
-
All settings live in `~/.neoagent/.env` by default. Run `neoagent setup` to regenerate interactively.
|
|
3
|
+
All settings live in `~/.neoagent/.env` by default. Run `neoagent setup` to regenerate interactively. If a self-edit or local install issue leaves NeoAgent broken, `neoagent fix` will back up `~/.neoagent`, repair the installation, and restart the service.
|
|
4
4
|
You can override the runtime root with `NEOAGENT_HOME`.
|
|
5
5
|
|
|
6
6
|
## Variables
|
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: "1464466977" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|