@vox-ai/cli-linux-x64 0.1.0-beta.10

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +157 -0
  3. package/bin/vox +0 -0
  4. package/package.json +24 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Fleek Fitness
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,157 @@
1
+ # @vox-ai/cli
2
+
3
+ vox.ai CLI for agent-as-code workflows.
4
+
5
+ `vox` lets you build, validate, diff, and ship [vox.ai](https://www.tryvox.co) voice agents as code. It is designed to be driven both by people in a terminal and by coding agents (Claude Code, Codex, and similar): edit JSON sources in your repo, read structured `--json` output, review diffs, and push when you are ready.
6
+
7
+ The CLI is the durable authoring surface — what belongs in your repo, gets reviewed, and can be reproduced or rolled back. The dashboard stays the viewer and admin surface.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ # npm (macOS, Linux, and Windows x64; requires Node >= 20.17)
13
+ npm install -g @vox-ai/cli
14
+
15
+ # npm pre-release channel
16
+ npm install -g @vox-ai/cli@beta
17
+
18
+ # Homebrew (macOS)
19
+ brew install vox-public/tap/vox
20
+ ```
21
+
22
+ On **Windows**, npm is the official install path: `npm install -g @vox-ai/cli@beta`, then run `vox` (or `vox.cmd`) from any terminal. There is no separate `.exe` or zip download to install.
23
+
24
+ Verify the install:
25
+
26
+ ```bash
27
+ vox --version
28
+ vox --help
29
+ ```
30
+
31
+ ## Quick Start
32
+
33
+ ```bash
34
+ # 1. Sign in (OAuth in your browser)
35
+ vox auth login
36
+ vox auth whoami --json
37
+
38
+ # 2. Read the operating contract (especially useful for coding agents)
39
+ vox guide coding-agent
40
+
41
+ # 3. Start a project — scaffold a new one, or import what already exists
42
+ vox init
43
+ # or, in an existing workspace:
44
+ vox sync import --all --dry-run --json
45
+ ```
46
+
47
+ ## Agent-as-Code Workflow
48
+
49
+ The core loop is a code workflow, not a sequence of dashboard clicks:
50
+
51
+ ```text
52
+ pull / init -> edit JSON files -> doctor / validate -> diff / status -> push -> version save / promote
53
+ ```
54
+
55
+ - `vox agent pull` / `vox init` — bring remote agents into local JSON source.
56
+ - Edit the JSON files in your editor or with a coding agent.
57
+ - `vox agent doctor` / `vox agent validate` — catch authoring risks before you push.
58
+ - `vox agent diff` / `vox agent status` — review exactly what will change.
59
+ - `vox agent push` — apply your local source to the remote draft.
60
+ - `vox agent version save` / `vox agent promote` — snapshot an immutable version and promote it to production.
61
+
62
+ ## Commands
63
+
64
+ A high-level map of the public surface. Run any command with `--help` for details, or add `--json` for structured output.
65
+
66
+ | Area | Commands |
67
+ | --- | --- |
68
+ | Auth & config | `auth login`, `auth whoami`, `auth switch`, `auth logout`, `config get/set` |
69
+ | Get started | `init`, `doctor`, `guide coding-agent`, `guide flow` |
70
+ | Discover offline | `docs search/show`, `skills list/show`, `schema list/get` |
71
+ | Authoring | `agent …`, `tool …`, `knowledge …` (plan, create, edit, validate, diff, push, version, promote) |
72
+ | Sync | `sync status`, `sync import`, `sync bootstrap` |
73
+ | Multi-org | `org list`, `org switch`, `workspace init` |
74
+ | Runtime & telephony | `chat`, `call …`, `number …`, `version`, `upgrade` |
75
+
76
+ ## Using vox from Coding Agents
77
+
78
+ `vox` is built to be a first-class tool for coding agents. Point your agent at these bootstrap commands:
79
+
80
+ ```bash
81
+ vox guide coding-agent --json # the operating contract to follow
82
+ vox docs search "<query>" --json # offline official docs
83
+ vox skills list --json # design playbooks and workflow routing
84
+ vox schema get <namespace> <schema-type> --json
85
+ ```
86
+
87
+ Every command accepts `--json` and emits a stable envelope (`{ ok, data }` on success, `{ ok: false, error: { code, message, … } }` on failure), so agents and automation can branch on results, read `error.details.hint`, and follow `related_commands`.
88
+
89
+ ## Authentication
90
+
91
+ - vox uses **OAuth only**. `vox auth login` opens your browser and completes a loopback flow.
92
+ - Refresh tokens are stored in your OS keychain / secret store — never in project files.
93
+ - Project and workspace JSON never contain tokens or secrets.
94
+
95
+ ## Telemetry and Privacy
96
+
97
+ Official builds send anonymous usage telemetry to help improve the CLI. It records coarse signals such as the command name, exit status, CLI version, and OS — never your arguments, file contents, tokens, agent data, or organization identifiers.
98
+
99
+ Opt out at any time:
100
+
101
+ ```bash
102
+ vox config set settings.telemetry disabled
103
+ # or, per-process:
104
+ DO_NOT_TRACK=1 vox …
105
+ VOX_TELEMETRY_DISABLED=1 vox …
106
+ ```
107
+
108
+ Development and local builds never emit telemetry.
109
+
110
+ ## Upgrade
111
+
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
+
114
+ ```bash
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
118
+ npm install -g @vox-ai/cli@latest # update an npm install
119
+ brew upgrade vox-public/tap/vox # update a Homebrew install
120
+ ```
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
+
139
+ ### macOS code signing
140
+
141
+ Official macOS binaries are signed with the company Developer ID Application identity, with a stable signing identity across builds:
142
+
143
+ ```text
144
+ Identifier=ai.vox.cli
145
+ TeamIdentifier=Z47Q5G9FA2
146
+ Authority=Developer ID Application: Fleek Corp. (Z47Q5G9FA2)
147
+ ```
148
+
149
+ Because the identity is stable, the macOS Keychain "Always Allow" choice keeps applying across `brew upgrade`s instead of re-prompting on every update. The first release that moves to the company Developer ID may prompt once (the identity changed from the previous one); after that it stays quiet while the identity is unchanged. This phase ships a Developer ID signature, not Apple notarization. Inspect it with `codesign -dvvv "$(which vox)"`.
150
+
151
+ ## Support
152
+
153
+ - Homepage: https://www.tryvox.co
154
+ - Documentation: https://docs.tryvox.co
155
+ - npm package: https://www.npmjs.com/package/@vox-ai/cli
156
+
157
+ Licensed under the MIT License.
package/bin/vox ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "@vox-ai/cli-linux-x64",
3
+ "version": "0.1.0-beta.10",
4
+ "description": "Prebuilt linux-x64 binary for the vox.ai CLI",
5
+ "homepage": "https://www.tryvox.co",
6
+ "license": "MIT",
7
+ "os": [
8
+ "linux"
9
+ ],
10
+ "cpu": [
11
+ "x64"
12
+ ],
13
+ "bin": {
14
+ "vox": "bin/vox"
15
+ },
16
+ "files": [
17
+ "bin/vox",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "engines": {
22
+ "node": ">=20.17.0"
23
+ }
24
+ }