@mclean-capital/neura 1.10.1 → 2.0.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 +33 -6
- package/core/server.bundled.mjs +71470 -0
- package/core/server.bundled.mjs.map +7 -0
- package/core/version.txt +1 -0
- package/dist/commands/install.d.ts +13 -1
- package/dist/commands/install.d.ts.map +1 -1
- package/dist/commands/install.js +78 -60
- package/dist/commands/install.js.map +1 -1
- package/dist/commands/update.d.ts +6 -0
- package/dist/commands/update.d.ts.map +1 -1
- package/dist/commands/update.js +125 -16
- package/dist/commands/update.js.map +1 -1
- package/dist/download.d.ts +28 -22
- package/dist/download.d.ts.map +1 -1
- package/dist/download.js +40 -113
- package/dist/download.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/update-check.d.ts +6 -3
- package/dist/update-check.d.ts.map +1 -1
- package/dist/update-check.js +48 -16
- package/dist/update-check.js.map +1 -1
- package/package.json +6 -2
- package/stores/backup-queries.d.ts +8 -0
- package/stores/backup-queries.d.ts.map +1 -0
- package/stores/backup-queries.js +262 -0
- package/stores/backup-queries.js.map +1 -0
- package/stores/entity-queries.d.ts +14 -0
- package/stores/entity-queries.d.ts.map +1 -0
- package/stores/entity-queries.js +156 -0
- package/stores/entity-queries.js.map +1 -0
- package/stores/index.d.ts +2 -0
- package/stores/index.d.ts.map +1 -0
- package/stores/index.js +5901 -0
- package/stores/index.js.map +7 -0
- package/stores/mappers.d.ts +59 -0
- package/stores/mappers.d.ts.map +1 -0
- package/stores/mappers.js +70 -0
- package/stores/mappers.js.map +1 -0
- package/stores/memory-queries.d.ts +31 -0
- package/stores/memory-queries.d.ts.map +1 -0
- package/stores/memory-queries.js +275 -0
- package/stores/memory-queries.js.map +1 -0
- package/stores/migrations.d.ts +4 -0
- package/stores/migrations.d.ts.map +1 -0
- package/stores/migrations.js +231 -0
- package/stores/migrations.js.map +1 -0
- package/stores/package.json +3 -0
- package/stores/pglite-store.d.ts +83 -0
- package/stores/pglite-store.d.ts.map +1 -0
- package/stores/pglite-store.js +183 -0
- package/stores/pglite-store.js.map +1 -0
- package/stores/pglite-store.test.d.ts +2 -0
- package/stores/pglite-store.test.d.ts.map +1 -0
- package/stores/pglite-store.test.js +725 -0
- package/stores/pglite-store.test.js.map +1 -0
- package/stores/search-queries.d.ts +11 -0
- package/stores/search-queries.d.ts.map +1 -0
- package/stores/search-queries.js +116 -0
- package/stores/search-queries.js.map +1 -0
- package/stores/session-queries.d.ts +8 -0
- package/stores/session-queries.d.ts.map +1 -0
- package/stores/session-queries.js +48 -0
- package/stores/session-queries.js.map +1 -0
- package/stores/work-item-queries.d.ts +17 -0
- package/stores/work-item-queries.d.ts.map +1 -0
- package/stores/work-item-queries.js +85 -0
- package/stores/work-item-queries.js.map +1 -0
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# @mclean-capital/neura
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> **A voice-first, proactive AI operating system.** Say the wake word and talk to Neura from any device — no click-to-start, no tap-to-speak.
|
|
4
4
|
|
|
5
|
-
Neura is a
|
|
5
|
+
Neura is a self-hosted AI assistant that runs as a persistent background service on your machine. It's always listening for the wake word via on-device ONNX inference (zero cloud cost while passive), streams voice conversations via Grok's Eve voice when active, and continuously watches your camera or screen through a Gemini Live vision watcher. It remembers what you've talked about across sessions, manages your tasks, and proactively reminds you about deadlines.
|
|
6
|
+
|
|
7
|
+
This package is the full Neura distribution: **the CLI, the core service, and all runtime dependencies** ship together as one npm install. No separate downloads, no matching platform tarballs — one command installs everything.
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
|
@@ -10,17 +12,42 @@ Neura is a proactive, autonomous AI operating system. It combines real-time voic
|
|
|
10
12
|
npm install -g @mclean-capital/neura
|
|
11
13
|
```
|
|
12
14
|
|
|
13
|
-
|
|
15
|
+
This fetches the CLI **plus** the bundled core service and its native dependencies (`onnxruntime-node` for wake-word detection, `@electric-sql/pglite` for local storage). If `onnxruntime-node` fails to install, the whole install fails loudly — voice is a required feature, not an optional one.
|
|
16
|
+
|
|
17
|
+
Requires **Node.js >= 22**.
|
|
14
18
|
|
|
15
19
|
## Quick start
|
|
16
20
|
|
|
17
21
|
```bash
|
|
18
22
|
neura install # interactive setup: API keys, auto-port, service registration
|
|
19
|
-
|
|
20
|
-
neura
|
|
21
|
-
|
|
23
|
+
# (auto-starts the core service)
|
|
24
|
+
neura listen # voice chat (mic + speaker, wake-word ready)
|
|
25
|
+
# OR:
|
|
26
|
+
neura chat # text chat from your terminal
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
After `neura install` completes, core runs as a background OS service (launchd on macOS, systemd on Linux). Say your wake word — by default **"jarvis"** — and Neura activates a voice session. Stop talking for 5 minutes and it drops back to passive listening.
|
|
30
|
+
|
|
31
|
+
## Update
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
neura update
|
|
35
|
+
# equivalent to: npm install -g @mclean-capital/neura@latest && neura restart
|
|
22
36
|
```
|
|
23
37
|
|
|
38
|
+
The `neura update` command runs `npm install -g @mclean-capital/neura@latest` and restarts the core service so the new version takes effect.
|
|
39
|
+
|
|
40
|
+
### Upgrading from v1.10.x or earlier
|
|
41
|
+
|
|
42
|
+
v1.11.0 moved the core service bundle from a separate GitHub release tarball into the CLI's npm package itself. Older CLIs expect the tarball layout and **cannot self-update to v1.11.0**. If you're on v1.10.x and `neura update` prints a 404 or "Download failed" error, bootstrap manually:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
npm install -g @mclean-capital/neura@latest
|
|
46
|
+
neura install # rewrites service file to point at the new bundled core path
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
After this one-time step, `neura update` works normally for all future upgrades.
|
|
50
|
+
|
|
24
51
|
## Commands
|
|
25
52
|
|
|
26
53
|
### Setup & service lifecycle
|