@mclean-capital/neura 2.2.4 → 2.3.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 +1 -1
- package/core/server.bundled.mjs +5703 -734
- package/core/server.bundled.mjs.map +4 -4
- package/core/version.txt +1 -1
- package/dist/commands/install.js +1 -1
- package/dist/commands/install.js.map +1 -1
- package/package.json +3 -1
- package/stores/index.js +38 -0
- package/stores/index.js.map +2 -2
- package/stores/migrations.d.ts.map +1 -1
- package/stores/migrations.js +48 -0
- package/stores/migrations.js.map +1 -1
- package/stores/pglite-store.d.ts +8 -0
- package/stores/pglite-store.d.ts.map +1 -1
- package/stores/pglite-store.js +9 -0
- package/stores/pglite-store.js.map +1 -1
- package/stores/worker-queries.d.ts +120 -0
- package/stores/worker-queries.d.ts.map +1 -0
- package/stores/worker-queries.js +175 -0
- package/stores/worker-queries.js.map +1 -0
- package/stores/worker-queries.test.d.ts +6 -0
- package/stores/worker-queries.test.d.ts.map +1 -0
- package/stores/worker-queries.test.js +224 -0
- package/stores/worker-queries.test.js.map +1 -0
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ neura listen # voice chat (mic + speaker, wake-word ready)
|
|
|
54
54
|
neura chat # text chat from your terminal
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
After `neura install` completes, core runs as a background OS service — launchd on macOS, systemd on Linux, a Scheduled Task (or Startup folder shim as fallback) on Windows. Say your wake word — by default **"
|
|
57
|
+
After `neura install` completes, core runs as a background OS service — launchd on macOS, systemd on Linux, a Scheduled Task (or Startup folder shim as fallback) on Windows. Say your wake word — by default **"neura"** — and Neura activates a voice session. Stop talking for 5 minutes and it drops back to passive listening.
|
|
58
58
|
|
|
59
59
|
### Windows notes
|
|
60
60
|
|