@vox-ai/cli-darwin-x64 0.1.0-beta.17 → 0.1.0-beta.19
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 +15 -1
- package/bin/vox +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,9 +70,23 @@ 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`, `workspace init` |
|
|
73
|
+
| Multi-org | `org list`, `org switch`, `org api-key create/list/revoke`, `workspace init` |
|
|
74
74
|
| Runtime & telephony | `chat`, `call …`, `number …`, `version`, `upgrade` |
|
|
75
75
|
|
|
76
|
+
For sub-organization API keys, `--org` selects the authenticated caller while
|
|
77
|
+
`--sub-org` selects the organization in the API path:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
vox org api-key list --sub-org <sub-organization-id> --json
|
|
81
|
+
vox org api-key create --sub-org <sub-organization-id> --key-name production --json
|
|
82
|
+
vox org api-key revoke --sub-org <sub-organization-id> --key-name production --secret-key-suffix <last4> --yes --json
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
The plaintext `data.api_key` from `create` is shown exactly once and cannot be
|
|
86
|
+
retrieved later; store it immediately in a secure secret store. It is never
|
|
87
|
+
written to CLI config, project state, telemetry, or error details. Each `list`
|
|
88
|
+
item contains only the key name, last-four suffix, and creation time.
|
|
89
|
+
|
|
76
90
|
## Using vox from Coding Agents
|
|
77
91
|
|
|
78
92
|
`vox` is built to be a first-class tool for coding agents. Point your agent at these bootstrap commands:
|
package/bin/vox
CHANGED
|
Binary file
|