voxflow 1.8.2 → 1.8.3
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 +16 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/935.index.js +0 -750
package/README.md
CHANGED
|
@@ -431,6 +431,22 @@ voxflow status # Show login status and token info
|
|
|
431
431
|
voxflow dashboard # Open Web dashboard in browser
|
|
432
432
|
```
|
|
433
433
|
|
|
434
|
+
### `voxflow add <name>` *(experimental — Day-1 MVP)*
|
|
435
|
+
|
|
436
|
+
Pull a curated flow / voice recipe / CLI preset from the official registry into your current project.
|
|
437
|
+
|
|
438
|
+
```bash
|
|
439
|
+
voxflow add --list # Browse all items in the registry
|
|
440
|
+
voxflow add dub-anime-jp-zh # Pull a preset (resolves to voxflow/dub-anime-jp-zh)
|
|
441
|
+
voxflow add chico/my-recipe # Explicit author for community items
|
|
442
|
+
voxflow add foo --force # Overwrite existing local files
|
|
443
|
+
voxflow add foo --registry <url> # Use a different registry (e.g. enterprise private)
|
|
444
|
+
```
|
|
445
|
+
|
|
446
|
+
After `add`, files land under `presets/<name>/` (preset), `recipes/<name>/` (voice-recipe), or `flows/<name>/` (flow). The CLI prints a `Try it:` hint with the exact command to use the just-installed item.
|
|
447
|
+
|
|
448
|
+
> Day-1 MVP scope: no `dependsOn` cascading, no ETag cache, no private-registry token. Coming in Phase 2 — see [`docs/product/cli-registry.md`](../docs/product/cli-registry.md).
|
|
449
|
+
|
|
434
450
|
## Authentication
|
|
435
451
|
|
|
436
452
|
voxflow uses browser-based email OTP login (Supabase):
|