@officexapp/vidfarm-devcli 0.21.42 → 0.21.45
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/editor-capabilities/SKILL.md +2 -0
- package/.agents/skills/vidfarm/SKILL.md +40 -14
- package/.agents/skills/vidfarm/recipes/onboard-a-new-director.md +9 -8
- package/.agents/skills/vidfarm/references/assets-and-sourcing.md +97 -1
- package/.agents/skills/vidfarm/references/automation-and-local-dev.md +12 -5
- package/.agents/skills/vidfarm/references/content-ideas.md +234 -10
- package/.agents/skills/vidfarm/references/core-workflows.md +11 -1
- package/.agents/skills/vidfarm/references/editor-workflows.md +17 -0
- package/.agents/skills/vidfarm/references/onboarding.md +63 -2
- package/.agents/skills/vidfarm/references/primitives.md +51 -0
- package/.agents/skills/vidfarm-media/SKILL.md +2 -0
- package/SKILL.director.md +534 -41
- package/SKILL.md +117 -113
- package/crowdsourcing.md +44 -1
- package/dist/src/cli.js +714 -30
- package/dist/src/devcli/consult.js +403 -0
- package/dist/src/devcli/skill-docs.js +61 -7
- package/dist/src/services/brainstorm-prompts.js +132 -0
- package/dist/src/services/clip-curation/index.js +1 -1
- package/dist/src/services/clip-curation/media-select.js +146 -3
- package/experimental/google-news-to-video.md +235 -0
- package/experimental/unique-product-explainers.md +855 -0
- package/package.json +10 -1
- package/public/assets/file-directory-app.js +28 -28
- package/public/assets/homepage-client-app.js +15 -15
- package/src/assets/SELLING_AWARENESS_STAGES.md +579 -0
- package/src/assets/SELLING_WITH_HOOKS.md +377 -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.45",
|
|
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": {
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"dist/src/devcli/clip-store.js",
|
|
16
16
|
"dist/src/devcli/clips.js",
|
|
17
17
|
"dist/src/devcli/composition-edit.js",
|
|
18
|
+
"dist/src/devcli/consult.js",
|
|
18
19
|
"dist/src/devcli/cost-mode.js",
|
|
19
20
|
"dist/src/devcli/dedupe-local.js",
|
|
20
21
|
"dist/src/devcli/doctor.js",
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"dist/src/devcli/transitions.js",
|
|
45
46
|
"dist/src/hyperframes/composition.js",
|
|
46
47
|
"dist/src/lib/**/*.js",
|
|
48
|
+
"dist/src/services/brainstorm-prompts.js",
|
|
47
49
|
"dist/src/services/captions.js",
|
|
48
50
|
"dist/src/services/composition-lint.js",
|
|
49
51
|
"dist/src/services/provider-errors.js",
|
|
@@ -63,10 +65,13 @@
|
|
|
63
65
|
"README.md",
|
|
64
66
|
"SKILL.md",
|
|
65
67
|
"SKILL.director.md",
|
|
68
|
+
"src/assets/SELLING_WITH_HOOKS.md",
|
|
69
|
+
"src/assets/SELLING_AWARENESS_STAGES.md",
|
|
66
70
|
"clipper.md",
|
|
67
71
|
"crowdsourcing.md",
|
|
68
72
|
"experiments.md",
|
|
69
73
|
"update.md",
|
|
74
|
+
"experimental/**/*.md",
|
|
70
75
|
"!readme.secret.md",
|
|
71
76
|
"!**/*.secret.*"
|
|
72
77
|
],
|
|
@@ -99,14 +104,18 @@
|
|
|
99
104
|
"start": "node --import ./dist/src/instrument.js --enable-source-maps dist/src/index.js",
|
|
100
105
|
"check": "tsc -p tsconfig.json --noEmit && npm run check:skills",
|
|
101
106
|
"test:clips": "node --import tsx --test test/clip-curation.test.ts",
|
|
107
|
+
"test:social-download": "node --import tsx --test test/video-download-media.test.ts test/social-download-lookup.test.ts",
|
|
102
108
|
"test:qa": "node --import tsx --test test/qa-check.test.ts",
|
|
103
109
|
"test:studio-brand": "node --import tsx --test test/studio-brand.test.ts",
|
|
104
110
|
"test:stickers": "node --import tsx --test test/sticker-pack.test.ts test/plate-key.test.ts",
|
|
105
111
|
"test:social-recycle": "node --import tsx --test test/social-recycle.test.ts",
|
|
106
112
|
"test:dedupe": "node --import tsx --test test/dedupe-recipe.test.ts",
|
|
107
113
|
"test:iconscout": "node --import tsx --test test/iconscout.test.ts",
|
|
114
|
+
"test:web-search": "node --import tsx --test test/web-search.test.ts",
|
|
108
115
|
"test:billing": "node --import tsx --test test/billing-wallet-cas.test.ts",
|
|
109
116
|
"test:skill-docs": "node --import tsx --test test/skill-docs.test.ts",
|
|
117
|
+
"test:consult": "node --import tsx --test test/consult.test.ts",
|
|
118
|
+
"test:social-meta": "node --import tsx --test test/social-meta.test.ts",
|
|
110
119
|
"check:skills": "node scripts/build-director-skill-rollup.mjs --check && node scripts/check-skill-routes.mjs && node scripts/check-skill-nav.mjs",
|
|
111
120
|
"benchmark:editor-chat": "node --import tsx scripts/benchmark-editor-chat-harness.mjs",
|
|
112
121
|
"cdk:deploy:prod-serverless": "npm run build && dotenv -e .env.production -- npx aws-cdk deploy --app 'node dist/infra/cdk/bin/vidfarm-prod.js'",
|