@koda-sl/baker-cli 0.201.0-dev.0a9adf6f7 → 0.201.0-dev.6e39c93b9
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/README.md +26 -38
- package/dist/{chunk-CAWFJ5X3.js → chunk-N3PUPOWW.js} +215 -265
- package/dist/chunk-N3PUPOWW.js.map +1 -0
- package/dist/cli.js +900 -979
- package/dist/cli.js.map +1 -1
- package/dist/engine/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-CAWFJ5X3.js.map +0 -1
package/README.md
CHANGED
|
@@ -86,8 +86,19 @@ All commands return a JSON envelope:
|
|
|
86
86
|
|
|
87
87
|
// Dry-run
|
|
88
88
|
{ "ok": true, "dryRun": true, "operation": "images.delete", "params": { "id": "abc123" } }
|
|
89
|
+
|
|
90
|
+
// Unknown option — the command stops instead of running without it
|
|
91
|
+
{ "ok": false, "error": { "code": "UNKNOWN_ARGUMENT", "message": "--dimension-filter is not an option of `baker ga4 query`.", "fix": { "action": "check_schema", "explanation": "Did you mean --dimensions? Run `baker schema ga4 query` ..." }, "retryable": false } }
|
|
89
92
|
```
|
|
90
93
|
|
|
94
|
+
### Unknown options are refused
|
|
95
|
+
|
|
96
|
+
An option a command does not declare stops the run with `UNKNOWN_ARGUMENT`, naming the
|
|
97
|
+
closest real one. Previously such an option was accepted and ignored, so a call that
|
|
98
|
+
looked like it had filtered or narrowed a result was in fact answering the unfiltered
|
|
99
|
+
question — and nothing in the output said so. Run `baker schema <command>` to see
|
|
100
|
+
every option a command takes.
|
|
101
|
+
|
|
91
102
|
Use `--output` to change format:
|
|
92
103
|
|
|
93
104
|
| Format | Description | Best for | Available on |
|
|
@@ -2442,16 +2453,15 @@ Get a single video by ID. `--full` includes the auto-generated **transcript** (B
|
|
|
2442
2453
|
baker videos get j571abc123 --full --output md
|
|
2443
2454
|
```
|
|
2444
2455
|
|
|
2445
|
-
### `baker videos upload <file
|
|
2456
|
+
### `baker videos upload <file>`
|
|
2446
2457
|
|
|
2447
|
-
Upload a video
|
|
2458
|
+
Upload a video file via Mux direct upload.
|
|
2448
2459
|
|
|
2449
2460
|
```bash
|
|
2450
2461
|
baker videos upload ./demo.mp4
|
|
2451
2462
|
baker videos upload ./demo.mp4 --dry-run
|
|
2452
2463
|
baker videos upload ./testimonial-maria.mp4 \
|
|
2453
2464
|
--context "Testimonial from Maria, a real customer, filmed on her phone for the autumn campaign"
|
|
2454
|
-
baker videos upload https://www.youtube.com/watch?v=abc123
|
|
2455
2465
|
```
|
|
2456
2466
|
|
|
2457
2467
|
Supported extensions: `.mp4`, `.mov`, `.webm`, `.avi`, `.mkv`
|
|
@@ -2469,41 +2479,6 @@ baker videos group --group-key "instagram:Cx7Ab9"
|
|
|
2469
2479
|
|
|
2470
2480
|
Same lookup as `baker images group` and takes either kind of id; the two exist so the noun you happen to hold does not decide whether you can ask.
|
|
2471
2481
|
|
|
2472
|
-
### `baker videos ingest <url>`
|
|
2473
|
-
|
|
2474
|
-
Add a video to the library from a link — a direct video file, or a page on YouTube, TikTok, Vimeo, or Instagram.
|
|
2475
|
-
|
|
2476
|
-
```bash
|
|
2477
|
-
baker videos ingest https://cdn.example.com/hero-loop.mp4 # → { videoId, via: "direct" }
|
|
2478
|
-
baker videos ingest https://www.youtube.com/watch?v=abc123 # → { videoId, via: "download" }
|
|
2479
|
-
baker videos ingest https://vimeo.com/12345 --external-id vim:12345
|
|
2480
|
-
```
|
|
2481
|
-
|
|
2482
|
-
Two routes, chosen from the URL and reported as `via`:
|
|
2483
|
-
|
|
2484
|
-
- **direct** — the URL ends in a video extension, so Baker fetches the file itself. Nothing is downloaded locally and there is no size limit.
|
|
2485
|
-
- **download** — anything else. The video is downloaded locally, stored, and then ingested. Capped at 2 GB.
|
|
2486
|
-
|
|
2487
|
-
A direct URL that Baker cannot fetch retries automatically on the download route and reports `fallbackFrom`. Force the download route with `--download`.
|
|
2488
|
-
|
|
2489
|
-
| Flag | Purpose |
|
|
2490
|
-
|---|---|
|
|
2491
|
-
| `--source` | Provenance: `url` or `youtube`. Inferred from the URL when omitted. |
|
|
2492
|
-
| `--external-id` | Dedupe key — re-running the same link returns the existing video. Derived from the link automatically on the download route. |
|
|
2493
|
-
| `--external-url` | Canonical page URL. Defaults to the input for a page URL. |
|
|
2494
|
-
| `--download` | Skip the direct attempt and always download. |
|
|
2495
|
-
| `--dry-run` | Preview the resolved route and parameters. |
|
|
2496
|
-
|
|
2497
|
-
The download route caps the pull at 1080p — Baker re-encodes for streaming anyway, so fetching a 4K master (what modern YouTube serves by default) only makes the download slower for pixels that get discarded.
|
|
2498
|
-
|
|
2499
|
-
**Blocked downloads climb the egress ladder automatically.** The download route goes through the same **direct → datacenter → residential** ladder as every other outbound read (`@baker/proxy`; see [Operations](../../docs/operations.md) → Egress Proxy). There is no proxy flag on any command and nothing to opt into — the unproxied attempt always runs first, so a paid exit costs nothing until a host actually refuses us, and with no `OXYLABS_*` credentials in the environment this is a single plain download.
|
|
2500
|
-
|
|
2501
|
-
A rung only opens on evidence that *who we are* was the problem — a 403/429/451, a WAF connection reset, or a bot wall like YouTube's "Sign in to confirm you're not a bot". A private video, a deleted one, a 404 or an unsupported URL fails identically from every address on earth, so it stops after one attempt instead of burning a timeout per tier. That decision is `shouldEscalate`'s, shared with the capture engine and the ad-media downloaders; yt-dlp's stderr is only *parsed* into the signal it takes (`src/lib/ytDlpSignal.ts`), never allowed to judge for itself.
|
|
2502
|
-
|
|
2503
|
-
Requires `yt-dlp` on `PATH` (present in the Baker Runtime). Private, age-restricted, or region-locked videos cannot be downloaded — the error carries a `fix` pointing at `baker videos upload <file>`.
|
|
2504
|
-
|
|
2505
|
-
**yt-dlp goes stale, and that looks like a broken video.** Large platforms change their players every few weeks and an out-of-date `yt-dlp` then resolves *no* formats at all, failing with "Requested format is not available" or "Only images are available" rather than anything that names the real cause. The error classifies this case separately and says the link is probably fine. The Runtime image installs `yt-dlp` unpinned at build time (`packages/e2b-template/src/template.ts`), so it ages with the image — if platform ingests start failing across the board, rebuild the template before investigating anything else. Direct file URLs don't depend on `yt-dlp` at all and keep working regardless.
|
|
2506
|
-
|
|
2507
2482
|
### `baker videos delete <id>`
|
|
2508
2483
|
|
|
2509
2484
|
Delete a video by ID.
|
|
@@ -4596,6 +4571,19 @@ $ baker canvas validate my-canvas.json
|
|
|
4596
4571
|
|
|
4597
4572
|
On error you get an array of `ValidationIssue`s, each with `path`, `code`, `message`, and optional `did_you_mean`.
|
|
4598
4573
|
|
|
4574
|
+
**Absolute asset paths are healed, not reported.** A `source: "path"` ingest (or a `hyperframe_render`
|
|
4575
|
+
composition) written as an absolute path inside the workspace is rewritten to its canvas-relative form
|
|
4576
|
+
and the canvas file is saved, before anything else reads it. `normalized_paths` lists what changed.
|
|
4577
|
+
`run` does the same and logs it. This is not cosmetic: an absolute path resolves in the Runtime that
|
|
4578
|
+
wrote it, so validate, run, and the preview all pass, and only the publish build — a different checkout
|
|
4579
|
+
root, a different session — ever sees the break.
|
|
4580
|
+
|
|
4581
|
+
Two roots count as "this workspace": the current one, and `/home/user/repo` (`REPO_PATH`), the fixed path
|
|
4582
|
+
every Session's workspace is checked out at. A path under either names the same file in any checkout, so
|
|
4583
|
+
remapping it is a proof rather than a guess — which is what lets an already-committed canvas heal in the
|
|
4584
|
+
publish build instead of blocking it. Anything under a root that maps to neither is left alone, and the
|
|
4585
|
+
scaffold's `validate-creatives` gate still rejects it.
|
|
4586
|
+
|
|
4599
4587
|
Advisory (warning-severity) video invariants include `VIDEO_PROMPT_DECISION_MISSING` (a thin clip prompt that
|
|
4600
4588
|
names no camera/motion move **and** no exclusions — the six-decision doctrine) and `VIDEO_HOOK_LAYER_MISSING`
|
|
4601
4589
|
(the hook, scene 0, is thin across two or more of the four hook layers — text/sound/visual/vibe). Warnings never
|