@officexapp/vidfarm-devcli 0.21.56 → 0.21.58
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/.agents/skills/vidfarm/SKILL.md +26 -2
- package/.agents/skills/vidfarm/harnesses/README.md +1 -0
- package/.agents/skills/vidfarm/references/automation-and-local-dev.md +6 -1
- package/.agents/skills/vidfarm/references/reviewing-renders.md +11 -2
- package/SKILL.director.md +43 -5
- package/SKILL.md +5 -2
- package/dist/src/cli.js +96 -1
- package/dist/src/devcli/local-frontend-server.js +10 -2
- package/dist/src/devcli/local-render.js +28 -2
- package/dist/src/devcli/qa-check.js +27 -1
- package/dist/src/lib/engine-globals.js +138 -0
- package/dist/src/lib/frozen-render.js +130 -0
- package/dist/src/services/composition-lint.js +16 -0
- package/experimental/engaging-chat-convo.md +1370 -0
- package/package.json +7 -1
- package/update.md +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@officexapp/vidfarm-devcli",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.58",
|
|
4
4
|
"description": "Local bridge for the Vidfarm Trackpad Editor. `vidfarm serve <template_id>` boots the FULL editor on localhost (disk-backed records/storage, free in-process render); edit composition.html on disk (Claude Code, Codex, etc.) and the browser live-morphs it.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"test:clips": "node --import tsx --test test/clip-curation.test.ts",
|
|
114
114
|
"test:social-download": "node --import tsx --test test/video-download-media.test.ts test/social-download-lookup.test.ts",
|
|
115
115
|
"test:qa": "node --import tsx --test test/qa-check.test.ts",
|
|
116
|
+
"test:engine-globals": "node --import tsx --test test/engine-globals.test.ts",
|
|
116
117
|
"test:clipper-run": "node --import tsx --test test/clipper-run.test.ts",
|
|
117
118
|
"test:update-check": "node --import tsx --test test/update-check.test.ts",
|
|
118
119
|
"test:studio-brand": "node --import tsx --test test/studio-brand.test.ts",
|
|
@@ -173,6 +174,7 @@
|
|
|
173
174
|
"hono": "^4.8.3",
|
|
174
175
|
"hyperframes": "0.8.2",
|
|
175
176
|
"linkedom": "^0.18.12",
|
|
177
|
+
"puppeteer": "25.8.0",
|
|
176
178
|
"react": "^18.3.1",
|
|
177
179
|
"react-dom": "^18.3.1",
|
|
178
180
|
"sharp": "^0.34.5",
|
|
@@ -207,5 +209,9 @@
|
|
|
207
209
|
"directories": {
|
|
208
210
|
"doc": "docs",
|
|
209
211
|
"test": "test"
|
|
212
|
+
},
|
|
213
|
+
"overrides": {
|
|
214
|
+
"puppeteer": "25.8.0",
|
|
215
|
+
"puppeteer-core": "25.8.0"
|
|
210
216
|
}
|
|
211
217
|
}
|
package/update.md
CHANGED
|
@@ -103,6 +103,21 @@ latest. If nothing here mentions their version, a plain update is safe.
|
|
|
103
103
|
|
|
104
104
|
**Current published devcli: `0.21.23`.**
|
|
105
105
|
|
|
106
|
+
- **0.21.57 — a local render can now FAIL on a video that renders fine.** Two new gates close the
|
|
107
|
+
frozen-render hole (a composition that assigns `window.__player` or `window.__hf` destroys frame
|
|
108
|
+
capture; the renderer then exits 0 and writes a correct-length MP4 in which nothing moves):
|
|
109
|
+
|
|
110
|
+
1. `vidfarm render --target local` **refuses to start** when the composition assigns an
|
|
111
|
+
engine-owned global (`__player`, `__hf`, `__playerReady`, `__renderReady`, `__hyperframes`).
|
|
112
|
+
`vidfarm lint` and `vidfarm qa` report the same thing as an **error**.
|
|
113
|
+
2. Every local render ends with an automatic motion check and **exits 1** if the finished file
|
|
114
|
+
never moves. Pass `--allow-static` for a card that is meant to hold still.
|
|
115
|
+
|
|
116
|
+
A scripted batch that renders deliberately static cards needs `--allow-static` added, or it will
|
|
117
|
+
start failing. Everything else that was already correct is unaffected. New command:
|
|
118
|
+
`vidfarm motion-check <video.mp4>` — run it on cloud renders and watermarked masters too, which
|
|
119
|
+
have no gate of their own.
|
|
120
|
+
|
|
106
121
|
- **0.21.x — the package moved scopes.** The devcli is `@officexapp/vidfarm-devcli`. The old
|
|
107
122
|
`@mevdragon/vidfarm-devcli` is not maintained. If `npm ls -g` shows the `@mevdragon` package,
|
|
108
123
|
uninstall it explicitly, or two `vidfarm` binaries will fight over the same name on `PATH`:
|