@vox-ai/cli-darwin-x64 0.1.0-beta.30 → 0.1.0-beta.32
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 +2 -2
- package/bin/vox +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,7 +71,7 @@ A high-level map of the public surface. Run any command with `--help` for detail
|
|
|
71
71
|
| Authoring | `agent …`, `tool …`, `knowledge …` (plan, create, edit, validate, diff, push, version, promote) |
|
|
72
72
|
| Sync | `sync status`, `sync import`, `sync bootstrap` |
|
|
73
73
|
| Multi-org | `org list`, `org switch`, `org api-key create/list/revoke`, `workspace init` |
|
|
74
|
-
| Runtime & telephony | `chat`, `call …`, `number …`, `version`, `upgrade` |
|
|
74
|
+
| Runtime & telephony | `chat`, `call …`, `number …`, `widget …`, `version`, `upgrade` |
|
|
75
75
|
|
|
76
76
|
For sub-organization API keys, `--org` selects the authenticated caller while
|
|
77
77
|
`--sub-org` selects the organization in the API path:
|
|
@@ -98,7 +98,7 @@ vox skills list --json # design playbooks and workflow routing
|
|
|
98
98
|
vox schema get <namespace> <schema-type> --json
|
|
99
99
|
```
|
|
100
100
|
|
|
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`.
|
|
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`. 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
102
|
|
|
103
103
|
## Authentication
|
|
104
104
|
|
package/bin/vox
CHANGED
|
Binary file
|