@vox-ai/cli-linux-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.
Files changed (3) hide show
  1. package/README.md +21 -2
  2. package/bin/vox +0 -0
  3. 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` checks for a newer release and prints the upgrade command for how you installed it it does not modify your installation itself. Run the printed command (or one of the below) to actually update:
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 # check for a newer version and print the upgrade command
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vox-ai/cli-linux-x64",
3
- "version": "0.1.0-beta.8",
3
+ "version": "0.1.0-beta.9",
4
4
  "description": "Prebuilt linux-x64 binary for the vox.ai CLI",
5
5
  "homepage": "https://www.tryvox.co",
6
6
  "license": "MIT",