@vox-ai/cli-darwin-x64 0.1.0-beta.8 → 0.1.0-beta.9
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 +21 -2
- package/bin/vox +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -109,14 +109,33 @@ Development and local builds never emit telemetry.
|
|
|
109
109
|
|
|
110
110
|
## Upgrade
|
|
111
111
|
|
|
112
|
-
`vox upgrade`
|
|
112
|
+
`vox upgrade` is a package-manager aware upgrade assistant: it detects how vox was installed (npm, Homebrew, standalone, or unknown) and prints the exact upgrade command for that install. It never modifies your installation itself — run the printed command to update.
|
|
113
113
|
|
|
114
114
|
```bash
|
|
115
|
-
vox upgrade #
|
|
115
|
+
vox upgrade # detect the install and print the exact upgrade command
|
|
116
|
+
vox upgrade --channel beta # check the beta channel
|
|
117
|
+
vox upgrade --json # structured output for scripts / coding agents
|
|
116
118
|
npm install -g @vox-ai/cli@latest # update an npm install
|
|
117
119
|
brew upgrade vox-public/tap/vox # update a Homebrew install
|
|
118
120
|
```
|
|
119
121
|
|
|
122
|
+
For Homebrew, `vox upgrade` distinguishes the newest upstream release from what the formula currently offers, so it won't tell you to `brew upgrade` before the formula has caught up. `vox upgrade --json` (schema `vox.ai.cli.upgrade.v2`) returns `status`, `confidence`, `actions`, and `verify_commands` so a coding agent can pick the next command without parsing human text.
|
|
123
|
+
|
|
124
|
+
### Update notices
|
|
125
|
+
|
|
126
|
+
vox occasionally checks — at most once a day, when you run a command — whether a newer version is published, and caches the result locally (no daemon, no background process). When an update exists, it prints a single line to stderr on your next interactive run:
|
|
127
|
+
|
|
128
|
+
```text
|
|
129
|
+
A newer vox.ai CLI is available: 0.1.0-beta.9
|
|
130
|
+
Run `vox upgrade` for the exact upgrade command.
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
The check only queries the public npm registry — it is not telemetry and sends no account, organization, or auth information. It stays silent for `--json`, non-interactive shells, and CI, and never changes a command's exit code. **Homebrew installs are not nudged by this periodic notice** (npm alone cannot tell whether the formula has published the new version yet) — run `vox upgrade` or `brew outdated` for accurate Homebrew guidance. Turn it off with:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
VOX_NO_UPDATE_NOTIFIER=1 vox …
|
|
137
|
+
```
|
|
138
|
+
|
|
120
139
|
### macOS code signing
|
|
121
140
|
|
|
122
141
|
Official macOS binaries are signed with the company Developer ID Application identity, with a stable signing identity across builds:
|
package/bin/vox
CHANGED
|
Binary file
|