@officexapp/vidfarm-devcli 0.21.58 → 0.21.60
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 +3 -3
- package/.agents/skills/vidfarm/recipes/retheme-template.md +6 -5
- package/.agents/skills/vidfarm/references/content-ideas.md +97 -14
- package/.agents/skills/vidfarm/references/core-workflows.md +4 -0
- package/.agents/skills/vidfarm/references/editor-workflows.md +25 -0
- package/SKILL.director.md +135 -22
- package/SKILL.md +9 -2
- package/clipper.md +7 -3
- package/dist/src/cli.js +201 -16
- package/dist/src/devcli/clipper-panel.js +1828 -0
- package/dist/src/devcli/clipper-run.js +643 -126
- package/dist/src/devcli/marketplace-gigs.js +307 -4
- package/dist/src/devcli/proof-verify.js +465 -0
- package/dist/src/devcli/skill-docs.js +14 -0
- package/experimental/flash-harness.md +142 -18
- package/experimental/meme-recaption.md +1044 -79
- package/experimental/sticker-slideshow-tips.md +511 -86
- package/marketplace.md +427 -12
- package/package.json +6 -1
- package/update.md +21 -1
package/update.md
CHANGED
|
@@ -103,7 +103,27 @@ 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.
|
|
106
|
+
- **0.21.59 — `vidfarm gigs submit` now refuses a proof the buyer could not open.** New command
|
|
107
|
+
`vidfarm gigs verify-proof --proof <url> [--clean-master <file>] [--private-note "<text>"]`, which
|
|
108
|
+
needs **no api key**: it fetches every proof url the way a stranger's browser would and exits
|
|
109
|
+
non-zero on a 403 bucket, a 404, an s3 `AccessDenied` body served as `video/mp4`, an **expiring
|
|
110
|
+
presigned url**, a `localhost`/Drive/Dropbox link, or a 0-byte file. It also checks the delivery is
|
|
111
|
+
split the right way — watermarked cut public in `proofs[]`, clean master sealed in `private_note`
|
|
112
|
+
— and that a `--clean-master` file exists on disk before anything uploads.
|
|
113
|
+
|
|
114
|
+
`gigs submit` runs the same check first, so **a submit that used to go out can now be refused**.
|
|
115
|
+
That is the point: the proof was never playable. Fix the upload and resubmit. A scripted loop that
|
|
116
|
+
must send anyway can pass `--skip-verify`. The proof/note split is a recommendation, not a rule:
|
|
117
|
+
submitting the unwatermarked final in `proofs` only warns, and `--clean-in-proof` acknowledges it.
|
|
118
|
+
`--strict` turns warnings into failures; `--json` gives `{ok, may_submit, failures, warnings}`.
|
|
119
|
+
|
|
120
|
+
- **0.21.57 is BROKEN — skip it, install 0.21.58 or later.** Upstream `puppeteer@25.9.0` pins
|
|
121
|
+
`puppeteer-core@25.9.0`, which is not on the registry, so a fresh `npm i -g` of 0.21.57 (and of
|
|
122
|
+
every earlier version) dies with `ETARGET notarget No matching version found for
|
|
123
|
+
puppeteer-core@25.9.0`. 0.21.58 pins `puppeteer` to 25.8.0 and installs cleanly. Existing installs
|
|
124
|
+
are unaffected. If you hit the error on an older version, install `@officexapp/vidfarm-devcli@latest`.
|
|
125
|
+
|
|
126
|
+
- **0.21.58 — a local render can now FAIL on a video that renders fine.** Two new gates close the
|
|
107
127
|
frozen-render hole (a composition that assigns `window.__player` or `window.__hf` destroys frame
|
|
108
128
|
capture; the renderer then exits 0 and writes a correct-length MP4 in which nothing moves):
|
|
109
129
|
|