@officexapp/vidfarm-devcli 0.21.54 → 0.21.55
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 -0
- package/.agents/skills/vidfarm/harnesses/README.md +26 -0
- package/.agents/skills/vidfarm/recipes/bulk-scripting-with-a-harness.md +2 -1
- package/.agents/skills/vidfarm/references/automation-and-local-dev.md +2 -2
- package/SKILL.director.md +7 -3
- package/SKILL.md +3 -0
- package/clipper.md +4 -2
- package/dist/src/cli.js +32 -8
- package/dist/src/devcli/harness.js +60 -15
- package/dist/src/devcli/skill-docs.js +2 -1
- package/experimental/animated-sticker-story.md +2252 -0
- package/experimental/google-news-to-video.md +9 -0
- package/experimental/unique-product-explainers.md +8 -0
- package/marketplace.md +5 -0
- package/package.json +1 -1
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: google-news-to-video
|
|
3
|
+
video_type: Timely newsjack — a recent real event turned into a short video. Two searches, never one: news-search finds the STORY, video/image-search finds the VISUALS
|
|
4
|
+
# No `checks:` block on purpose. This harness governs the SOURCING method, not one
|
|
5
|
+
# fixed cut, so the shape of the finished video is set by whichever format harness
|
|
6
|
+
# you build it in (short-form, wall-text-pov-ugc, …). Stack them: `--harness
|
|
7
|
+
# google-news-to-video --harness short-form`.
|
|
8
|
+
---
|
|
9
|
+
|
|
1
10
|
# Google News to Video — reusable prompt & method
|
|
2
11
|
|
|
3
12
|
Turns **a recent real event → a timely short video**, using two searches instead of one.
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: unique-product-explainers
|
|
3
|
+
video_type: Bulk product explainers — N customer URLs into N product-introduction videos that do not look like each other. Differentiation as an input, frame-level review, measured verification
|
|
4
|
+
# No `checks:` block on purpose. This harness governs a BATCH and its anti-convergence
|
|
5
|
+
# rules; the per-video shape comes from the format harness each variant is built in.
|
|
6
|
+
# Stack them: `--harness unique-product-explainers --harness product-explainer`.
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Unique Product Explainer Videos — reusable prompt & method
|
|
2
10
|
|
|
3
11
|
Turns **N customer URLs → N product-introduction videos that do not look like each other**,
|
package/marketplace.md
CHANGED
|
@@ -32,6 +32,8 @@ get paid to make videos for other people?"* Do not guess — guessing wrong cost
|
|
|
32
32
|
harnesses — the written apparatus that reproduces one format well — and the live index is
|
|
33
33
|
`https://vidfarm.cc/experimental`. A **buyer** names one in the brief; a **clipper** reads the task,
|
|
34
34
|
identifies the format, and follows the harness that matches it. Details in each side's harness file.
|
|
35
|
+
Every one of them also ships inside the CLI — `vidfarm harness list`, then `vidfarm harness show
|
|
36
|
+
<name>` — so a clipper with no network still reads the full contract by name.
|
|
35
37
|
|
|
36
38
|
## Get the key over REST (no copy-paste)
|
|
37
39
|
|
|
@@ -425,6 +427,9 @@ task is, then follows the matching format harness from the live index at
|
|
|
425
427
|
- a task tied to a recent real event → `https://vidfarm.cc/experimental/google-news-to-video.md`
|
|
426
428
|
- nothing in the index fits → a CLI base: `vidfarm harness list` (`short-form`, `hooks`,
|
|
427
429
|
`ugc-testimonial`, `explainer`, `product-demo`, `product-explainer`)
|
|
430
|
+
- **no network, or you would rather not fetch** → `vidfarm harness list` prints the index above as
|
|
431
|
+
its second shelf, and `vidfarm harness show <name>` prints the whole harness. Every format harness
|
|
432
|
+
ships inside the CLI package, under the same name as its URL slug. Same document, no fetch
|
|
428
433
|
- **no harness fits at all → freestyle it against the best practices in
|
|
429
434
|
`https://vidfarm.cc/skill.md`.** This is a normal, correct outcome, not a failure. Harnesses exist
|
|
430
435
|
to reproduce a *known* format reliably; a task outside every known format is still a task you can
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@officexapp/vidfarm-devcli",
|
|
3
|
-
"version": "0.21.
|
|
3
|
+
"version": "0.21.55",
|
|
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": {
|