@mevdragon/vidfarm-devcli 0.8.0 → 0.9.0
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 +8 -0
- package/demo/dist/app.js +56 -28
- package/dist/src/app.js +147 -6
- package/dist/src/cli.js +331 -50
- package/dist/src/devcli/telemetry.js +236 -0
- package/dist/src/frontend/template-editor-chat.js +212 -0
- package/dist/src/services/hyperframes.js +22 -9
- package/package.json +1 -1
- package/public/assets/page-runtime-client-app.js +31 -31
package/README.md
CHANGED
|
@@ -51,3 +51,11 @@ Everything runs locally (`RECORDS_DRIVER=local`, `STORAGE_DRIVER=local`), includ
|
|
|
51
51
|
Flags: `--port` (default 3000), `--dir` (default `./.vidfarm-local`), `--key` (bootstrap/browser key, or `VIDFARM_API_KEY`), `--fork <id>`, `--no-open`. `vidfarm <template_id>` is an alias for `serve <template_id>`.
|
|
52
52
|
|
|
53
53
|
Beyond the local editor, the devcli also wraps the **entire director REST flow** as 1:1 commands — `discover`, `inspiration-add`, `fork`, `decompose`, `snapshot`, `render`, `approve`, `schedule`, `posts`, `upload`/`download`, plus a raw `vidfarm api <METHOD> <path>` passthrough. Each maps to exactly one REST route and prints the prod frontend URL to open. Run `vidfarm --help` for the full surface, or see `SKILL.director.md` § "`vidfarm-devcli` — full command surface".
|
|
54
|
+
|
|
55
|
+
### Crash telemetry & opt-out
|
|
56
|
+
|
|
57
|
+
The devcli can report **unexpected crashes** (bugs — not bad args, HTTP 4xx, or network blips) to Sentry so they can be fixed. It is **off unless a dedicated CLI Sentry DSN is configured** (`VIDFARM_DEVCLI_SENTRY_DSN`), reports crash-only, and **scrubs home-dir paths, API keys, and secrets** before anything leaves your machine (PII off). To opt out entirely:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
export VIDFARM_TELEMETRY=off # or DO_NOT_TRACK=1
|
|
61
|
+
```
|