@officexapp/vidfarm-devcli 0.21.53 → 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 +8 -1
- package/.agents/skills/vidfarm/harnesses/README.md +26 -0
- package/.agents/skills/vidfarm/harnesses/product-explainer.HARNESS.md +1 -1
- package/.agents/skills/vidfarm/harnesses/short-form.HARNESS.md +1 -1
- package/.agents/skills/vidfarm/recipes/bulk-scripting-with-a-harness.md +2 -1
- package/.agents/skills/vidfarm/references/automation-and-local-dev.md +3 -3
- package/.agents/skills/vidfarm/references/core-workflows.md +15 -0
- package/.agents/skills/vidfarm/references/editor-workflows.md +19 -13
- package/.agents/skills/vidfarm/references/reviewing-renders.md +1 -0
- package/SKILL.director.md +48 -18
- package/SKILL.md +6 -0
- package/clipper.md +4 -2
- package/dist/src/cli.js +33 -9
- package/dist/src/devcli/composition-edit.js +36 -3
- package/dist/src/devcli/harness.js +60 -15
- package/dist/src/devcli/qa-check.js +7 -3
- 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/sticker-slideshow-tips.md +1486 -0
- package/experimental/ugc-reaction-greenscreen.md +1963 -0
- package/experimental/unique-product-explainers.md +8 -0
- package/experimental/wall-text-pov-ugc.md +2036 -0
- package/marketplace.md +5 -0
- package/package.json +2 -1
- package/public/assets/homepage-client-app.js +14 -14
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": {
|
|
@@ -99,6 +99,7 @@
|
|
|
99
99
|
"build:serve-shells": "tsx scripts/build-serve-shells.ts",
|
|
100
100
|
"seo:refresh": "tsx scripts/generate-route-seo.ts",
|
|
101
101
|
"portfolio:share": "tsx scripts/render-portfolio-share.ts",
|
|
102
|
+
"fonts:specimens": "node scripts/render-font-specimens.mjs",
|
|
102
103
|
"operator:template-artifact": "node scripts/platform-operator-template-artifact.mjs",
|
|
103
104
|
"bootstrap:staging-templates": "tsx scripts/bootstrap-staging-template-releases.ts",
|
|
104
105
|
"migrate:sqlite-to-dynamodb": "tsx scripts/migrate-sqlite-to-dynamodb.ts",
|