@neuvybe/jarvis 0.46.2 → 0.46.3
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/LICENSE +39 -0
- package/README.md +69 -0
- package/THIRD_PARTY_NOTICES.md +683 -0
- package/dist/assets/LICENSE-silero-vad +21 -0
- package/dist/assets/LICENSE-smart-turn-v3 +24 -0
- package/dist/assets/MODEL.md +113 -0
- package/dist/index.js +134 -148
- package/package.json +20 -7
package/LICENSE
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
Jarvis Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Neuvybe. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software (the "Software") is licensed, not sold. Subject to the terms
|
|
6
|
+
below, Neuvybe grants you a personal, non-exclusive, non-transferable,
|
|
7
|
+
non-sublicensable, revocable license to install and use the Software, in the
|
|
8
|
+
form in which it is published, for your own purposes, including commercial
|
|
9
|
+
purposes.
|
|
10
|
+
|
|
11
|
+
You may not:
|
|
12
|
+
|
|
13
|
+
1. copy, redistribute, publish, sell, rent, lease, or otherwise make the
|
|
14
|
+
Software available to third parties, beyond the copies reasonably necessary
|
|
15
|
+
to install and run it (including through package registry mirrors, caches,
|
|
16
|
+
and build systems);
|
|
17
|
+
2. modify, translate, or create derivative works of the Software;
|
|
18
|
+
3. reverse engineer, decompile, or disassemble the Software, except to the
|
|
19
|
+
extent applicable law expressly permits this despite the limitation;
|
|
20
|
+
4. remove or alter any proprietary or third-party notices in the Software.
|
|
21
|
+
|
|
22
|
+
Third-party components. The Software includes third-party software and models
|
|
23
|
+
licensed under their own terms, which govern those components. They are listed
|
|
24
|
+
in THIRD_PARTY_NOTICES.md: the components bundled into the Software with their
|
|
25
|
+
license texts, and the packages installed beside it under their own terms.
|
|
26
|
+
|
|
27
|
+
Termination. This license ends automatically if you breach it. On termination
|
|
28
|
+
you must stop using the Software and delete all copies in your possession.
|
|
29
|
+
|
|
30
|
+
No warranty. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
31
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
32
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
33
|
+
|
|
34
|
+
Limitation of liability. TO THE MAXIMUM EXTENT PERMITTED BY LAW, NEUVYBE SHALL
|
|
35
|
+
NOT BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
36
|
+
OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE
|
|
37
|
+
SOFTWARE OR ITS USE.
|
|
38
|
+
|
|
39
|
+
All rights not expressly granted here are reserved by Neuvybe.
|
package/README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# @neuvybe/jarvis
|
|
2
|
+
|
|
3
|
+
Jarvis is a voice-first personal agent for developers: one continuous, trusted
|
|
4
|
+
collaborator that lives in your terminal, rather than a wall of disposable chat
|
|
5
|
+
threads. You talk, it listens, thinks, acts, and talks back. Text works too.
|
|
6
|
+
|
|
7
|
+
Jarvis runs locally, calling the model and speech providers you configure with
|
|
8
|
+
your own keys. It does not keep recordings, and conversation context lasts for
|
|
9
|
+
the session.
|
|
10
|
+
|
|
11
|
+
## Requirements
|
|
12
|
+
|
|
13
|
+
- Node.js 24 or newer.
|
|
14
|
+
- A microphone and speakers (or a headset) for voice. Text-only sessions need neither.
|
|
15
|
+
- Provider keys: a Brain (the model) and, for voice, a Voice provider. `jarvis init`
|
|
16
|
+
collects and validates them.
|
|
17
|
+
- Supported platforms: macOS on Apple silicon, Windows x64, Linux x64 and arm64 (glibc).
|
|
18
|
+
Intel Macs, Windows on ARM, and Alpine/musl are not supported yet.
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npm install -g @neuvybe/jarvis
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Set up once, then start talking:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
jarvis init # first-run setup: providers, keys, defaults (writes ~/.jarvis)
|
|
30
|
+
jarvis # open the session for the current directory
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
`jarvis` is an interactive doorway, not a prompt runner: it takes no prompt
|
|
34
|
+
argument and does not read piped input.
|
|
35
|
+
|
|
36
|
+
## Everyday commands
|
|
37
|
+
|
|
38
|
+
| Command | What it does |
|
|
39
|
+
| -------------------- | --------------------------------------------------------------------------------- |
|
|
40
|
+
| `jarvis` | Start a session in the current directory: voice when available, else text |
|
|
41
|
+
| `jarvis --text` | Force a text-only session (`--no-voice` is the same) |
|
|
42
|
+
| `jarvis init` | First-run setup wizard; re-run it to edit providers and keys |
|
|
43
|
+
| `jarvis doctor` | Diagnostics: config, home directory, providers and keys, update availability |
|
|
44
|
+
| `jarvis status` | Installed version plus a live update check |
|
|
45
|
+
| `jarvis upgrade` | Upgrade to the latest published version |
|
|
46
|
+
| `jarvis models` | List model choices for your configured providers (`--refresh` bypasses the cache) |
|
|
47
|
+
| `jarvis config list` | Print the resolved config with secrets redacted; also `get`, `set`, `unset` |
|
|
48
|
+
| `jarvis --help` | Full usage |
|
|
49
|
+
|
|
50
|
+
Voice-mode flags: `--half-duplex` mutes barge-in and the mic while Jarvis speaks
|
|
51
|
+
(a fallback for open speakers), and `--ptt` switches to push-to-talk (space to
|
|
52
|
+
talk, space again to send). `--log-level <debug|info|warn|error>` and
|
|
53
|
+
`--project <path>` are accepted by every command.
|
|
54
|
+
|
|
55
|
+
## Where things live
|
|
56
|
+
|
|
57
|
+
Jarvis keeps its local state under `~/.jarvis` (`JARVIS_HOME` overrides the
|
|
58
|
+
location). Per-session scratch files go to the OS temp directory.
|
|
59
|
+
|
|
60
|
+
Besides the providers you configure, Jarvis contacts the npm registry for update
|
|
61
|
+
checks: a bare `jarvis` launch shows any cached upgrade notice and, when the last
|
|
62
|
+
successful check is more than six hours old, attempts a background refresh;
|
|
63
|
+
`status`, `doctor`, and `upgrade` check live. Web searches and page fetches
|
|
64
|
+
happen only when the model requests them during a session.
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
Proprietary: see the LICENSE file in this package. Third-party components and
|
|
69
|
+
their licenses are listed in THIRD_PARTY_NOTICES.md.
|