neoagent 2.1.18-beta.36 → 2.1.18-beta.37
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/getting-started.md +1 -1
- package/docs/index.md +23 -42
- package/package.json +11 -5
- package/server/public/flutter_bootstrap.js +1 -1
- package/docs/.vitepress/config.mts +0 -102
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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-
|
|
6
|
+
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/Node.js-20+-5fa04e?style=flat-square&logo=node.js&logoColor=white" alt="Node.js"></a>
|
|
7
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
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
9
|
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-a855f7?style=flat-square" alt="License"></a>
|
package/docs/getting-started.md
CHANGED
|
@@ -4,7 +4,7 @@ NeoAgent installs as a Node CLI and runs a self-hosted server with a bundled Flu
|
|
|
4
4
|
|
|
5
5
|
## Requirements
|
|
6
6
|
|
|
7
|
-
- Node.js
|
|
7
|
+
- Node.js 20 or newer.
|
|
8
8
|
- A reachable server URL if you want OAuth callbacks, mobile access, or messaging webhooks.
|
|
9
9
|
- At least one hosted AI provider API key, unless you only use local Ollama.
|
|
10
10
|
- Android Studio or a Flutter Android toolchain if you build the Android client yourself.
|
package/docs/index.md
CHANGED
|
@@ -1,47 +1,14 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
slug: /
|
|
3
|
+
title: NeoAgent
|
|
4
|
+
sidebar_label: Overview
|
|
5
|
+
---
|
|
3
6
|
|
|
4
|
-
|
|
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
|
|
7
|
+
# NeoAgent
|
|
18
8
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
-
---
|
|
9
|
+
NeoAgent is a self-hosted proactive AI agent with a bundled Flutter client for web and Android. It runs on your server, keeps credentials server-side, and gives you an operator UI for chat, runs, logs, scheduler tasks, skills, integrations, MCP, memory, Android control, recordings, Health Connect data, wearables, and settings.
|
|
10
|
+
|
|
11
|
+
It is designed for people who want a focused personal automation server rather than a broad gateway platform. NeoAgent can run scheduled tasks, control a browser, operate a server-attached Android emulator or device, manage files, remember long-term context, connect to hosted AI providers or local Ollama, search recordings, read synced health summaries, and send results through Telegram, Discord, WhatsApp, or Telnyx Voice.
|
|
45
12
|
|
|
46
13
|
## Quick Start
|
|
47
14
|
|
|
@@ -52,7 +19,21 @@ neoagent install
|
|
|
52
19
|
|
|
53
20
|
Open the server URL, sign in, configure providers and messaging, then create a scheduled task or chat run.
|
|
54
21
|
|
|
55
|
-
##
|
|
22
|
+
## What NeoAgent Does
|
|
23
|
+
|
|
24
|
+
| Area | Capability |
|
|
25
|
+
|---|---|
|
|
26
|
+
| AI providers | OpenAI, Anthropic, xAI, Google, MiniMax Code, and local Ollama |
|
|
27
|
+
| Operator UI | Chat, live runs, logs, scheduler, skills, integrations, MCP, memory, devices, recordings, health, wearables, settings |
|
|
28
|
+
| Automation | Recurring scheduled tasks, one-time runs, browser control, file access, CLI skills, subagents, and messaging delivery |
|
|
29
|
+
| Android control | AI control of a server-attached Android emulator or device: screenshots, UI dumps, taps, typing, intents, APK installs, and ADB shell |
|
|
30
|
+
| Recordings | Web, Android, and wearable audio sessions with transcript search and AI insights |
|
|
31
|
+
| Integrations | Google Workspace, Notion, Microsoft 365, Slack, Figma, and remote MCP servers |
|
|
32
|
+
| Messaging | Telegram, Discord, WhatsApp text/media, and Telnyx Voice calls |
|
|
33
|
+
| Outputs | Artifacts, Grok image generation, vision analysis, markdown tables, and Mermaid graphs |
|
|
34
|
+
| Recovery | `neoagent status`, `neoagent logs`, `neoagent update`, release channels, and `neoagent fix` |
|
|
35
|
+
|
|
36
|
+
## Main Paths
|
|
56
37
|
|
|
57
38
|
| Need | Start here |
|
|
58
39
|
|---|---|
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neoagent",
|
|
3
|
-
"version": "2.1.18-beta.
|
|
3
|
+
"version": "2.1.18-beta.37",
|
|
4
4
|
"description": "Proactive personal AI agent with no limits",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "server/index.js",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20"
|
|
9
|
+
},
|
|
7
10
|
"bin": {
|
|
8
11
|
"neoagent": "bin/neoagent.js"
|
|
9
12
|
},
|
|
@@ -28,9 +31,9 @@
|
|
|
28
31
|
"dev:stack": "./dev/stack.sh",
|
|
29
32
|
"dev:build": "./dev/build.sh",
|
|
30
33
|
"dev:test": "./dev/test.sh",
|
|
31
|
-
"docs:dev": "
|
|
32
|
-
"docs:build": "
|
|
33
|
-
"docs:preview": "
|
|
34
|
+
"docs:dev": "docusaurus start",
|
|
35
|
+
"docs:build": "docusaurus build",
|
|
36
|
+
"docs:preview": "docusaurus serve build",
|
|
34
37
|
"flutter:run:web": "cd flutter_app && flutter run -d chrome",
|
|
35
38
|
"flutter:build:web": "cd flutter_app && flutter build web --output ../server/public --dart-define=NEOAGENT_BACKEND_URL=${NEOAGENT_BACKEND_URL:-}",
|
|
36
39
|
"manage": "node bin/neoagent.js",
|
|
@@ -83,6 +86,9 @@
|
|
|
83
86
|
"undici": "^6.24.0"
|
|
84
87
|
},
|
|
85
88
|
"devDependencies": {
|
|
86
|
-
"
|
|
89
|
+
"@docusaurus/core": "3.8.1",
|
|
90
|
+
"@docusaurus/preset-classic": "3.8.1",
|
|
91
|
+
"react": "18.3.1",
|
|
92
|
+
"react-dom": "18.3.1"
|
|
87
93
|
}
|
|
88
94
|
}
|
|
@@ -37,6 +37,6 @@ _flutter.buildConfig = {"engineRevision":"425cfb54d01a9472b3e81d9e76fd63a4a44cfb
|
|
|
37
37
|
|
|
38
38
|
_flutter.loader.load({
|
|
39
39
|
serviceWorkerSettings: {
|
|
40
|
-
serviceWorkerVersion: "
|
|
40
|
+
serviceWorkerVersion: "1235668503" /* Flutter's service worker is deprecated and will be removed in a future Flutter release. */
|
|
41
41
|
}
|
|
42
42
|
});
|
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from 'vitepress';
|
|
2
|
-
|
|
3
|
-
export default defineConfig({
|
|
4
|
-
title: 'NeoAgent',
|
|
5
|
-
description: 'Self-hosted proactive AI agent docs',
|
|
6
|
-
base: '/NeoAgent/',
|
|
7
|
-
cleanUrls: true,
|
|
8
|
-
lastUpdated: true,
|
|
9
|
-
themeConfig: {
|
|
10
|
-
nav: [
|
|
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
|
-
},
|
|
40
|
-
{ text: 'Why NeoAgent', link: '/why-neoagent' },
|
|
41
|
-
{ text: 'GitHub', link: 'https://github.com/NeoLabs-Systems/NeoAgent' },
|
|
42
|
-
],
|
|
43
|
-
sidebar: [
|
|
44
|
-
{
|
|
45
|
-
text: 'Start',
|
|
46
|
-
items: [
|
|
47
|
-
{ text: 'Overview', link: '/' },
|
|
48
|
-
{ text: 'Getting Started', link: '/getting-started' },
|
|
49
|
-
{ text: 'Why NeoAgent', link: '/why-neoagent' },
|
|
50
|
-
],
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
text: 'Product Surface',
|
|
54
|
-
items: [
|
|
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
|
-
},
|
|
66
|
-
{ text: 'Automation', link: '/automation' },
|
|
67
|
-
{ text: 'Integrations', link: '/integrations' },
|
|
68
|
-
{ text: 'Skills', link: '/skills' },
|
|
69
|
-
],
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
text: 'Operate',
|
|
73
|
-
items: [
|
|
74
|
-
{ text: 'Configuration', link: '/configuration' },
|
|
75
|
-
{ text: 'Operations', link: '/operations' },
|
|
76
|
-
],
|
|
77
|
-
},
|
|
78
|
-
],
|
|
79
|
-
socialLinks: [
|
|
80
|
-
{ icon: 'github', link: 'https://github.com/NeoLabs-Systems/NeoAgent' },
|
|
81
|
-
],
|
|
82
|
-
search: {
|
|
83
|
-
provider: 'local',
|
|
84
|
-
},
|
|
85
|
-
outline: {
|
|
86
|
-
level: [2, 3],
|
|
87
|
-
label: 'On This Page',
|
|
88
|
-
},
|
|
89
|
-
editLink: {
|
|
90
|
-
pattern: 'https://github.com/NeoLabs-Systems/NeoAgent/edit/main/docs/:path',
|
|
91
|
-
text: 'Edit this page on GitHub',
|
|
92
|
-
},
|
|
93
|
-
docFooter: {
|
|
94
|
-
prev: 'Previous',
|
|
95
|
-
next: 'Next',
|
|
96
|
-
},
|
|
97
|
-
footer: {
|
|
98
|
-
message: 'Released under the MIT License.',
|
|
99
|
-
copyright: 'Copyright NeoLabs Systems',
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
});
|