@vox-ai/cli-darwin-x64 0.1.0-beta.31 → 0.1.0-beta.33

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 +4 -3
  2. package/bin/vox +0 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -70,8 +70,9 @@ A high-level map of the public surface. Run any command with `--help` for detail
70
70
  | Discover offline | `docs search/show`, `skills list/show`, `schema list/get` |
71
71
  | Authoring | `agent …`, `tool …`, `knowledge …` (plan, create, edit, validate, diff, push, version, promote) |
72
72
  | Sync | `sync status`, `sync import`, `sync bootstrap` |
73
- | Multi-org | `org list`, `org switch`, `org api-key create/list/revoke`, `workspace init` |
74
- | Runtime & telephony | `chat`, `call …`, `number …`, `version`, `upgrade` |
73
+ | Organization | `org get/usage/members`, `org invoice list/get`, `org verification status`, `org create/delete`, `org api-key create/list/revoke` |
74
+ | Multi-org | `org list`, `org switch`, `workspace init` |
75
+ | Runtime & telephony | `chat`, `call …`, `number …`, `widget …`, `version`, `upgrade` |
75
76
 
76
77
  For sub-organization API keys, `--org` selects the authenticated caller while
77
78
  `--sub-org` selects the organization in the API path:
@@ -98,7 +99,7 @@ vox skills list --json # design playbooks and workflow routing
98
99
  vox schema get <namespace> <schema-type> --json
99
100
  ```
100
101
 
101
- 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`.
102
+ 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`. On the shared read-command error path (`llm`, `number`, `widget`, and other list/get-style commands) API failures promote the server `error.code` and `error.message` into that envelope (for example `VALIDATION_ERROR`); commands with their own error normalizers keep `API_REQUEST_FAILED`; 401/403/404 keep `AUTH_REQUIRED` / `API_FORBIDDEN` / the command's not-found mapping, and the original API body stays in `error.details`. Text mode prints a single line: `<action> failed with <status>: <code> — <message>`.
102
103
 
103
104
  ## Authentication
104
105
 
package/bin/vox CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vox-ai/cli-darwin-x64",
3
- "version": "0.1.0-beta.31",
3
+ "version": "0.1.0-beta.33",
4
4
  "description": "Prebuilt darwin-x64 binary for the vox.ai CLI",
5
5
  "homepage": "https://www.tryvox.co",
6
6
  "license": "MIT",