@mevdragon/vidfarm-devcli 0.2.8 → 0.2.9
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/.env.example +9 -0
- package/GETTING_STARTED.developers.md +1 -26
- package/README.md +3 -0
- package/SKILL.developer.md +327 -4
- package/auto-create-templates/AUTO_CREATE_TEMPLATES.md +475 -0
- package/auto-create-templates/extractor-system-prompt.md +113 -0
- package/auto-create-templates/production-graph.schema.json +276 -0
- package/auto-create-templates/runbook.md +140 -0
- package/auto-create-templates/template-plan.schema.json +230 -0
- package/auto-create-templates/template-planner-prompt.md +75 -0
- package/dist/src/account-pages-legacy.js +9064 -0
- package/dist/src/account-pages.js +41 -620
- package/dist/src/app.js +6627 -244
- package/dist/src/cli.js +386 -26
- package/dist/src/config.js +12 -2
- package/dist/src/context.js +35 -35
- package/dist/src/db.js +1016 -53
- package/dist/src/dev-app-legacy.js +693 -0
- package/dist/src/dev-app.js +4 -904
- package/dist/src/domain.js +1 -1
- package/dist/src/editor-chat-history.js +72 -0
- package/dist/src/editor-chat.js +202 -0
- package/dist/src/frontend/flockposter-cache-store.js +116 -0
- package/dist/src/frontend/homepage-client.js +114 -0
- package/dist/src/frontend/homepage-shared.js +3 -0
- package/dist/src/frontend/homepage-store.js +27 -0
- package/dist/src/frontend/homepage-view.js +147 -0
- package/dist/src/frontend/page-runtime-client.js +100 -0
- package/dist/src/frontend/page-runtime-store.js +8 -0
- package/dist/src/frontend/template-editor-chat.js +2261 -0
- package/dist/src/homepage.js +695 -371
- package/dist/src/lib/template-style-options.js +95 -15
- package/dist/src/page-runtime.js +1 -0
- package/dist/src/page-shell.js +941 -0
- package/dist/src/primitive-context.js +163 -0
- package/dist/src/primitive-registry.js +340 -0
- package/dist/src/primitive-sdk.js +3 -0
- package/dist/src/primitives/remotion/html-image.js +28 -0
- package/dist/src/react-page-shell.js +34 -0
- package/dist/src/ready-post-schedule-component.js +1514 -0
- package/dist/src/registry.js +36 -17
- package/dist/src/runtime.js +6 -1
- package/dist/src/services/api-call-history.js +245 -0
- package/dist/src/services/auth.js +25 -3
- package/dist/src/services/billing.js +248 -9
- package/dist/src/services/chat-threads.js +88 -0
- package/dist/src/services/job-logs.js +14 -7
- package/dist/src/services/jobs.js +13 -2
- package/dist/src/services/providers.js +552 -133
- package/dist/src/services/rate-limits.js +236 -0
- package/dist/src/services/remotion.js +143 -16
- package/dist/src/services/storage.js +10 -8
- package/dist/src/services/template-certification.js +11 -2
- package/dist/src/services/template-loader.js +3 -1
- package/dist/src/services/template-sources.js +68 -3
- package/dist/src/template-editor-pages.js +2309 -0
- package/dist/src/template-editor-shell.js +1507 -0
- package/dist/src/worker.js +120 -22
- package/package.json +27 -4
- package/public/assets/homepage-app.js +54 -0
- package/public/assets/homepage-client-app.js +54 -0
- package/public/assets/page-runtime-client-app.js +68 -0
- package/dist/templates/vidfarm_template_0000/src/lib/images.js +0 -202
- package/dist/templates/vidfarm_template_0000/src/remotion/Root.js +0 -34
- package/dist/templates/vidfarm_template_0000/src/remotion/index.js +0 -3
- package/dist/templates/vidfarm_template_0000/src/sdk.js +0 -3
- package/dist/templates/vidfarm_template_0000/src/style-options.js +0 -51
- package/dist/templates/vidfarm_template_0000/src/template-dna.js +0 -9
- package/dist/templates/vidfarm_template_0000/src/template.js +0 -1447
- package/templates/vidfarm_template_0000/README.md +0 -100
- package/templates/vidfarm_template_0000/SKILL.md +0 -225
- package/templates/vidfarm_template_0000/assets/Abel-Regular.ttf +0 -0
- package/templates/vidfarm_template_0000/assets/DMSerifDisplay-Regular.ttf +0 -0
- package/templates/vidfarm_template_0000/assets/Montserrat[wght].ttf +0 -0
- package/templates/vidfarm_template_0000/assets/SourceCodePro[wght].ttf +0 -0
- package/templates/vidfarm_template_0000/assets/TikTokSans-SemiBold.ttf +0 -0
- package/templates/vidfarm_template_0000/assets/Yesteryear-Regular.ttf +0 -0
- package/templates/vidfarm_template_0000/composition.json +0 -11
- package/templates/vidfarm_template_0000/package.json +0 -27
- package/templates/vidfarm_template_0000/research/preview/.gitkeep +0 -1
- package/templates/vidfarm_template_0000/research/source_notes.md +0 -7
- package/templates/vidfarm_template_0000/src/lib/images.js +0 -202
- package/templates/vidfarm_template_0000/src/lib/images.ts +0 -241
- package/templates/vidfarm_template_0000/src/remotion/Root.js +0 -33
- package/templates/vidfarm_template_0000/src/remotion/Root.tsx +0 -75
- package/templates/vidfarm_template_0000/src/remotion/index.js +0 -3
- package/templates/vidfarm_template_0000/src/remotion/index.tsx +0 -4
- package/templates/vidfarm_template_0000/src/sdk.js +0 -3
- package/templates/vidfarm_template_0000/src/sdk.ts +0 -140
- package/templates/vidfarm_template_0000/src/style-options.js +0 -51
- package/templates/vidfarm_template_0000/src/style-options.ts +0 -60
- package/templates/vidfarm_template_0000/src/template-dna.js +0 -9
- package/templates/vidfarm_template_0000/src/template-dna.ts +0 -15
- package/templates/vidfarm_template_0000/src/template.js +0 -1447
- package/templates/vidfarm_template_0000/src/template.ts +0 -2049
- package/templates/vidfarm_template_0000/template.config.json +0 -21
- package/templates/vidfarm_template_0000/tmp/solobacterium-moorei-slideshow.request.json +0 -31
- package/templates/vidfarm_template_0000/tsconfig.json +0 -19
package/.env.example
CHANGED
|
@@ -6,10 +6,19 @@ OPENROUTER_API_KEY=""
|
|
|
6
6
|
GEMINI_API_KEY=""
|
|
7
7
|
PERPLEXITY_API_KEY=""
|
|
8
8
|
|
|
9
|
+
# Optional. Production CDK wires these automatically for the EC2 app and ZIP Lambda.
|
|
10
|
+
VIDFARM_ZIP_LAMBDA_URL=""
|
|
11
|
+
VIDFARM_ZIP_LAMBDA_SECRET=""
|
|
12
|
+
VIDFARM_BILLING_URL=""
|
|
13
|
+
VIDFARM_BILLING_SECRET=""
|
|
14
|
+
VIDFARM_RATE_LIMITS_TABLE_NAME=""
|
|
15
|
+
|
|
9
16
|
# Optional when calling a hosted Vidfarm API directly.
|
|
10
17
|
VIDFARM_USER_ID=""
|
|
11
18
|
VIDFARM_API_KEY=""
|
|
12
19
|
|
|
13
20
|
# Optional local overrides. The CLI will choose sensible local defaults.
|
|
14
21
|
PUBLIC_BASE_URL="http://localhost:3310"
|
|
22
|
+
# Optional public browser-facing chat endpoint. Leave empty locally unless you want the UI to hit a separate chat host directly.
|
|
23
|
+
PUBLIC_EDITOR_CHAT_URL=""
|
|
15
24
|
REMOTION_MODE="local"
|
|
@@ -46,7 +46,7 @@ https://calendly.com/zoom-gtm/creative-director-interviews
|
|
|
46
46
|
|
|
47
47
|
0. Tell your manager your email so he can whitelist you access to Vidfarm. After he confirms you have access, login at https://vidfarm.cloud.zoomgtm.com
|
|
48
48
|
|
|
49
|
-
1. Open VSCode in a new project
|
|
49
|
+
1. Open VSCode in a new project and create a new project folder "Vidfarm-Developer"
|
|
50
50
|
|
|
51
51
|
2. Open terminal and login to github cli and npm cli (ask ai/codex if you need help). ask your manager if they gave you npm access to "vidfarm-devcli" yet.
|
|
52
52
|
|
|
@@ -85,28 +85,3 @@ That will populate with a reference folder of what a template code looks like. W
|
|
|
85
85
|
8. Create a new folder beside src called `drafts/` which is where we will put messy files when needed.
|
|
86
86
|
|
|
87
87
|
9. Now find an easy winning format from https://winning-formats-gallery-tiktok.cloud.zoomgtm.com/ and save the image to your drafts/ folder. then tell Codex to look at that image (right click, copy relative path, paste to codex), then tell codex please make a new template based on the image.
|
|
88
|
-
|
|
89
|
-
## Shipping Updates
|
|
90
|
-
|
|
91
|
-
For a brand-new template, register the source once.
|
|
92
|
-
|
|
93
|
-
For an update to an already-registered template:
|
|
94
|
-
|
|
95
|
-
1. Push the exact commit to GitHub.
|
|
96
|
-
2. Submit that exact commit SHA to Vidfarm for review.
|
|
97
|
-
3. Wait for platform admin approval and activation.
|
|
98
|
-
|
|
99
|
-
Developer CLI example:
|
|
100
|
-
|
|
101
|
-
```bash
|
|
102
|
-
node dist/src/cli.js publish-update-hosted \
|
|
103
|
-
--env-file .env \
|
|
104
|
-
--template-id YOUR_TEMPLATE_ID \
|
|
105
|
-
--slug-id vidfarm_template_your_slug \
|
|
106
|
-
--repo-url https://github.com/your-org/your-repo.git \
|
|
107
|
-
--branch main \
|
|
108
|
-
--template-module-path src/vidfarm_template_your_slug/src/template.ts \
|
|
109
|
-
--commit-sha YOUR_GITHUB_COMMIT_SHA
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
This does not make the template live. The CLI packages that exact commit locally, uploads the artifact to Vidfarm-managed S3, and creates or refreshes the reviewable release so a platform admin can approve and activate it.
|
package/README.md
CHANGED
|
@@ -30,6 +30,7 @@ npx @mevdragon/vidfarm-devcli dev --port 3310 --reset
|
|
|
30
30
|
npx @mevdragon/vidfarm-devcli session
|
|
31
31
|
npx @mevdragon/vidfarm-devcli validate-template --template-id template_0000
|
|
32
32
|
npx @mevdragon/vidfarm-devcli copy-reference-template --template-dir ./src/vidfarm_template_0000
|
|
33
|
+
npx @mevdragon/vidfarm-devcli autocreate-template ./drafts/my_format ./templates/vidfarm_template_my_format
|
|
33
34
|
npx @mevdragon/vidfarm-devcli generate-template --slug-id template_0001 --template-dir ./templates/vidfarm_template_0001
|
|
34
35
|
npx @mevdragon/vidfarm-devcli analyze-viral-dna --template-dir ./templates/vidfarm_template_0001
|
|
35
36
|
npx @mevdragon/vidfarm-devcli analyze-visual-dna --template-dir ./templates/vidfarm_template_0001
|
|
@@ -38,6 +39,8 @@ npx @mevdragon/vidfarm-devcli presign-preview-media --file ./drafts/preview/exam
|
|
|
38
39
|
|
|
39
40
|
After install, the package exposes both `vidfarm` and `vidfarm-devcli` as local binaries.
|
|
40
41
|
|
|
42
|
+
`autocreate-template` prepares the auto-create harness run folder, stages media from the input path, snapshots the current harness files, scaffolds the output template, and writes an agent handoff prompt at `auto-create-templates/runs/<run_id>/agent_prompt.md`. Keep improving `auto-create-templates/AUTO_CREATE_TEMPLATES.md`; each new run uses the current harness and stores a per-run snapshot for traceability.
|
|
43
|
+
|
|
41
44
|
## What The Local CLI Does
|
|
42
45
|
|
|
43
46
|
The local CLI runs the same template contract used by the hosted platform, but with local-first defaults:
|
package/SKILL.developer.md
CHANGED
|
@@ -26,10 +26,51 @@ Do not use this skill for:
|
|
|
26
26
|
- production deploys, release admin, or shared cloud infrastructure
|
|
27
27
|
- asking for AWS, S3, Remotion cloud, or other platform secrets
|
|
28
28
|
|
|
29
|
+
## Hosted Remotion Cost Reporting
|
|
30
|
+
|
|
31
|
+
When a template runs a hosted Remotion Lambda render, template code should report the base render cost back to platform billing.
|
|
32
|
+
|
|
33
|
+
Use the template job context billing helper:
|
|
34
|
+
|
|
35
|
+
```ts
|
|
36
|
+
await ctx.billing.record({
|
|
37
|
+
type: "render",
|
|
38
|
+
costUsd: 0.35,
|
|
39
|
+
costCenterSlug: "remotion_lambda",
|
|
40
|
+
idempotencyKey: `remotion_lambda:${render.renderId}`,
|
|
41
|
+
occurredAtMs: Date.now(),
|
|
42
|
+
metadata: {
|
|
43
|
+
render_id: render.renderId,
|
|
44
|
+
...render.metadata
|
|
45
|
+
}
|
|
46
|
+
});
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Rules:
|
|
50
|
+
|
|
51
|
+
- only report the raw base Remotion cost in `costUsd`
|
|
52
|
+
- always use `costCenterSlug: "remotion_lambda"` for hosted Remotion Lambda usage
|
|
53
|
+
- always provide a stable `idempotencyKey`, typically derived from `render.renderId`
|
|
54
|
+
- include useful diagnostics in `metadata`, such as `render_id`, composition ID, mode, and output details
|
|
55
|
+
- do not compute customer wallet debits in template code
|
|
56
|
+
- do not set platform pricing policy in template code
|
|
57
|
+
|
|
58
|
+
The platform billing service applies wallet mutations and pricing centrally. The default customer charge currently uses an approximately `20%` safety-buffer markup over reported base cost.
|
|
59
|
+
|
|
60
|
+
Job-status billing response fields are also platform-managed. Template developers do not need to shape the API response; they only need to keep reporting real usage through existing helpers where applicable. The customer-facing job response exposes `billing.consumed_usd` and does not expose internal `base_cost_usd`.
|
|
61
|
+
|
|
29
62
|
## Third-Party Publish Rule
|
|
30
63
|
|
|
31
64
|
Third-party template developers publish template code by pushing git commits to GitHub. That is the only code-distribution step they own.
|
|
32
65
|
|
|
66
|
+
Default hosted update rule:
|
|
67
|
+
|
|
68
|
+
- for an already-registered template, the default hosted handoff is `publish-update-hosted --commit-sha <sha>`
|
|
69
|
+
- do not default to prod-side branch-head import for normal template updates
|
|
70
|
+
- if the source repo is private, treat artifact publish as the normal path, not as a fallback
|
|
71
|
+
- if `gh` is available, prefer an authenticated local clone such as `gh repo clone <owner>/<repo>` before publishing a hosted update
|
|
72
|
+
- checked-in `about/preview-*` files only become live hosted preview media after platform import and activation sync them into `templates/:template_id/about/*`
|
|
73
|
+
|
|
33
74
|
Important nuance:
|
|
34
75
|
|
|
35
76
|
- GitHub is relevant for the hosted handoff, not for normal local template authoring
|
|
@@ -44,6 +85,25 @@ The third-party developer responsibility is:
|
|
|
44
85
|
- for an already-registered template update, publish the exact GitHub commit SHA with `publish-update-hosted`
|
|
45
86
|
- stop there and hand off to the platform team
|
|
46
87
|
|
|
88
|
+
Preferred private-repo publish pattern:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
gh repo clone mevdragon/vidfarm_templates ./vidfarm_templates
|
|
92
|
+
git -C ./vidfarm_templates rev-parse HEAD
|
|
93
|
+
node dist/src/cli.js publish-update-hosted \
|
|
94
|
+
--env-file .env \
|
|
95
|
+
--repo-dir ./vidfarm_templates \
|
|
96
|
+
--template-id <template-id> \
|
|
97
|
+
--slug-id <template-slug> \
|
|
98
|
+
--repo-url https://github.com/mevdragon/vidfarm_templates.git \
|
|
99
|
+
--branch main \
|
|
100
|
+
--template-module-path src/<template-folder>/src/template.ts \
|
|
101
|
+
--skill-path src/<template-folder>/SKILL.md \
|
|
102
|
+
--install-command "npm install --prefix src/<template-folder>" \
|
|
103
|
+
--build-command "npm run build --prefix src/<template-folder>" \
|
|
104
|
+
--commit-sha <exact-github-commit>
|
|
105
|
+
```
|
|
106
|
+
|
|
47
107
|
The third-party developer should not:
|
|
48
108
|
|
|
49
109
|
- run `import-source-prod`
|
|
@@ -55,12 +115,30 @@ The third-party developer should not:
|
|
|
55
115
|
|
|
56
116
|
Private repo rule:
|
|
57
117
|
|
|
118
|
+
- if the registered source repo is private, do not treat prod-side `git ls-remote` or raw GitHub import as the primary publish mechanism
|
|
119
|
+
- for private repos, the reliable default is: authenticated local clone -> `publish-update-hosted --commit-sha ...` -> platform review -> admin approve/activate
|
|
58
120
|
- if the registered source repo is private, assume the intended hosted setup is that Vidfarm has already been granted access to it
|
|
59
121
|
- when repo sharing is needed, the repo should be shared with GitHub username `mevdragon`
|
|
60
122
|
- do not treat a private repo itself as a problem if that access assumption is already stated
|
|
61
123
|
|
|
62
124
|
For third-party developers, Remotion is local and storage should be accessed through Vidfarm helpers. Do not require cloud Remotion setup or hand-written S3 integration for normal template work.
|
|
63
125
|
|
|
126
|
+
## Media Storage Boundary
|
|
127
|
+
|
|
128
|
+
Template job results must keep binary media out of JSON. If a workflow produces, fetches, or accepts image/audio/video bytes, write those bytes through `ctx.storage.putBuffer(...)` and put the returned URL in the job output, manifest, and render inputs.
|
|
129
|
+
|
|
130
|
+
Rules:
|
|
131
|
+
|
|
132
|
+
- use `ctx.storage.putBuffer(...)`, `ctx.storage.putJson(...)`, and `ctx.storage.putText(...)` for artifacts
|
|
133
|
+
- return artifact URLs in fields like `imageUrl`, `thumbnailUrl`, `audioUrl`, `videoUrl`, `files`, `manifest`, and render input objects
|
|
134
|
+
- do not persist `data:image/...;base64,...`, raw base64 strings, Buffers, or large inline SVG/image strings in `result.output`
|
|
135
|
+
- accepting a `data:image/*` input is allowed, but decode it and store it as an artifact before including it in any durable output
|
|
136
|
+
- generated provider media should be stored immediately; never use `Buffer.from(bytes).toString("base64")` as a durable result value
|
|
137
|
+
- Remotion render props may reference artifact URLs; use short-lived inline data only inside a private render helper if it is not returned, logged, or written to a manifest
|
|
138
|
+
- keep manifests lightweight enough to inspect in job history and webhooks; they should describe artifacts by URL, not embed artifact bytes
|
|
139
|
+
|
|
140
|
+
This boundary matters because job results are saved in SQLite, returned by REST APIs, included in webhooks, and surfaced in editor history. Embedding base64 media can turn one small job result into multi-megabyte JSON and break UI history views.
|
|
141
|
+
|
|
64
142
|
## Agent Operating Rule
|
|
65
143
|
|
|
66
144
|
If the user gives you a media file, a screenshot, a folder of source assets, or a link to an original viral post and says some variant of "turn this into a template", you should default to this workflow:
|
|
@@ -164,6 +242,8 @@ For a third-party developer, the hosted publish handoff is:
|
|
|
164
242
|
3. if the template is already registered and the location did not change, publish the exact GitHub commit SHA with `publish-update-hosted`; that command uploads a signed artifact for that commit
|
|
165
243
|
4. stop there, then tell the platform operator which commit was submitted if they ask
|
|
166
244
|
|
|
245
|
+
If the repo is private or prod-side GitHub access is uncertain, use the exact same `publish-update-hosted` flow anyway. It packages the commit locally and avoids relying on hosted `git ls-remote` or hosted branch-head import as the update path.
|
|
246
|
+
|
|
167
247
|
Registration data should be treated like this:
|
|
168
248
|
|
|
169
249
|
- `repo_url`: the GitHub repo that contains the template code
|
|
@@ -191,6 +271,7 @@ When reasoning about hosted visibility:
|
|
|
191
271
|
- the required developer-side outcome is that the intended commit is pushed to the registered branch
|
|
192
272
|
- do not infer hosted GitHub access failure from a local CLI auth error
|
|
193
273
|
- for hosted template updates, the review artifact is uploaded from the developer machine and prod later imports it from S3, so server-side GitHub access is not part of the normal publish path
|
|
274
|
+
- if prod-side import fails on `git ls-remote`, GitHub username/password prompts, or private-repo access, the correct fix is usually to publish the exact commit as an artifact from a locally authenticated checkout, not to keep retrying branch-head import
|
|
194
275
|
|
|
195
276
|
If a developer can register a source but receives `403 Admin access required` when trying to import or activate it, that is the expected boundary, not a blocker they are supposed to solve. It means the handoff point was reached correctly.
|
|
196
277
|
|
|
@@ -206,6 +287,12 @@ If the user explicitly says "template deploy cycle", interpret that as the inter
|
|
|
206
287
|
2. approve and activate the new release
|
|
207
288
|
3. run the prod deploy script if platform code changed, or reuse the current prod image for a formal restart if the change was template-only
|
|
208
289
|
|
|
290
|
+
Operator preference rule:
|
|
291
|
+
|
|
292
|
+
- if a pending artifact-backed release already exists for the intended commit, prefer approving and activating that release instead of asking prod to resolve branch head from GitHub
|
|
293
|
+
- activation is the step that syncs checked-in template `about/` preview assets into hosted storage under `templates/:template_id/about/*`
|
|
294
|
+
- if a hosted template exists in the catalog but its preview media redirects to missing S3 keys, re-activating the intended release on a platform build that contains the sync logic is the correct fix
|
|
295
|
+
|
|
209
296
|
Do not assume "template deploy cycle" means "deploy the entire dirty root repo". If the root worktree has unrelated changes and the release is template-only, prefer reusing the current prod image with:
|
|
210
297
|
|
|
211
298
|
```bash
|
|
@@ -237,6 +324,7 @@ The contract is:
|
|
|
237
324
|
- `configSchema` defines editable per-user template config
|
|
238
325
|
- `about.viral_dna` and `about.visual_dna` explain why the format wins
|
|
239
326
|
- `about.proposal_generator` tells directors and agents how to turn product/about context into template-native post ideas
|
|
327
|
+
- `about.skeleton_prompt` gives directors and agents a fill-in-the-blanks prompt scaffold for the template
|
|
240
328
|
- `about.sample_prompts` shows future users and agents how to prompt the template well
|
|
241
329
|
- `SKILL.md` teaches humans and agents how to call the template correctly
|
|
242
330
|
- the canonical template entrypoint is `src/template.ts`
|
|
@@ -251,6 +339,17 @@ The platform-owned helper surface on `ctx.providers` currently includes:
|
|
|
251
339
|
|
|
252
340
|
Every public template action should remain async and job-based. Prefer one or more named operations behind `POST /api/v1/templates/:templateId/operations/:operationName` instead of inventing custom synchronous endpoints.
|
|
253
341
|
|
|
342
|
+
Keep operation design reasonably coarse-grained. These routes are customer-facing, usage-limited API calls, so avoid exploding one user action into a large number of tiny operations unless the workflow genuinely needs that split.
|
|
343
|
+
|
|
344
|
+
Vidfarm already has native queueing for template jobs. When a task needs multiple runs, do not invent a custom batch manager, worker pool, queue coordinator, or other fancy orchestration layer in the template or in temporary validation code. The default pattern is:
|
|
345
|
+
|
|
346
|
+
- submit jobs in a reasonable loop
|
|
347
|
+
- record the returned job IDs
|
|
348
|
+
- poll those jobs through the standard job endpoints
|
|
349
|
+
- if completion will take a while, tell the user to check back later instead of overengineering lifecycle control
|
|
350
|
+
|
|
351
|
+
Use extra job-management code only when the user explicitly asks for it and there is a concrete platform requirement that the built-in queue cannot satisfy.
|
|
352
|
+
|
|
254
353
|
Templates are expected to evolve through multiple revisions. One-shot generation is not the standard. The standard is:
|
|
255
354
|
|
|
256
355
|
- create a working first pass
|
|
@@ -297,6 +396,42 @@ const TEMPLATE_PROVIDER_REQUIREMENTS = {
|
|
|
297
396
|
} as const;
|
|
298
397
|
```
|
|
299
398
|
|
|
399
|
+
Recommended baseline model set, matching the current repo examples unless a template has a specific reason to differ:
|
|
400
|
+
|
|
401
|
+
```ts
|
|
402
|
+
const TEMPLATE_PROVIDER_RECOMMENDATIONS = {
|
|
403
|
+
text: {
|
|
404
|
+
openai: "gpt-5.4",
|
|
405
|
+
gemini: "gemini-3.1-flash-lite",
|
|
406
|
+
openrouter: "qwen/qwen3.6-flash"
|
|
407
|
+
},
|
|
408
|
+
layout_analysis: {
|
|
409
|
+
openai: "gpt-5.4",
|
|
410
|
+
gemini: "gemini-3.1-flash-lite",
|
|
411
|
+
openrouter: "qwen/qwen3.6-flash"
|
|
412
|
+
},
|
|
413
|
+
image: {
|
|
414
|
+
openai: "gpt-image-1",
|
|
415
|
+
gemini: "gemini-3.1-flash-image-preview",
|
|
416
|
+
openrouter: "google/gemini-3.1-flash-image-preview"
|
|
417
|
+
},
|
|
418
|
+
video: {
|
|
419
|
+
openai: "sora-2",
|
|
420
|
+
gemini: "veo-3.0-generate-001"
|
|
421
|
+
},
|
|
422
|
+
tts: {
|
|
423
|
+
openai: "gpt-4o-mini-tts-2025-12-15",
|
|
424
|
+
gemini: "gemini-3.1-flash-tts-preview",
|
|
425
|
+
openrouter: "google/gemini-3.1-flash-tts-preview"
|
|
426
|
+
},
|
|
427
|
+
stt: {
|
|
428
|
+
openai: "gpt-4o-mini-transcribe-2025-12-15",
|
|
429
|
+
gemini: "gemini-3.1-flash-lite-preview",
|
|
430
|
+
openrouter: "openai/gpt-4o-mini-transcribe"
|
|
431
|
+
}
|
|
432
|
+
} as const;
|
|
433
|
+
```
|
|
434
|
+
|
|
300
435
|
Important:
|
|
301
436
|
|
|
302
437
|
- this is documentation for humans and agents, not a framework-consumed schema field
|
|
@@ -332,7 +467,9 @@ npx @mevdragon/vidfarm-devcli presign-preview-media \
|
|
|
332
467
|
--directory drafts/preview
|
|
333
468
|
```
|
|
334
469
|
|
|
335
|
-
That command calls the hosted Vidfarm API with the user's `VIDFARM_API_KEY`, mints a presigned PUT URL scoped under `developer/<user_id>/*`, stores each uploaded file under a UUID path segment while preserving the original filename, uploads the file automatically when `--file` is provided, and returns both the `storage_key` and a public-read `preview_media_url`. Public readability for `developer/<user_id>/*` comes from Vidfarm bucket policy, not from public write access, so objects may be read directly by URL but should not be treated as listable or writable without authenticated API access. Agents should prefer that path for hosted preview uploads whenever the input is a local media file path.
|
|
470
|
+
That command calls the hosted Vidfarm API with the user's `VIDFARM_API_KEY`, mints a presigned PUT URL scoped under `developer/<user_id>/*`, stores each uploaded file under a UUID path segment while preserving the original filename, uploads the file automatically when `--file` is provided, and returns both the `storage_key` and a public-read `preview_media_url`. Public readability for `developer/<user_id>/*` comes from Vidfarm bucket policy, not from public write access, so objects may be read directly by URL but should not be treated as listable or writable without authenticated API access. Agents should prefer that path for hosted preview uploads whenever the input is a local media file path, and should paste the returned absolute `preview_media_url` directly into `about.preview_media` when the template needs to work immediately in the hosted catalog.
|
|
471
|
+
|
|
472
|
+
Do not assume a checked-in repo asset like `about/preview-01.png` already exists at `templates/:template_id/about/*` in hosted S3. That stable template namespace is populated by the platform import and activation flow, not by the developer presign command. Before admin import/activation, the immediately valid hosted preview URL is the returned `developer/<user_id>/*` public URL.
|
|
336
473
|
|
|
337
474
|
### 2. Start local runtime
|
|
338
475
|
|
|
@@ -418,7 +555,7 @@ These commands:
|
|
|
418
555
|
- sync the generated DNA module back into the template
|
|
419
556
|
- populate the strings consumed by `about.viral_dna`, `about.visual_dna`, and `about.link_to_original`
|
|
420
557
|
|
|
421
|
-
After DNA analysis, add `about.proposal_generator` and `about.sample_prompts` manually. The standard now requires
|
|
558
|
+
After DNA analysis, add `about.proposal_generator`, `about.skeleton_prompt`, and `about.sample_prompts` manually. The standard now requires all three. `proposal_generator` should help a director combine product/about information with the template's format to invent many post proposals. `skeleton_prompt` should provide the default fill-in-the-blanks structure a director can instantiate quickly. `sample_prompts` should show what strong final prompts look like. Do not leave any of them as optional polish.
|
|
422
559
|
|
|
423
560
|
Required-field rule:
|
|
424
561
|
|
|
@@ -445,6 +582,7 @@ For a new template, make sure it has:
|
|
|
445
582
|
- `about.preview_media`
|
|
446
583
|
- `about.link_to_original`
|
|
447
584
|
- `about.proposal_generator` with a reusable instruction for proposal generation
|
|
585
|
+
- `about.skeleton_prompt` with a reusable fill-in-the-blanks prompt scaffold
|
|
448
586
|
- `about.sample_prompts` with multiple concrete examples
|
|
449
587
|
- `configSchema`
|
|
450
588
|
- `operations`
|
|
@@ -469,6 +607,7 @@ The platform route shape is fixed. A template should work behind:
|
|
|
469
607
|
|
|
470
608
|
- `GET /api/v1/templates/:templateId`
|
|
471
609
|
- `GET /api/v1/templates/:templateId/skill`
|
|
610
|
+
- `GET /api/v1/rate-limit-status`
|
|
472
611
|
- `POST /api/v1/templates/:templateId/config`
|
|
473
612
|
- `POST /api/v1/templates/:templateId/operations/:operationName`
|
|
474
613
|
- `GET /api/v1/templates/:templateId/jobs/:jobId`
|
|
@@ -477,6 +616,65 @@ The platform route shape is fixed. A template should work behind:
|
|
|
477
616
|
|
|
478
617
|
Do not invent one-off REST endpoints for template behavior that already fits an operation workflow.
|
|
479
618
|
|
|
619
|
+
Template-local docs do not need to restate platform plan names or operation quota numbers unless a template adds stricter limits of its own.
|
|
620
|
+
|
|
621
|
+
Every template-local `SKILL.md` must also include TypeScript route templates for those routes. Treat this as part of the template standard, not optional documentation. The type block must name the concrete template slug, list every operation as a string-literal union, define each operation payload, and show the standard wrapper bodies.
|
|
622
|
+
|
|
623
|
+
Minimum block to adapt per template:
|
|
624
|
+
|
|
625
|
+
```ts
|
|
626
|
+
type TemplateSlug = "vidfarm_template_example";
|
|
627
|
+
type TemplateOperation = "create_asset" | "render_video";
|
|
628
|
+
|
|
629
|
+
type TemplateConfigRequest = {
|
|
630
|
+
config: {
|
|
631
|
+
defaultProvider?: "openai" | "gemini" | "openrouter" | "perplexity";
|
|
632
|
+
[key: string]: unknown;
|
|
633
|
+
};
|
|
634
|
+
};
|
|
635
|
+
|
|
636
|
+
type SubmitTemplateOperation<TPayload> = {
|
|
637
|
+
tracer?: string;
|
|
638
|
+
payload: TPayload;
|
|
639
|
+
webhook_url?: string;
|
|
640
|
+
};
|
|
641
|
+
|
|
642
|
+
type QueuedJobResponse = {
|
|
643
|
+
job_id: string;
|
|
644
|
+
tracer?: string;
|
|
645
|
+
status: "queued";
|
|
646
|
+
};
|
|
647
|
+
|
|
648
|
+
type JobStatusResponse<TOutput = unknown> = {
|
|
649
|
+
job_id: string;
|
|
650
|
+
template_id: TemplateSlug;
|
|
651
|
+
operation_name: TemplateOperation;
|
|
652
|
+
tracer?: string;
|
|
653
|
+
status: "queued" | "running" | "succeeded" | "failed" | "cancelled";
|
|
654
|
+
progress?: number;
|
|
655
|
+
output?: TOutput;
|
|
656
|
+
error?: string;
|
|
657
|
+
};
|
|
658
|
+
|
|
659
|
+
type TemplateRoute =
|
|
660
|
+
| `GET /api/v1/templates/${TemplateSlug}`
|
|
661
|
+
| `GET /api/v1/templates/${TemplateSlug}/skill`
|
|
662
|
+
| `POST /api/v1/templates/${TemplateSlug}/config`
|
|
663
|
+
| `POST /api/v1/templates/${TemplateSlug}/operations/${TemplateOperation}`
|
|
664
|
+
| `GET /api/v1/templates/${TemplateSlug}/jobs`
|
|
665
|
+
| `GET /api/v1/templates/${TemplateSlug}/jobs/${string}`
|
|
666
|
+
| `GET /api/v1/templates/${TemplateSlug}/jobs/${string}/logs`
|
|
667
|
+
| `POST /api/v1/templates/${TemplateSlug}/jobs/${string}/cancel`;
|
|
668
|
+
```
|
|
669
|
+
|
|
670
|
+
For collection-style REST reads, use cursor pagination instead of assuming a single unbounded response:
|
|
671
|
+
|
|
672
|
+
- send `limit`
|
|
673
|
+
- if the response returns `next_cursor`, request the next page with `cursor=<that value>`
|
|
674
|
+
- this applies to template job lists, structured logs, artifacts, and the admin source/release queues
|
|
675
|
+
|
|
676
|
+
If the template accepts custom HTML, attachment URLs, generated image prompts, render-slide manifests, provider/model choices, or template-specific output artifacts, include those fields in the route types instead of leaving them as `Record<string, unknown>`.
|
|
677
|
+
|
|
480
678
|
### 8. Validate end to end
|
|
481
679
|
|
|
482
680
|
Run:
|
|
@@ -500,6 +698,8 @@ Minimum bar:
|
|
|
500
698
|
- inspect produced artifacts
|
|
501
699
|
- if you need ad hoc scripts or test-run inputs to drive this validation, keep them under a sibling `tmp/` folder and not inside `src/`
|
|
502
700
|
|
|
701
|
+
For multi-job validation, keep it simple: create the jobs in a loop, wait or poll, inspect the finished results, and move on. Do not turn local validation into a custom batch-processing subsystem.
|
|
702
|
+
|
|
503
703
|
The expected result is that another agent can rerun the template without reverse-engineering the workflow.
|
|
504
704
|
|
|
505
705
|
## Golden Path: Natural-Language Revisions
|
|
@@ -553,7 +753,7 @@ A revision is not complete just because the code compiles. It is complete when:
|
|
|
553
753
|
- the requested change is visible in the output
|
|
554
754
|
- the change does not obviously regress the core format
|
|
555
755
|
- the template can still be rerun by another user or agent
|
|
556
|
-
- `about.proposal_generator` and `about.sample_prompts` still reflect the best current way to ideate and prompt the template
|
|
756
|
+
- `about.proposal_generator`, `about.skeleton_prompt`, and `about.sample_prompts` still reflect the best current way to ideate and prompt the template
|
|
557
757
|
- the usage instructions still match the implementation
|
|
558
758
|
|
|
559
759
|
## Template Contract
|
|
@@ -574,6 +774,8 @@ export const myTemplate = defineTemplate({
|
|
|
574
774
|
link_to_original: "https://www.tiktok.com/@example/video/1234567890",
|
|
575
775
|
proposal_generator:
|
|
576
776
|
"Given the director's product, audience, and positioning, propose multiple UGC hook post ideas that fit this template. Return ideas that can either be used directly as prompts or expanded into a larger series of related prompts.",
|
|
777
|
+
skeleton_prompt:
|
|
778
|
+
"Create a [number]-slide UGC hook post for [audience] about [topic or product]. Hook: [opening]. Middle beats: [proof, story, objection, or comparison]. Ending: [CTA or payoff]. Tone: [voice].",
|
|
577
779
|
sample_prompts: [
|
|
578
780
|
"Create a 3-slide UGC hook sequence for a sleep supplement targeting new parents.",
|
|
579
781
|
"Make a creator-style launch teaser for a skincare serum with one hook, one proof point, and one CTA.",
|
|
@@ -620,6 +822,7 @@ Keep these roles clear:
|
|
|
620
822
|
- `about.preview_media` is required and should contain checked-in preview asset paths that represent the template well
|
|
621
823
|
- `about.link_to_original` is required and should point to the original inspiration post or source reference when one exists
|
|
622
824
|
- `about.proposal_generator` is required and should help directors turn product/about context into a list of strong post proposals for that template
|
|
825
|
+
- `about.skeleton_prompt` is required and should give directors a template-native fill-in-the-blanks prompt scaffold they can instantiate quickly
|
|
623
826
|
- `about.sample_prompts` is required and should contain realistic, high-signal examples that teach users how to get good results
|
|
624
827
|
- `operations` define the public API
|
|
625
828
|
- `jobs` implement the actual work
|
|
@@ -637,6 +840,7 @@ Required fields checklist:
|
|
|
637
840
|
- `about.preview_media`
|
|
638
841
|
- `about.link_to_original`
|
|
639
842
|
- `about.proposal_generator`
|
|
843
|
+
- `about.skeleton_prompt`
|
|
640
844
|
- `about.sample_prompts`
|
|
641
845
|
- `configSchema`
|
|
642
846
|
- at least one operation
|
|
@@ -644,15 +848,119 @@ Required fields checklist:
|
|
|
644
848
|
- `smokeTestPayload` for every operation
|
|
645
849
|
- template-local `SKILL.md`
|
|
646
850
|
|
|
851
|
+
## Caption Style Standard
|
|
852
|
+
|
|
853
|
+
For TikTok-native captions, use the platform caption standard exposed by `vidfarm-devcli session` under `starter_style_options`.
|
|
854
|
+
|
|
855
|
+
Canonical font IDs:
|
|
856
|
+
|
|
857
|
+
- `tiktok_sans_semibold`: default native TikTok caption font, backed by `@fontsource/tiktok-sans` or the bundled `TikTokSans-SemiBold.ttf` starter asset
|
|
858
|
+
- `montserrat_semibold`: rounded modern caption style
|
|
859
|
+
- `source_code_pro_bold`: bold monospace caption style
|
|
860
|
+
- `yesteryear`: script caption style
|
|
861
|
+
- `georgia_bold`: bundled Georgia-style bold serif caption, backed by Libre Baskerville from Fontsource
|
|
862
|
+
- `abel`: condensed caption style
|
|
863
|
+
|
|
864
|
+
Legacy aliases remain accepted for older starters:
|
|
865
|
+
|
|
866
|
+
- `montserrat` -> `montserrat_semibold`
|
|
867
|
+
- `source_code_pro` -> `source_code_pro_bold`
|
|
868
|
+
|
|
869
|
+
Canonical text background color IDs:
|
|
870
|
+
|
|
871
|
+
- `black`: `#000000`
|
|
872
|
+
- `red`: `#EA403F`
|
|
873
|
+
- `orange`: `#FF933D`
|
|
874
|
+
- `yellow`: `#F2CD46`
|
|
875
|
+
- `lime_green`: `#78C25E`
|
|
876
|
+
- `teal`: `#77C8A6`
|
|
877
|
+
- `light_blue`: `#3496F0`
|
|
878
|
+
- `dark_blue`: `#3496F0`
|
|
879
|
+
- `violet`: `#5756D4`
|
|
880
|
+
- `pink`: `#F7D7E9`
|
|
881
|
+
- `brown`: `#A3895B`
|
|
882
|
+
- `dark_green`: `#32523B`
|
|
883
|
+
- `blue_gray`: `#2F688C`
|
|
884
|
+
- `light_gray`: `#92979E`
|
|
885
|
+
- `dark_gray`: `#333333`
|
|
886
|
+
|
|
887
|
+
Templates that expose caption styling should use these IDs in `configSchema`, operation payloads, manifests, and docs instead of inventing local names or hardcoding unrelated font stacks. If a template intentionally uses a format-specific typography system, document the exception in the template-local `SKILL.md`.
|
|
888
|
+
|
|
889
|
+
The caption standard is a default, not a hard lock. Templates may support `captionFont: "custom"` or template-specific text rendering when the user explicitly needs typography outside the standard. In that case, keep the standard options available, document the custom fields, and prefer bundled or template-local font assets over system fonts or remote Google Fonts URLs.
|
|
890
|
+
|
|
647
891
|
Best-practice rule:
|
|
648
892
|
|
|
893
|
+
- when creating a new template, the agent should author `about.proposal_generator`, `about.skeleton_prompt`, `about.sample_prompts`, and the template-local `SKILL.md` in the same pass without waiting for a separate follow-up request
|
|
649
894
|
- every template should ship with sample prompts
|
|
650
895
|
- every template should ship with a proposal generator prompt
|
|
896
|
+
- every template should ship with a skeleton prompt that captures the default prompt structure
|
|
651
897
|
- proposal generation should support a workflow of proposal -> prompts -> posts
|
|
898
|
+
- proposal generation should use the skeleton prompt as a quality harness, so the ideas it emits can be instantiated cleanly without inventing a brand-new structure every time
|
|
652
899
|
- proposal outputs should be useful either as direct one-off prompts or as seeds for a whole series
|
|
900
|
+
- sample prompts should feel like strong filled-out versions of the skeleton prompt, not disconnected examples
|
|
653
901
|
- include more than one example so users can see the range of valid requests
|
|
654
902
|
- prefer prompts that are specific enough to be reusable exemplars, not vague one-liners
|
|
655
|
-
- refresh
|
|
903
|
+
- refresh `about.proposal_generator`, `about.skeleton_prompt`, and `about.sample_prompts` when the template's prompting strategy or supported use cases change
|
|
904
|
+
|
|
905
|
+
## Typical Template Patterns
|
|
906
|
+
|
|
907
|
+
When a developer says "use typical template patterns", interpret that as the default template-authoring contract below unless the template has a strong reason to differ.
|
|
908
|
+
|
|
909
|
+
Authoring defaults:
|
|
910
|
+
|
|
911
|
+
- when creating a new template, automatically write `about.proposal_generator`, `about.skeleton_prompt`, `about.sample_prompts`, and the template-local `SKILL.md`
|
|
912
|
+
- the template-local `SKILL.md` should explain the template's operations, expected payloads, sample requests, provider caveats, and any format-specific guidance future agents need
|
|
913
|
+
- if the template intentionally does not follow one of these patterns, call that out explicitly in the template-local `SKILL.md`
|
|
914
|
+
|
|
915
|
+
Asset-input defaults:
|
|
916
|
+
|
|
917
|
+
- image-generating or slide-generating operations should usually accept either an AI image prompt or an exact image source supplied by the director
|
|
918
|
+
- video-aware operations should usually accept either an AI video prompt or an exact video source supplied by the director when the format benefits from source footage
|
|
919
|
+
- exact media sources should accept either direct URLs or raw prompt text in the same high-level input family when practical
|
|
920
|
+
- URL detection should be robust enough to handle normal query strings and signed URLs; do not assume a media URL has a clean extension with no params
|
|
921
|
+
- media-type detection should prefer explicit user fields first, then MIME type or fetch metadata when available, then conservative URL/path heuristics as a fallback
|
|
922
|
+
- if a template supports file uploads or attachment arrays, document whether it expects a single asset, multiple assets, or either
|
|
923
|
+
|
|
924
|
+
Operation-pattern defaults:
|
|
925
|
+
|
|
926
|
+
- for most image-generation or slide-generation capabilities, provide two operations or two clearly documented modes of one operation
|
|
927
|
+
- one mode should be an explicit director-controlled path where the caller can provide exact copy, exact media, or exact slide instructions
|
|
928
|
+
- one mode should be a full-auto AI path where the caller provides a higher-level prompt or brief and the template decides the detailed text, imagery, and slide plan
|
|
929
|
+
- name these modes clearly in the template-local `SKILL.md` so future agents and developers can tell which route is deterministic versus generative
|
|
930
|
+
|
|
931
|
+
Slideshow-to-video defaults:
|
|
932
|
+
|
|
933
|
+
- any operation that turns slideshow media into a video should, by default, accept `[{ media_url: string, duration_ms: number }]`
|
|
934
|
+
- `media_url` may point to either an image or a video, and the slideshow renderer should handle both
|
|
935
|
+
- when video clips are supplied in slideshow media, preserve the clip visually for the requested slot duration using a documented strategy such as trim, loop, freeze-last-frame, or fit-to-slot
|
|
936
|
+
- when the template needs richer control than this default shape, extend it rather than replacing it with an unrelated format
|
|
937
|
+
|
|
938
|
+
Remotion arbitrary-slide default:
|
|
939
|
+
|
|
940
|
+
- include an arbitrary slide operation when it fits the template family, backed by Remotion rendering
|
|
941
|
+
- that operation should accept either an AI image prompt or custom HTML as the slide source
|
|
942
|
+
- the intended use is arbitrary inserts such as outro call-to-action slides, sponsor cards, transitions, or other one-off slides that do not need a dedicated template-specific generator
|
|
943
|
+
- if custom HTML is accepted, document the styling, sanitization, and asset-loading constraints in the template-local `SKILL.md`
|
|
944
|
+
|
|
945
|
+
Recommended input-shape convention:
|
|
946
|
+
|
|
947
|
+
```ts
|
|
948
|
+
const TYPICAL_MEDIA_SOURCE = z.object({
|
|
949
|
+
media_url: z.string().url().optional(),
|
|
950
|
+
image_url: z.string().url().optional(),
|
|
951
|
+
video_url: z.string().url().optional(),
|
|
952
|
+
image_prompt: z.string().optional(),
|
|
953
|
+
video_prompt: z.string().optional(),
|
|
954
|
+
html: z.string().optional(),
|
|
955
|
+
duration_ms: z.number().int().positive().optional()
|
|
956
|
+
});
|
|
957
|
+
```
|
|
958
|
+
|
|
959
|
+
Notes:
|
|
960
|
+
|
|
961
|
+
- templates may expose clearer, narrower schemas than this when that improves usability
|
|
962
|
+
- prefer explicit fields like `image_prompt`, `image_url`, `video_prompt`, and `video_url` over guessing from one overloaded string when designing a new schema
|
|
963
|
+
- if you still accept a single overloaded field for convenience, document the precedence rules clearly
|
|
656
964
|
|
|
657
965
|
## Provider Rules
|
|
658
966
|
|
|
@@ -660,12 +968,19 @@ Templates should use the provider abstractions already available on `ctx.provide
|
|
|
660
968
|
|
|
661
969
|
Rules:
|
|
662
970
|
|
|
971
|
+
- templates do not need to support all of `openai`, `gemini`, and `openrouter`; supporting at least one real provider path is usually enough unless the template explicitly promises broader portability
|
|
663
972
|
- use the configured provider path instead of hardcoding one provider everywhere
|
|
664
973
|
- let templates work with whichever supported provider key the developer actually has
|
|
665
974
|
- keep prompts and model choices configurable when useful
|
|
666
975
|
- use image attachments when the format depends on source references
|
|
667
976
|
- avoid requiring multiple provider accounts unless the template genuinely needs them
|
|
668
977
|
|
|
978
|
+
Recommended defaults when a template supports these providers:
|
|
979
|
+
|
|
980
|
+
- `openai`: `gpt-5.4` for `text` and `layout_analysis`, `gpt-image-1` for `image`, `sora-2` for `video`, `gpt-4o-mini-tts-2025-12-15` for `tts`, `gpt-4o-mini-transcribe-2025-12-15` for `stt`
|
|
981
|
+
- `gemini`: `gemini-3.1-flash-lite` for `text` and `layout_analysis`, `gemini-3.1-flash-image-preview` for `image`, `veo-3.0-generate-001` for `video`, `gemini-3.1-flash-tts-preview` for `tts`, `gemini-3.1-flash-lite-preview` for `stt`
|
|
982
|
+
- `openrouter`: `qwen/qwen3.6-flash` for `text` and `layout_analysis`, `google/gemini-3.1-flash-image-preview` as the recommended paid `image` default where runtime support exists, `google/gemini-3.1-flash-tts-preview` with PCM for `tts`, `openai/gpt-4o-mini-transcribe` for `stt`
|
|
983
|
+
|
|
669
984
|
Important distinction:
|
|
670
985
|
|
|
671
986
|
- runtime template generation can use OpenAI, OpenRouter, Gemini, or Perplexity according to template logic
|
|
@@ -692,6 +1007,12 @@ Rules:
|
|
|
692
1007
|
- prefer `putJson`, `putText`, `putBuffer`, and `getPublicUrl`
|
|
693
1008
|
- do not scatter files across arbitrary top-level prefixes
|
|
694
1009
|
|
|
1010
|
+
Hosted preview-media rule for developers:
|
|
1011
|
+
|
|
1012
|
+
- if an agent uploads preview media with `presign-preview-media`, the resulting hosted `about.preview_media` entry should be the returned absolute `developer/<user_id>/*` URL
|
|
1013
|
+
- only use `templates/:template_id/about/*` in `about.preview_media` when that object already exists there, typically after platform import/activation sync or another platform-managed copy step
|
|
1014
|
+
- a repo-local file such as `about/preview-01.png` is fine for source control and for platform sync, but it is not by itself an immediately valid hosted catalog URL
|
|
1015
|
+
|
|
695
1016
|
The runtime may back these writes with local filesystem storage or S3 depending on environment. The template should not care.
|
|
696
1017
|
|
|
697
1018
|
## API Usage
|
|
@@ -719,6 +1040,8 @@ After changes, validate with as many of these as apply:
|
|
|
719
1040
|
7. poll the job and fetch logs
|
|
720
1041
|
8. inspect produced artifacts
|
|
721
1042
|
|
|
1043
|
+
If you need several runs, submit them in a reasonable loop and poll the returned job IDs. Rely on Vidfarm's native queueing instead of adding bespoke batch scheduling or coordination logic.
|
|
1044
|
+
|
|
722
1045
|
If you changed slideshow, overlay, or video output behavior, also validate:
|
|
723
1046
|
|
|
724
1047
|
1. output images are the expected aspect ratio
|