nova-audio-agent 0.2.1 → 0.2.2
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 +8 -2
- package/package.json +1 -1
- package/release-assets.json +7 -2
- package/src/runtime.mjs +1 -1
- package/src/target.mjs +6 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Nova Audio Agent
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
**An always-on voice agent with restrained proactivity and voice-controlled workspaces.**
|
|
4
6
|
|
|
5
7
|
[](https://www.npmjs.com/package/nova-audio-agent)
|
|
@@ -22,8 +24,10 @@ desktop application. You do not need to clone or build the repository.
|
|
|
22
24
|
|
|
23
25
|
## Install
|
|
24
26
|
|
|
25
|
-
Requires **Node.js 22.13.0 or newer**, npm, and
|
|
26
|
-
|
|
27
|
+
Requires **Node.js 22.13.0 or newer**, npm, and **macOS on Apple Silicon**,
|
|
28
|
+
**Windows x64**, or **Ubuntu 22.04+ x64** with a desktop session. Intel Macs and
|
|
29
|
+
Linux ARM64 are not covered. Linux requires Chromium user namespaces to be
|
|
30
|
+
permitted by the host or container policy.
|
|
27
31
|
The application is not yet signed, so macOS Gatekeeper and Windows SmartScreen
|
|
28
32
|
will warn on first launch.
|
|
29
33
|
|
|
@@ -83,6 +87,8 @@ never reads or prints secret values.
|
|
|
83
87
|
Run `novaaudio doctor` to see which release is installed and whether your
|
|
84
88
|
configuration is complete.
|
|
85
89
|
|
|
90
|
+
For headless Ubuntu 22.04+, install `nova-audio-agent-server` and use `novaaudio-server start`; `novaaudio-server pair wss://your-host.ts.net` shows a terminal pairing QR after configuring the service.
|
|
91
|
+
|
|
86
92
|
## Learn more
|
|
87
93
|
|
|
88
94
|
- [Getting started and integrations](https://deepnovacore.github.io/NovaAudioAgent/en/docs/getting-started)
|
package/package.json
CHANGED
package/release-assets.json
CHANGED
|
@@ -3,14 +3,19 @@
|
|
|
3
3
|
"repository": "deepnovacore/NovaAudioAgent",
|
|
4
4
|
"targets": {
|
|
5
5
|
"darwin-arm64": {
|
|
6
|
-
"artifact": "nova-audio-agent-0.2.
|
|
6
|
+
"artifact": "nova-audio-agent-0.2.2-macos-arm64-app.zip",
|
|
7
7
|
"executable": "Nova Audio Agent Desktop.app/Contents/MacOS/Nova Audio Agent Desktop",
|
|
8
8
|
"archive": "zip"
|
|
9
9
|
},
|
|
10
10
|
"win32-x64": {
|
|
11
|
-
"artifact": "nova-audio-agent-0.2.
|
|
11
|
+
"artifact": "nova-audio-agent-0.2.2-windows-x64-portable.zip",
|
|
12
12
|
"executable": "Nova Audio Agent Desktop.exe",
|
|
13
13
|
"archive": "zip"
|
|
14
|
+
},
|
|
15
|
+
"linux-x64": {
|
|
16
|
+
"artifact": "nova-audio-agent-0.2.2-linux-x64.AppImage",
|
|
17
|
+
"executable": "nova-audio-agent.AppImage",
|
|
18
|
+
"archive": "file"
|
|
14
19
|
}
|
|
15
20
|
}
|
|
16
21
|
}
|
package/src/runtime.mjs
CHANGED
|
@@ -160,7 +160,7 @@ async function extractArtifact({artifact, payload, target, platform}) {
|
|
|
160
160
|
if (platform === 'darwin') {
|
|
161
161
|
await run('/usr/bin/ditto', ['-x', '-k', artifact, payload])
|
|
162
162
|
} else {
|
|
163
|
-
await run(platform === 'win32' ? 'tar.exe' : 'tar', ['-xf', artifact, '-C', payload])
|
|
163
|
+
await run(platform === 'win32' ? join(process.env.SystemRoot ?? 'C:\\Windows', 'System32', 'tar.exe') : 'tar', ['-xf', artifact, '-C', payload])
|
|
164
164
|
}
|
|
165
165
|
const executable = resolve(payload, target.executable)
|
|
166
166
|
const executableRelative = relative(resolve(payload), executable)
|
package/src/target.mjs
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
import { homedir } from 'node:os'
|
|
2
2
|
import { join } from 'node:path'
|
|
3
3
|
|
|
4
|
-
export const PRODUCT_VERSION = '0.2.
|
|
4
|
+
export const PRODUCT_VERSION = '0.2.2'
|
|
5
5
|
export const RELEASE_REPOSITORY = 'deepnovacore/NovaAudioAgent'
|
|
6
6
|
|
|
7
7
|
const DEFINITIONS = Object.freeze({
|
|
8
|
+
'linux-x64': Object.freeze({
|
|
9
|
+
artifact: `nova-audio-agent-${PRODUCT_VERSION}-linux-x64.AppImage`,
|
|
10
|
+
executable: 'nova-audio-agent.AppImage',
|
|
11
|
+
archive: 'file',
|
|
12
|
+
}),
|
|
8
13
|
'darwin-arm64': Object.freeze({
|
|
9
14
|
artifact: `nova-audio-agent-${PRODUCT_VERSION}-macos-arm64-app.zip`,
|
|
10
15
|
executable: 'Nova Audio Agent Desktop.app/Contents/MacOS/Nova Audio Agent Desktop',
|