neoagent 2.1.18-beta.13 → 2.1.18-beta.14
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 -1
- package/docs/.vitepress/config.mts +56 -6
- package/docs/index.md +55 -26
- package/package.json +1 -1
- package/server/public/flutter_bootstrap.js +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ neoagent logs
|
|
|
35
35
|
|
|
36
36
|
## Links
|
|
37
37
|
|
|
38
|
-
[Docs
|
|
38
|
+
[Docs](https://neolabs-systems.github.io/NeoAgent/) | [Issues](https://github.com/NeoLabs-Systems/NeoAgent/issues)
|
|
39
39
|
|
|
40
40
|
---
|
|
41
41
|
|
|
@@ -5,11 +5,38 @@ export default defineConfig({
|
|
|
5
5
|
description: 'Self-hosted proactive AI agent docs',
|
|
6
6
|
base: '/NeoAgent/',
|
|
7
7
|
cleanUrls: true,
|
|
8
|
+
lastUpdated: true,
|
|
8
9
|
themeConfig: {
|
|
9
10
|
nav: [
|
|
10
|
-
{
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
{
|
|
12
|
+
text: 'Start',
|
|
13
|
+
activeMatch: '^/(getting-started|why-neoagent)?$',
|
|
14
|
+
items: [
|
|
15
|
+
{ text: 'Overview', link: '/' },
|
|
16
|
+
{ text: 'Getting Started', link: '/getting-started' },
|
|
17
|
+
{ text: 'Why NeoAgent', link: '/why-neoagent' },
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
text: 'Product',
|
|
22
|
+
activeMatch: '^/(capabilities|automation|integrations|skills)',
|
|
23
|
+
items: [
|
|
24
|
+
{ text: 'Capabilities', link: '/capabilities' },
|
|
25
|
+
{ text: 'Android Control', link: '/capabilities#android-control' },
|
|
26
|
+
{ text: 'Recordings', link: '/capabilities#recordings' },
|
|
27
|
+
{ text: 'Integrations', link: '/integrations' },
|
|
28
|
+
{ text: 'Automation', link: '/automation' },
|
|
29
|
+
],
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
text: 'Operate',
|
|
33
|
+
activeMatch: '^/(configuration|operations)',
|
|
34
|
+
items: [
|
|
35
|
+
{ text: 'Configuration', link: '/configuration' },
|
|
36
|
+
{ text: 'Skills', link: '/skills' },
|
|
37
|
+
{ text: 'Operations', link: '/operations' },
|
|
38
|
+
],
|
|
39
|
+
},
|
|
13
40
|
{ text: 'Why NeoAgent', link: '/why-neoagent' },
|
|
14
41
|
{ text: 'GitHub', link: 'https://github.com/NeoLabs-Systems/NeoAgent' },
|
|
15
42
|
],
|
|
@@ -19,17 +46,32 @@ export default defineConfig({
|
|
|
19
46
|
items: [
|
|
20
47
|
{ text: 'Overview', link: '/' },
|
|
21
48
|
{ text: 'Getting Started', link: '/getting-started' },
|
|
22
|
-
{ text: 'Capabilities', link: '/capabilities' },
|
|
23
49
|
{ text: 'Why NeoAgent', link: '/why-neoagent' },
|
|
24
50
|
],
|
|
25
51
|
},
|
|
26
52
|
{
|
|
27
|
-
text: '
|
|
53
|
+
text: 'Product Surface',
|
|
28
54
|
items: [
|
|
29
|
-
{
|
|
55
|
+
{
|
|
56
|
+
text: 'Capabilities',
|
|
57
|
+
link: '/capabilities',
|
|
58
|
+
items: [
|
|
59
|
+
{ text: 'Android Control', link: '/capabilities#android-control' },
|
|
60
|
+
{ text: 'Recordings', link: '/capabilities#recordings' },
|
|
61
|
+
{ text: 'Health Data', link: '/capabilities#health-data' },
|
|
62
|
+
{ text: 'Agent Tools', link: '/capabilities#agent-tools' },
|
|
63
|
+
{ text: 'Runtime Modes', link: '/capabilities#runtime-modes' },
|
|
64
|
+
],
|
|
65
|
+
},
|
|
30
66
|
{ text: 'Automation', link: '/automation' },
|
|
31
67
|
{ text: 'Integrations', link: '/integrations' },
|
|
32
68
|
{ text: 'Skills', link: '/skills' },
|
|
69
|
+
],
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
text: 'Operate',
|
|
73
|
+
items: [
|
|
74
|
+
{ text: 'Configuration', link: '/configuration' },
|
|
33
75
|
{ text: 'Operations', link: '/operations' },
|
|
34
76
|
],
|
|
35
77
|
},
|
|
@@ -40,10 +82,18 @@ export default defineConfig({
|
|
|
40
82
|
search: {
|
|
41
83
|
provider: 'local',
|
|
42
84
|
},
|
|
85
|
+
outline: {
|
|
86
|
+
level: [2, 3],
|
|
87
|
+
label: 'On This Page',
|
|
88
|
+
},
|
|
43
89
|
editLink: {
|
|
44
90
|
pattern: 'https://github.com/NeoLabs-Systems/NeoAgent/edit/main/docs/:path',
|
|
45
91
|
text: 'Edit this page on GitHub',
|
|
46
92
|
},
|
|
93
|
+
docFooter: {
|
|
94
|
+
prev: 'Previous',
|
|
95
|
+
next: 'Next',
|
|
96
|
+
},
|
|
47
97
|
footer: {
|
|
48
98
|
message: 'Released under the MIT License.',
|
|
49
99
|
copyright: 'Copyright NeoLabs Systems',
|
package/docs/index.md
CHANGED
|
@@ -1,8 +1,47 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
|
+
layout: home
|
|
2
3
|
|
|
3
|
-
|
|
4
|
+
hero:
|
|
5
|
+
name: NeoAgent
|
|
6
|
+
text: Self-hosted proactive AI agent
|
|
7
|
+
tagline: Run your own server, keep credentials server-side, and operate browser, Android, recordings, schedules, integrations, memory, MCP, and messaging from one Flutter UI.
|
|
8
|
+
actions:
|
|
9
|
+
- theme: brand
|
|
10
|
+
text: Get Started
|
|
11
|
+
link: /getting-started
|
|
12
|
+
- theme: alt
|
|
13
|
+
text: Capabilities
|
|
14
|
+
link: /capabilities
|
|
15
|
+
- theme: alt
|
|
16
|
+
text: Why NeoAgent
|
|
17
|
+
link: /why-neoagent
|
|
4
18
|
|
|
5
|
-
|
|
19
|
+
features:
|
|
20
|
+
- title: Android Control
|
|
21
|
+
details: Let the AI operate a server-attached Android emulator or device with screenshots, UI dumps, app launch, intents, taps, typing, swipes, APK installs, and ADB shell.
|
|
22
|
+
link: /capabilities#android-control
|
|
23
|
+
linkText: Android Control
|
|
24
|
+
- title: Recordings
|
|
25
|
+
details: Capture web, Android, and wearable audio as sessions with transcripts, searchable segments, playback, retry, cleanup, and AI-generated insights.
|
|
26
|
+
link: /capabilities#recordings
|
|
27
|
+
linkText: Recordings
|
|
28
|
+
- title: Proactive Automation
|
|
29
|
+
details: Create recurring tasks and one-time runs that can use browser, files, CLI, memory, MCP, integrations, subagents, health summaries, and messaging delivery.
|
|
30
|
+
link: /automation
|
|
31
|
+
linkText: Automation
|
|
32
|
+
- title: Official Integrations
|
|
33
|
+
details: Use OAuth-backed Google Workspace, Microsoft 365, Notion, Slack, and Figma tools instead of brittle browser automation where possible.
|
|
34
|
+
link: /integrations
|
|
35
|
+
linkText: Integrations
|
|
36
|
+
- title: Server-Side Secrets
|
|
37
|
+
details: Keep AI provider keys, OAuth client secrets, Telnyx tokens, runtime settings, and deployment controls on the NeoAgent server.
|
|
38
|
+
link: /configuration
|
|
39
|
+
linkText: Configuration
|
|
40
|
+
- title: Recovery Path
|
|
41
|
+
details: Operate self-hosted installs with status, logs, release channels, update, fix, runtime paths, and the remote-server log caveat.
|
|
42
|
+
link: /operations
|
|
43
|
+
linkText: Operations
|
|
44
|
+
---
|
|
6
45
|
|
|
7
46
|
## Quick Start
|
|
8
47
|
|
|
@@ -11,29 +50,19 @@ npm install -g neoagent
|
|
|
11
50
|
neoagent install
|
|
12
51
|
```
|
|
13
52
|
|
|
14
|
-
|
|
53
|
+
Open the server URL, sign in, configure providers and messaging, then create a scheduled task or chat run.
|
|
15
54
|
|
|
16
|
-
##
|
|
55
|
+
## Navigation
|
|
17
56
|
|
|
18
|
-
|
|
|
57
|
+
| Need | Start here |
|
|
19
58
|
|---|---|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
|
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
30
|
-
## Where To Go Next
|
|
31
|
-
|
|
32
|
-
- [Getting started](getting-started.md) covers installation, setup, and service commands.
|
|
33
|
-
- [Capabilities](capabilities.md) lists the broader tool, Android control, recording, health, runtime, and integration surface.
|
|
34
|
-
- [Configuration](configuration.md) explains server-side environment variables and secrets.
|
|
35
|
-
- [Automation](automation.md) explains scheduled tasks and tool safety.
|
|
36
|
-
- [Integrations](integrations.md) explains OAuth integrations and messaging.
|
|
37
|
-
- [Skills](skills.md) explains built-in and custom skills.
|
|
38
|
-
- [Operations](operations.md) explains logs, updates, release channels, and recovery.
|
|
39
|
-
- [Why NeoAgent](why-neoagent.md) compares NeoAgent with OpenClaw.
|
|
59
|
+
| Install and first run | [Getting Started](getting-started.md) |
|
|
60
|
+
| Full product surface | [Capabilities](capabilities.md) |
|
|
61
|
+
| Android device control | [Capabilities: Android Control](capabilities.md#android-control) |
|
|
62
|
+
| Recordings and transcripts | [Capabilities: Recordings](capabilities.md#recordings) |
|
|
63
|
+
| Scheduled tasks | [Automation](automation.md) |
|
|
64
|
+
| OAuth apps and messaging | [Integrations](integrations.md) |
|
|
65
|
+
| Skills and MCP | [Skills](skills.md) |
|
|
66
|
+
| Secrets and runtime settings | [Configuration](configuration.md) |
|
|
67
|
+
| Logs, updates, and repair | [Operations](operations.md) |
|
|
68
|
+
| OpenClaw comparison | [Why NeoAgent](why-neoagent.md) |
|
package/package.json
CHANGED
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"425cfb54d01a9472b3e81d9e76fd63a4a44cfb
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "4210287293" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|